摘要:
centos6.9下安装Jenkins,可以正常安装,但是启动后,Jenkins.log中发现报错 java.lang.NullPointerException: Cannot load from short array because "sun.awt.FontConfiguration.head 阅读全文
摘要:
原先已经安装了mysql5.7,现在需要用到msyql8,但是5.7的版本还是有用到,需要两个版本 参考: https://blog.csdn.net/s_156/article/details/135715769 https://blog.csdn.net/qq_39894837/article/ 阅读全文
摘要:
生成azerothcode的时候报错,改成1.x版本就好了,我用的1.1.1。 CMake Error at E:/Soft/CMake326/share/cmake-3.26/Modules/FindPackageHandleStandardArgs.cmake:230 (message): Co 阅读全文
摘要:
虚拟机中安装的mysql突然连接不上了,点击计算机-管理,发现mysql服务都不见了。 使用命令行重新安装:mysqld.exe --install 又提示:Install/Remove of the Service Denied!,这个是权限问题,用管理员运行就好 到计算机-管理中找到msyql服 阅读全文
摘要:
template<typename T> void fun2(T t) { cout << t << endl; } //利用逗号表达式和初始化列表展开 template<typename ...Arg6> void fun1(Arg6... args) { int arr[] = { (fun2( 阅读全文
摘要:
#include <iostream> #include <initializer_list> using namespace std; //逗号表达式+初始化列表 template<typename T> void printarg(T t) { cout<<t<<endl; } template 阅读全文
摘要:
官方给出的mysqldiff和mysqldbcompare mysqldiff --server1=root:12345@localhost --server2=root:12345@localhost game_test_yw4:game_test_yw3 --changes-for=server 阅读全文
摘要:
静态库默认生成的pdb文件名字是vcxxx.pdb,当需要调试时,准备源码(添加路径到解决方案)和pdb(把pdb放在lib同个目录) https://www.cnblogs.com/laohaozi/p/12537581.html https://blog.csdn.net/tomwillow/a 阅读全文
摘要:
安装Jenkins: 1.Jenkins稳定版本的war包路径:https://get.jenkins.io/war-stable/ 2.jdk下载:https://www.oracle.com/java/technologies/downloads/ 3.启动Jenkins:命令行运行java - 阅读全文
摘要:
https://www.bmabk.com/index.php/post/257565.html 阅读全文