上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 36 下一页
摘要: https://mp.weixin.qq.com/s/0_5DLbBhA8MsgVAwXVv_Aw 阅读全文
posted @ 2022-02-07 10:45 hjy1995 阅读(19) 评论(0) 推荐(0)
摘要: 工作区:即自己当前分支所修改的代码,git add xx 之前的!不包括 git add xx 和 git commit xxx 之后的。 暂存区:已经 git add xxx 进去,且未 git commit xxx 的。 本地分支:已经git commit -m xxx 提交到本地分支的。 gi 阅读全文
posted @ 2022-02-07 10:44 hjy1995 阅读(51) 评论(0) 推荐(0)
摘要: 使用索引取决于where条件; select * 不建议使用:不需要的字段增加io消耗,失去MySQL优化器“覆盖索引”策略优化的可能性 https://www.cnblogs.com/happyflyingpig/p/7662881.html 磁盘预读机制和局部性原理:当计算机访问一个数据时,不仅 阅读全文
posted @ 2022-02-07 10:43 hjy1995 阅读(43) 评论(0) 推荐(0)
摘要: concurrentMap线程安全 速度慢 分段锁 不是整体锁,适合用于并发编程,其实就是在要求线程安全的时候用它 hashMap线程不安全 速度快 Hashtable 线程安全,速度最慢 因为是整体的锁,基本被淘汰了 https://my.oschina.net/hosee/blog/639352 阅读全文
posted @ 2022-02-07 10:41 hjy1995 阅读(76) 评论(0) 推荐(0)
摘要: Spring AOP与自定义注解Annotation的使用 @Pointcut()的execution、@annotation等参数说明 // 自定义注解 @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @ 阅读全文
posted @ 2022-02-07 10:40 hjy1995 阅读(166) 评论(0) 推荐(0)
摘要: 一、开发分支(dev)上的代码达到上线的标准后,要合并到 master 分支 git checkout dev git pull git checkout master git merge dev git push -u origin master 二、当master代码改动了,需要更新开发分支(d 阅读全文
posted @ 2021-05-11 10:30 hjy1995 阅读(333) 评论(0) 推荐(0)
摘要: setup和teardown 分为:模块级,类级,方法级,函数级 setup_module()/teardown_module() setup_function()/teardown_function() setup_class()/teardown_class() setup_method()/t 阅读全文
posted @ 2021-05-10 22:32 hjy1995 阅读(179) 评论(0) 推荐(0)
摘要: pytest.ini配置文件 pytest.ini文件是Pytest的主配置文件,执行测试用例 pytest.ini文件要注意: 存放位置:一般放在项目的根目录(即当前项目的顶级文件夹下)。 编码格式:必须是ANSI编码格式,可以使用notpad++修改编码格式。 pytest.ini文件中不能使用 阅读全文
posted @ 2021-05-10 22:31 hjy1995 阅读(304) 评论(0) 推荐(0)
摘要: 参考 https://www.jianshu.com/nb/49366888 介绍 pytest具有很多第三方插件,并且可以自定义扩展,比较好用的如pytest-selenium(集成selenium)、pytest-html(完美html测试报告生成)、pytest-rerunfailures(失 阅读全文
posted @ 2021-05-10 22:29 hjy1995 阅读(105) 评论(0) 推荐(0)
摘要: import 与 from...import 在 python 用 import 或者 from...import 来导入相应的模块。 将整个模块(somemodule)导入,格式为: import somemodule 从某个模块中导入某个函数,格式为: from somemodule impor 阅读全文
posted @ 2021-05-10 22:28 hjy1995 阅读(56) 评论(0) 推荐(0)
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 36 下一页