04 2021 档案

摘要:Set<String> sets=System.getProperties().stringPropertyNames(); for (String key : sets) { System.out.println(key+" : "+System.getProperty(key)); } outp 阅读全文
posted @ 2021-04-28 13:37 flying0dancing 阅读(347) 评论(0) 推荐(0)
摘要:java 矩阵转换: class ImageUtil{ public static int[][] convert2DArray(int[][] arr){ int height=arr.length; int width=arr[0].length; int[][] result=new int[ 阅读全文
posted @ 2021-04-22 17:10 flying0dancing 阅读(172) 评论(0) 推荐(0)
摘要:1. 安装node(含npm) curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -sudo apt-get install -y nodejs 2.安装yarn,也可以用上面的方式安装(curl -sS https://dl 阅读全文
posted @ 2021-04-22 17:08 flying0dancing 阅读(769) 评论(0) 推荐(0)
摘要:前提:我们公司的Jenkins服务器在windows上面,要求测试开发人员做CI,包括在jenkins上面拉源码,启动web,ui自动化测试。 问题:在Jenkins windows slave上面启动web是会一直占用executor,换句话说,job停不下来,需要手动停止。已经测试过start 阅读全文
posted @ 2021-04-09 14:32 flying0dancing 阅读(173) 评论(0) 推荐(0)