第二次使用Migration update-database的时候出现以下错误: System.NotImplementedException: The method or operation is not implemented. at Microsoft.EntityFrameworkCore. ...
分类:
数据库 时间:
2019-08-16 00:23:35
阅读次数:
109
一、下拉菜单识别 对下拉框的操作,主要是通过Select 类里面的方法来实现的,所以需要new 一个Select 对象(org.openqa.selenium.support.ui.Select)来进行操作 主要的方法有: 获取下拉菜单所有的option,并判断默认选择项 二、单选框、复选框--ch ...
分类:
其他好文 时间:
2019-08-15 10:53:40
阅读次数:
238
yield的英文单词意思是生产,在函数中但凡出现yield关键字,再调用函数,就不会继续执行函数体代码,而是会返回一个值。 52生成器 停止.jpg?x oss process=style/watermark def func(): print(1) yield print(2) yield g = ...
分类:
其他好文 时间:
2019-08-13 21:06:31
阅读次数:
105
centos7.4 在docker容器中启动php报错 报错: [root@be474fdeb4d1 /] systemctl start php Failed to get D Bus connection: Operation not permitted 原因:在centos7的docker容器 ...
分类:
其他好文 时间:
2019-08-10 19:40:15
阅读次数:
81
题目 There is a square grid of size $n×n$. Some cells are colored in black, all others are colored in white. In one operation you can select some rectan ...
分类:
其他好文 时间:
2019-08-10 17:47:49
阅读次数:
100
AWS 中的错误重试和指数退避 Error Retries and Exponential Backoff in AWS Do some asynchronous operation. retries = 0 DO wait for (2^retries * 100) milliseconds st ...
分类:
其他好文 时间:
2019-08-09 19:31:43
阅读次数:
68
"HDU题面" Time limit 4000 ms Memory limit 262144 kB OS Windows Source "2019 Multi University Training Contest 1" 中文题意 一个序列支持两种操作—— 在后面插入一个数字,并使序列长度增加1 询 ...
分类:
其他好文 时间:
2019-08-09 13:15:45
阅读次数:
78
[Spring cloud 一步步实现广告系统] 14. 全量索引代码实现
分类:
编程语言 时间:
2019-08-08 23:43:14
阅读次数:
119
Collections.unmodifiableList用于构造一个不能修改的List,实例如下: 运行后效果如下: Exception in thread "main" java.lang.UnsupportedOperationException at java.util.Collections ...
分类:
其他好文 时间:
2019-08-08 23:30:36
阅读次数:
163
镜像 && 容器 docker 镜像好比操作系统的镜像(iso) docker 容器好比是已安装运行的操作系统 所以说 docker 镜像文件运行起来之后,就是我们所说的 docker 容器了 Docker Image Operation 1)列出镜像 执行效果: 参数说明: 为了区分同一个仓库下的 ...
分类:
其他好文 时间:
2019-08-07 13:24:20
阅读次数:
142