'''logging:日志模块(有时间,可以设置级别) logging模块将日志分为了五个等级:CRITICAL > ERROR > WARNING > INFO > DEBUG DEBUG:调试信息,通常在诊断问题的时候用得着; INFO:普通信息,确认程序安装预期运行; WARNING:警告信息 ...
分类:
其他好文 时间:
2020-05-21 00:34:01
阅读次数:
60
1 服务器基础配置 2 3 服务器端设定 4 5 设置服务器以守护进程的方式运行 6 daemonize yes | no 7 8 绑定主机地址 9 bind 127.0.0.1 10 11 设置服务器端口号 12 port 6379 13 14 设置数据库数量 15 databases 16 16 ...
分类:
其他好文 时间:
2020-05-21 00:06:52
阅读次数:
74
logging模块: import logging #日志级别:debug<info<warning<error<critical<NOTSET ,不设置等级默认是显示warning以上的级别 logging.debug("debug message") logging.info("info mes ...
分类:
编程语言 时间:
2020-05-18 22:51:45
阅读次数:
73
__attribute__ 可以设置函数属性(Function Attribute )、变量属性(Variable Attribute )和类型属性(Type Attribute )。 __attribute__ 语法格式为:xxx声明 __attribute__ ((attribute-list) ...
分类:
其他好文 时间:
2020-05-18 00:43:39
阅读次数:
47
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ...
分类:
其他好文 时间:
2020-05-16 18:52:21
阅读次数:
113
Warning This function has been DEPRECATED as of PHP 7.2.0. Relying on this function is highly discouraged. 说明 each ( array &$array ) : array 返回数组中当前的键 ...
分类:
移动开发 时间:
2020-05-15 15:29:58
阅读次数:
100
一、idea检查警告 Can be replaced with 'peek' less... (Ctrl+F1) Inspection info: This inspection reports stream API call chains which can be simplified. It a ...
分类:
其他好文 时间:
2020-05-13 19:59:17
阅读次数:
79
由于VS2019编译器的特殊性,在调用一些函数时会出现类似以下错误: C4996 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, u ...
分类:
其他好文 时间:
2020-05-12 17:24:06
阅读次数:
208
1 #include <opencv2/opencv.hpp> 2 using namespace cv; 3 int main() { 4 Mat img = imread("D:/test/1.jpg"); 5 imshow("ff",img); 6 waitKey(0); 7 return 0 ...
分类:
其他好文 时间:
2020-05-12 17:05:31
阅读次数:
1358
jenkins配置钉钉机器人通知 官方文档:https://jenkinsci.github.io/dingtalk-plugin/ 钉钉配置 在钉钉群里配置机器人 在群里找到添加机器人选项 选择自定义机器人 修改配置 完成之后复制webhook地址 jenkins配置 WARNING 请确保你的 ...
分类:
其他好文 时间:
2020-05-11 15:12:40
阅读次数:
171