详细 the current operating system does not support this product click ok and then install the product on a computer running windows xp professional or w ...
分类:
其他好文 时间:
2020-12-11 12:10:02
阅读次数:
3
https://github.com/appium/appium/blob/master/docs/en/writing-running-appium/caps.md appium的核心时一个Web服务器,它提供了一套REST的接口。他接受到客户端的连接,监听到命令,接着在移动设备上执行这些命令,然 ...
分类:
移动开发 时间:
2020-12-09 12:20:07
阅读次数:
14
一、线程的基本状态 各种状态一目了然,值得一提的是"blocked"这个状态:线程在Running的过程中可能会遇到阻塞(Blocked)情况 调用join()和sleep()方法,sleep()时间结束或被打断,join()中断,IO完成都会回到Runnable状态,等待JVM的调度。 调用wai ...
分类:
编程语言 时间:
2020-12-07 12:41:52
阅读次数:
9
1、安装go环境 下载go 配置环境变量 export GO_HOME=/usr/local/go export PATH=$GO_HOME/bin:$PATH 2、下载perftest https://github.com/kubernetes/perf-tests/ 3、解压后进入cluster ...
分类:
其他好文 时间:
2020-12-07 12:07:10
阅读次数:
5
Appium 服务器运行时会产生很多日志,但是很多人并不了解其中的意义,也无法掌握有用的信息。本文将详细解读如何读懂 Appium 日志,并让你的测试效率翻倍。 开启服务 日志第一行显示了 Appium 版本和运行地址。 $ appium [Appium] Welcome to Appium v1. ...
分类:
移动开发 时间:
2020-12-05 11:03:15
阅读次数:
11
if语法案例1. 判断系统剩余内存1) 脚本正文2) 执行结果2.监控web和数据库的方法1) 端口监控2) 进程监控3) 客户端模拟4) 数据库判断*3.mysql数据库检测命令演示1)端口监控命令2)远端监控命令3)进程监控4)客户端模拟监控5)通过程序访问数据库监控(以PHP)4.监控MySQ ...
分类:
其他好文 时间:
2020-12-05 11:01:38
阅读次数:
6
定义 命名空间:System.Threading.Tasks,继承:Object,派生:System.Threading.Tasks.Task<TResult>,实现:IAsyncResult IDisposable 注解 Task类表示不返回值并且通常以异步方式执行的单个操作。 Task 对象是在 ...
分类:
Web程序 时间:
2020-12-05 10:43:22
阅读次数:
9
* 系统:macOS* 开发工具:Idea* 问题描述:在idea中执行mvn clean install时报No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK ...
分类:
其他好文 时间:
2020-12-02 12:23:16
阅读次数:
4
Linear Time: O(n) Linear time. Running time is proportional to input size. (线性时间: 运行时间与输入大小成正比) <1>Computing the maximum. Compute maximum of n numbers ...
分类:
其他好文 时间:
2020-11-19 12:24:55
阅读次数:
4
在从数据库中查询 show slave status Slave_SQL_Running: No 1、程序可能在从数据库中进行了写操作 2、也可能是从数据库 机器重启后,事务回滚造成的。 解决方法 在主库中查询 Show master status; 在从库中执行 STOP SLAVE; CHANG ...
分类:
数据库 时间:
2020-11-18 13:27:25
阅读次数:
33