package rjcs; import org.openqa.selenium.firefox.FirefoxDriver; public class xinkaishi { public static void main(String[] args) { System.setProperty(" ...
分类:
编程语言 时间:
2020-02-08 00:16:53
阅读次数:
73
Key points: don't procrastinate; review the notes and renew the literature search; determine who your audience is - most likely reviewers, so get thei ...
分类:
其他好文 时间:
2020-02-07 22:35:45
阅读次数:
88
下载Java 13 需登录 https://www.oracle.com/technetwork/java/javase/downloads/jdk13-downloads-5672538.html 安装 https://www.cnblogs.com/shirley-0021/p/8510051. ...
分类:
编程语言 时间:
2020-02-07 16:51:15
阅读次数:
62
https://www.nas.nasa.gov/hecc/support/kb/ProcessThread-Pinning-Overview_259.html Pinning, the binding of a process or thread to a specific core, can i ...
分类:
其他好文 时间:
2020-02-07 14:30:29
阅读次数:
89
1. 介绍 对于生产环境中运行的进程,可以用 Go 内置的性能分析工具 pprof 窥测进程的当前状况。 "Profiling Go Programs" 很好地演示了用 pprof 找到性能瓶颈的过程,这里只演示简单用法。 2. 启用实时的pprof 2.1 启用实时的 pprof 非常简单,只需要 ...
分类:
其他好文 时间:
2020-02-07 13:03:52
阅读次数:
240
Vue Router 路由实现原理 一、概念 通过改变 URL,在不重新请求页面的情况下,更新页面视图。 二、实现方式 更新视图但不重新请求页面,是前端路由原理的核心之一,目前在浏览器环境中这一功能的实现主要有2种方式: 1.Hash 利用 URL 中的hash("#"); 2.利用 History ...
分类:
其他好文 时间:
2020-02-07 10:50:15
阅读次数:
58
#!/bin/bashcat > /etc/sysconfig/network-scripts/ifcfg-bond0 <<EOFTYPE=BondUSERCTL=noBOOTPROTO=noneONBOOT=yesBRIDGE=br0BONDING_MASTER=yesBONDING_OPTS=" ...
分类:
其他好文 时间:
2020-02-07 10:24:49
阅读次数:
98
针对多个事务之间的关联划分隔离级别。 oracle支持2种隔离级别(读已提交,串行化),默认隔离级别是读已提交。 mysql支持4种隔离级别(读未提交,读已提交,可重复读,串行化),默认隔离级别是可重复读。 四种隔离级别: 1、读未提交(ReadUncommitted); 2、读已提交(ReadCo ...
分类:
其他好文 时间:
2020-02-06 16:31:33
阅读次数:
59
Java基础中String StringBuffer StringBuilder 以下介绍 String、StringBuffer、StringBuilder它们三者都是来自Java.lang包下的类.。 String:作为简单字符串类型,StringBuffer与StringBuilder:字符串 ...
分类:
编程语言 时间:
2020-02-06 14:59:14
阅读次数:
63