## 伪类:伪类用于DOM树之外的消息,或是不能简单选择器进行表示的信息。前者包含那些匹配指定状态的元素,比如:visited,:active ;后者包含那些满足一定逻辑条件的DOM树中的元素,比如:first-child,:fitst-of-type,:target ## 伪元素:伪元素为DOM树 ...
分类:
其他好文 时间:
2021-03-10 13:12:45
阅读次数:
0
一、总章 1.1 前言 本文主要参考这篇文章 另外增加了自己觉得重要的部分 1.2 集合框架概览图 1.3 基础接口源码解析 1.3.1 Iterator public interface Iterator<E> { boolean hasNext(); E next(); default void ...
分类:
其他好文 时间:
2021-03-08 13:04:17
阅读次数:
0
模拟手写AsyncParallelHook源码部分。 let Hook = require('./Hook.js') class HookCodeFactory { args({ after, before } = {}) { let allArgs = this.options.args if ( ...
分类:
Web程序 时间:
2021-03-02 12:26:20
阅读次数:
0
1.return torch.embedding(weight, input, padding_idx, scale_grad_by_freq, sparse)RuntimeError: Expected tensor for argument #1 'indices' to have scalar ...
分类:
其他好文 时间:
2021-03-01 13:14:12
阅读次数:
0
1. Spring框架是什么?它的主要模块有哪些? Spring框架是一个Java平台,提供全面的基础设施支持开发Java应用程序。Spring处理基础设施部分,这样你就可以专注于应用程序部分。Spring框架内,把一级对象通过设计模式封装起来,您可以放心的集成到您自己的应用程序而不用关注他们如何在 ...
分类:
编程语言 时间:
2021-03-01 13:01:12
阅读次数:
0
expected_conditions模块: 是Selenium的一个子模块,selenium.webdriver.support.expected_conditions 可以对网页上元素是否存在进行判断,一般用于断言或与WebDriverWait配合使用 1 import time 2 from ...
分类:
Web程序 时间:
2021-02-22 11:51:54
阅读次数:
0
第一次搭建Flutter项目,启动后报错连接超时,似乎是下载什么东西没ok.... 详细报错信息: event sent after app closed: {id: 0, progressId: null, message: Running "flutter pub get" in flutter ...
分类:
移动开发 时间:
2021-02-20 12:33:42
阅读次数:
0
1. 题目描述 Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it can trap after raining ...
分类:
移动开发 时间:
2021-02-18 13:31:34
阅读次数:
0
Centos7安装Redis 一、安装gcc依赖 由于 redis 是用 C 语言开发,安装之前必先确认是否安装 gcc 环境(gcc -v),如果没有安装,执行以下命令进行安装 [root@localhost local]# yum install -y gcc 二、下载并解压安装包 [root@ ...
分类:
其他好文 时间:
2021-02-18 13:26:15
阅读次数:
0
题目描述 For this problem, you will write a program that reads in a sequence of 32-bit signed integers. After each odd-indexed value is read, output the m ...
分类:
其他好文 时间:
2021-02-18 13:06:04
阅读次数:
0