
编程语言
jingxuan2583
这个作者很懒,什么都没留下…
展开
-
Mac上部署Jenkins,用git插件更新项目代码时报错的记录
错误FATAL: Could not checkout d5892374beb5c9ca144e2b5db63eb7e7cb3115b3hudson.plugins.git.GitException: Command "git checkout -f d5892374beb5c9ca144e2b5db63eb7e7cb3115b3" returned status code 128:stdout: stderr: git-lfs filter-process: git-lfs: command no原创 2020-10-12 23:14:27 · 633 阅读 · 0 评论 -
pycharm找不到本项目中的其他包或模块
pycharm找不到本项目中的其他包或模块1.右键点击项目目录2.Mark directory as3.Source root4.如果没有source root ,那么应该是已经设置 成了source root, 看有没有unmark as source root5.有的话点击unmark as source root后,重复步骤3...原创 2020-10-09 11:00:27 · 2963 阅读 · 0 评论 -
正则表达式标记
a|b 匹配 a 或 bgr(a|e)y 匹配 gray 或 grey. 匹配任一字符[abc] 匹配任一字符: a 或 b 或 c[^abc] 匹配任一字符, 但不包括 a、b、c[a-z] 匹配从 a 到 z 之间的任一字符[a-zA-Z] 匹配从 a 到 z, 及从 A 到 Z 之间的任原创 2015-05-15 07:13:14 · 393 阅读 · 0 评论 -
SortedList 、SortedDictionary、Dictionary元素添加耗时对比
public void DoTest() { Stopwatch sw = new Stopwatch(); sw.Start(); SortedDictionary<int, int> sdt = new SortedDictionary<int, int>(); sdt.Add(4, 1); ...原创 2018-12-25 11:34:38 · 929 阅读 · 0 评论 -
正则表达式语法
a|b 匹配 a 或 b gr(a|e)y 匹配 gray 或 grey . 匹配任一字符 [abc] 匹配任一字符: a 或 b 或 c [^abc] 匹配任一字符, 但不包括 a、b、c [a-z] 匹配从 a 到 z 之间的任一字符 [a-zA-Z] 匹配从 a 到 z, 及从 A 到 Z 之间的任一字符 ^ 匹配文件名的头部...原创 2019-05-22 17:22:59 · 122 阅读 · 0 评论 -
Java环境变量配置, jdk环境变量配置
三个环境变量JAVA_HOMEC:\Program Files\Java\jdk1.8.0_172Path%JAVA_HOME%\bin;%JAVA_HOME%\jre\bin;CLASSPATH.;%JAVA_HOME%\lib;%JAVA_HOME%\lib\tools.jar测试方法cmd ---> javacmd ---> ...原创 2019-06-15 11:21:09 · 126 阅读 · 0 评论