2020-06-30 19:21:03 2901 [ERROR] Error reading packet from server: binlog truncated in the middle of event; consider out of disk space on master; the ...
分类:
数据库 时间:
2020-06-30 20:15:08
阅读次数:
89
Nginx配置通用语法 Nginx的配置文件只是一个普通的文本文件,这里借用《深入理解Nginx模块开发与架构解析》上的例子记录Nginx配置的通用语法。 user nobody; worker_processes 8; error_log varlog/nginx/error.log error; ...
分类:
其他好文 时间:
2020-06-30 17:44:24
阅读次数:
64
在idea2020上运行插件时,报错: 2020-06-28 15:24:31,119 [ 693828] ERROR - llij.ide.plugins.PluginManager - com/intellij/psi/PsiType java.lang.NoClassDefFoundError ...
分类:
其他好文 时间:
2020-06-30 17:32:54
阅读次数:
500
import pymysql 1.登录mysql conn = pymysql.connect(host= '127.0.0.1',user='root',password='123',database='homework') 2.获取游标 cur = conn.cursor() # cur = c ...
分类:
数据库 时间:
2020-06-30 14:27:33
阅读次数:
71
1.jQuery ajax $.ajax({ type: 'POST', url: url, data: data, dataType: dataType, success: function () {}, error: function () {} }); 传统 Ajax 指的是 XMLHttpR ...
分类:
移动开发 时间:
2020-06-30 12:58:19
阅读次数:
69
合并单元格报错 > 先生成单元格, 然后再进行合并, 合并之后只保留一个单元格, 反正需要合并的单元格中数据都是一样的, 如果不一样没做测试 ERROR http-nio-9104-exec-7 com.szeport.action.wxgl.ReportAction - [Action expor ...
分类:
编程语言 时间:
2020-06-30 12:40:00
阅读次数:
45
变量赋值 x,y,z = 1,2,3 灵活使用,可以减少代码量 key,value = dict.popitem() *星号的使用可以代表多个值 #正常 x,y,z = 1,2,3 #参数列表数目不匹配 x,y,z = 1,2,3,4Traceback (most recent call last) ...
分类:
编程语言 时间:
2020-06-30 11:20:18
阅读次数:
65
// Body represents the response body. // // The response body is streamed on demand as the Body field // is read. If the network connection fails or t ...
分类:
其他好文 时间:
2020-06-30 11:07:15
阅读次数:
64
/usr/include/eigen3/Eigen/src/Core/util/StaticAssert.h:32: error: static assertion failed: YOU_MIXED_MATRICES_OF_DIFFERENT_SIZES #define EIGEN_STATIC_ ...
分类:
编程语言 时间:
2020-06-30 10:51:31
阅读次数:
95
Setup script exited with error: command 'gcc' failed with exit status 1 由于没有正确安装Python开发环境导致。 Debin/Ubuntu Python2sudo apt-get install python-dev Pyth ...
分类:
其他好文 时间:
2020-06-30 10:34:36
阅读次数:
284