摘要: 本地自己打包的common.jar,install之后别的项目不能正确引用,查看maven本地缓存中已经存在,网上搜了一圈后,发现问题如下: 本地maven缓存中有个_remote.repositories文件,表明该包从哪里来,自己安装的里面没有写,是这样的“common.jar>=”,改成“co 阅读全文
posted @ 2023-08-25 14:55 huorexiaji 阅读(72) 评论(0) 推荐(0)
摘要: https://github.com/alibaba/p3c/tree/master 阅读全文
posted @ 2023-08-22 16:59 huorexiaji 阅读(84) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2023-08-17 16:27 huorexiaji 阅读(13) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/kirk15951859811/article/details/117067488 @FeignClient(name="mekFeignClient",fallback = MekFeignClientFallback.class,configurati 阅读全文
posted @ 2023-08-15 15:59 huorexiaji 阅读(726) 评论(0) 推荐(0)
摘要: https://wenku.baidu.com/view/ec90ec7101f69e3143329492.html?_wkts_=1691462650842 阅读全文
posted @ 2023-08-08 10:48 huorexiaji 阅读(34) 评论(0) 推荐(0)
摘要: x86 Assembly Guide Contents: Registers | Memory and Addressing | Instructions | Calling Convention This guide describes the basics of 32-bit x86 assem 阅读全文
posted @ 2023-08-03 16:18 huorexiaji 阅读(76) 评论(0) 推荐(0)
摘要: https://documentation-service.arm.com/static/62a1eaa5b334256d9ea8b33c?token= 阅读全文
posted @ 2023-08-03 11:21 huorexiaji 阅读(25) 评论(0) 推荐(0)
摘要: Since C++ supports function overloading, additional information has to be added to function names (called Name mangling) to avoid conflicts in binary 阅读全文
posted @ 2023-07-31 11:31 huorexiaji 阅读(21) 评论(0) 推荐(0)
摘要: win10用一段时间后c盘的installer目录和temp目录特别大,我的达到了7G和14G,用以下方法能将其挪到其他盘: OK, I've taken the risk and it was worth it - everything works normally, but I have fre 阅读全文
posted @ 2023-07-13 14:09 huorexiaji 阅读(66) 评论(0) 推荐(0)
摘要: 编译时添加参数-fprofile-arcs -ftest-coverage 链接时-lgcov 运行程序,会生成*.gcda文件 lcov -c -d . -o test.info --rc lcov_branch_coverage=1生成覆盖率文本报告 genhtml --branch-cover 阅读全文
posted @ 2023-07-04 15:00 huorexiaji 阅读(98) 评论(0) 推荐(0)