shell-init: error retrieving current directory: getcwd: cannot access parent directories: 没有那个文件或目录chdir: error retrieving current directory: getcwd: ...
分类:
数据库 时间:
2020-02-17 15:40:12
阅读次数:
105
拉取镜像 运行容器 报错 原因 : "官方文档" Ensure that /your/home is accessible by the jenkins user in container (jenkins user uid 1000) or use u some_other_user parame ...
分类:
其他好文 时间:
2020-02-15 09:54:54
阅读次数:
220
1 NX11+VS2013 2 3 #include <uf.h> 4 #include <uf_part.h> 5 6 7 UF_initialize(); 8 9 //新建part 10 tag_t partTag = NULL_TAG; 11 UF_PART_new("D:\\123.prt" ...
分类:
其他好文 时间:
2020-02-14 22:48:37
阅读次数:
134
1 NX11+VS2013 2 3 #include <uf.h> 4 #include <uf_part.h> 5 #include <uf_ui.h> 6 7 8 UF_initialize(); 9 10 //获取part的单位(公制/英制) 11 int partUnits = 0; 12 ...
分类:
其他好文 时间:
2020-02-14 22:41:59
阅读次数:
76
1 NX11+VS2013 2 3 #include <uf.h> 4 #include <uf_part.h> 5 6 7 UF_initialize(); 8 9 //打开part 10 tag_t partTag = NULL_TAG; 11 UF_PART_load_status_t err ...
分类:
其他好文 时间:
2020-02-14 22:41:18
阅读次数:
103
1 NX11+VS2013 2 3 #include <uf.h> 4 #include <uf_part.h> 5 6 7 UF_initialize(); 8 9 //关闭当前会话中的所有部分 10 UF_PART_close_all(); 11 12 UF_terminate(); 13 14 ...
分类:
其他好文 时间:
2020-02-14 22:28:51
阅读次数:
86
1 NX11+VS2013 2 3 #include <uf.h> 4 #include <uf_part.h> 5 6 7 UF_initialize(); 8 9 //重命名part 10 UF_PART_rename(UF_PART_ask_display_part(), "111.prt") ...
分类:
其他好文 时间:
2020-02-14 22:23:15
阅读次数:
94
1 NX11+VS2013 2 3 #include <uf.h> 4 #include <uf_part.h> 5 6 7 UF_initialize(); 8 9 //打开part 10 tag_t partTag = NULL_TAG; 11 UF_PART_load_status_t err ...
分类:
其他好文 时间:
2020-02-14 22:10:06
阅读次数:
119
class MinStack { public: /** initialize your data structure here. */ stack<int> stackValue; stack<int> stackmin; MinStack() { } void push(int x) { sta ...
分类:
其他好文 时间:
2020-02-14 20:52:10
阅读次数:
59
2020-02-14 恢复内容开始 "Test_leetcode - Debug": The compiler's setup (GNU GCC Compiler) is invalid, so Code::Blocks cannot find/run the compiler. Probably ...
分类:
编程语言 时间:
2020-02-14 20:24:53
阅读次数:
121