摘要: 参考:https://www.cnblogs.com/jiangyibo/p/9825610.html 1、三个层次 测试程序、测试套件、测试用例 2、 gtest 实践机制,是指在测试前和测试后提供给客户自行添加操作的机制,而且此机制也可以让同一测试套件下的测试用例共享数据。 一、全局的事件机制( 阅读全文
posted @ 2021-01-23 17:00 DVStream 阅读(472) 评论(0) 推荐(0)
摘要: 任务管理器->性能->打开性能监控器->cpu->关联句柄 搜索和文件名相关的应用,并关闭。 阅读全文
posted @ 2021-01-23 16:44 DVStream 阅读(78) 评论(0) 推荐(0)
摘要: https://linoxide.com/linux-how-to/lvm-configuration-linux/ 阅读全文
posted @ 2021-01-19 11:06 DVStream 阅读(51) 评论(0) 推荐(0)
摘要: 1、ssh-keygen -t rsa -b 4096 -C "xx@xx.com" 输入密码,特别是在公共服务器上使用这个秘钥。 2、 确保ssh-agent 正在运行 eval `ssh-agent -s` 3、 添加私钥 ssh-add /root/.ssh/id_rsa 4、将公钥放到git 阅读全文
posted @ 2021-01-14 15:54 DVStream 阅读(468) 评论(1) 推荐(0)
摘要: https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-172-performance-engineering-of-software-systems-fall-2018/lecture-slides/ ht 阅读全文
posted @ 2021-01-11 19:54 DVStream 阅读(232) 评论(0) 推荐(0)
摘要: https://docs.microsoft.com/zh-cn/windows/wsl/user-support 忘记密码 如果忘记了 Linux 分发版的密码: 请打开 PowerShell,并使用以下命令进入默认 WSL 分发版的根目录:wsl -u root 如果需要在非默认分发版中更新忘记 阅读全文
posted @ 2020-12-05 15:12 DVStream 阅读(154) 评论(0) 推荐(0)
摘要: sha256 校验 1 windows 平台 certutil 2 Linux 平台 阅读全文
posted @ 2020-11-19 10:55 DVStream 阅读(157) 评论(0) 推荐(0)
摘要: https://coliru.stacked-crooked.com/ cppreference也使用的这个在线编译器。 阅读全文
posted @ 2020-11-16 23:19 DVStream 阅读(325) 评论(0) 推荐(0)
摘要: 1、find + exec find . -exec grep chrome {} \; or find . -exec grep chrome {} + find will execute grep and will substitute {} with the filename(s) found 阅读全文
posted @ 2020-11-02 17:56 DVStream 阅读(1417) 评论(0) 推荐(0)
摘要: import 关键字 import 引入包里面的类,简化在实现时候的书写长度,由编译器来处理。 查找import类时,安装环境变量中CLASSPATH中指定的路径,将该路径作为根目录,然后将import语句中的.换成路径分割符号,并添加.java后缀,组合成路径,来定位要引用的的类文件。 原理类似但 阅读全文
posted @ 2020-11-02 16:54 DVStream 阅读(165) 评论(0) 推荐(0)