C:\Program Files (x86)\Jenkins\plugins\ruby-runtime\WEB-INF\lib\classes.jar: The process cannot access the file because it is being used by another pr ...
分类:
其他好文 时间:
2020-07-24 21:30:48
阅读次数:
197
通过xpath定位所有的 包含‘设’的所有文本 的元素 titles = driver.find_elements_by_xpath("//*[contains(@text,'设')]")#显示titles中包含‘设’的所有文本for title in titles: print("这是title: ...
分类:
移动开发 时间:
2020-07-24 21:14:02
阅读次数:
86
Toast(msg, duration) { duration = isNaN(duration) ? 3000 : duration; var m = document.createElement("div"); m.innerHTML = msg; m.style.cssText = "max- ...
分类:
其他好文 时间:
2020-07-24 16:36:02
阅读次数:
84
1、前置知识 磁盘知识:寻址:ms 宽带:G/M 内存:寻址:ns 带宽:很大 秒 > 毫秒 > 微秒 > 纳秒 内存寻址比硬盘寻址快10w倍 折中做法: 将内存种的一部分数据做缓存 memcached key value结构,value没有类型的概念 redis(秒级十万操作) 同为key val ...
分类:
其他好文 时间:
2020-07-24 16:06:30
阅读次数:
67
前提 并发编程大师Doug Lea在编写JUC(java.util.concurrent)包的时候引入了java.util.concurrent.locks.AbstractQueuedSynchronizer,其实是Abstract Queued Synchronizer,也就是"基于队列实现的抽 ...
分类:
其他好文 时间:
2020-07-24 09:21:44
阅读次数:
94
在Zabbix Server服务器上安装oracle-instantclient11.2后,结果使用sqlplus命令时遇到“sqlplus: error while loading shared libraries: libnsl.so.1: cannot open shared object f... ...
分类:
数据库 时间:
2020-07-23 23:19:25
阅读次数:
107
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <style> .box{ width: 200px; height: 200px; /*盒子的边框 宽度 颜色 transparent表示透明 */ border ...
分类:
其他好文 时间:
2020-07-23 22:34:08
阅读次数:
98
(更新中...) ##基本操作 坐标系变换: https://www.cnblogs.com/erichf/p/13327919.html ##Filter 数据投影 Volume Rendering: -[1] A method to visualize the entire 3D data se ...
分类:
其他好文 时间:
2020-07-23 16:10:13
阅读次数:
166
原因:通过打印,发现,直接使用expend的 @expand-change 事件的时候,展开之后,才会进行乔涛表格数据的请求,这是导致数据不能够进行正常渲染的原因 解决方式:给el-table加上几个事件 <el-table :data="bussinessLists" class="m-r-t-1 ...
分类:
其他好文 时间:
2020-07-23 15:53:44
阅读次数:
149
1.“==”与equals的区别 == 是引用是否相等,equals是内容相等 Integer a = new Integer(1); Integer b = new Integer(1); if (a = b)... //错误 if(a.equals(b))... //正确 public clas ...
分类:
编程语言 时间:
2020-07-22 20:55:48
阅读次数:
80