码迷,mamicode.com
首页 >  
搜索关键字:fastcgi error number    ( 57846个结果
mysql8安装,解压版
1.到官网下载自己的版本 2.解压 3.解压后的文件转移,建议转移,错误少 mv 原位置 /usr/local/mysql 4. 创建数据位置 data文件夹和日志位置 log文件夹,位置自定义,再log 里面创建日志文件 touch error.log 5.检查是否存在mysql用户和mysql组 ...
分类:数据库   时间:2021-04-26 13:27:50    阅读次数:0
iview表单数字验证
minChargeMoney: [ { required: true, message: "此项必填", trigger: "blur", type:"number", transform(value) { return Number(value); } }, ], ...
分类:其他好文   时间:2021-04-26 13:19:44    阅读次数:0
Leetcode/数学/计数质数
质数的算法: 1,判断n是否能被2~n-1整除 输入的数n不能被2-(n-1)整除,说明是素数 输入的数n能被2-(n-1)整除,说明不是素数 #include<stdio.h> int main() { int i, n; bool i; printf("please input a number ...
分类:其他好文   时间:2021-04-26 13:14:06    阅读次数:0
Centos7 yum命令异常报错Could not retrieve mirrorlist http://mirrorlist.centos.org
Loaded plugins: fastestmirror, langpacks Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=os&infra=stock error w ...
分类:Web程序   时间:2021-04-24 13:53:03    阅读次数:0
后缀数组
后缀数组构造方法: 1.倍增 直接参考刘汝佳蓝书 时间复杂度不优秀,但代码实现简单,细节处理较多,建议参考思路后背过代码。 #include<iostream> #include<cstdio> #include<cmath> #include<algorithm> #include<cstring ...
分类:编程语言   时间:2021-04-24 13:23:55    阅读次数:0
vue 旧项目dev 跑起来报 Module build failed: Error: No PostCSS Config
这只要在src同级添加postcss.config.js文件 同时文件 里面写上这些,重新跑就没问题了 module.exports = { plugins: { 'autoprefixer': {browsers: 'last 5 version'} }} ...
分类:Web程序   时间:2021-04-24 11:47:48    阅读次数:0
Python的文本和字节序列
一、字符串的表示和存储 字符串是字符的序列,每个字符都有有一个数字作为标识,同时会有一个将标识转换为存储字节的编码方案; s = 'hello world python' for c in s: print(c, end=' ') h e l l o w o r l d p y t h o n AC ...
分类:编程语言   时间:2021-04-23 12:20:35    阅读次数:0
Spring(11) - Introductions进行类扩展方法
Introductions(引用),在 Aspect 中称为类型间的声明,使切面能够声明被通知的对象(拦截的对象)实现给定的接口,并提供该接口的实现。 简单点说可以将一个类的实现方法复制到未实现的类中。 通过 @DeclareParents 注解进行声明,声明在一个父类型的属性上(比如接口),其中注 ...
分类:编程语言   时间:2021-04-23 12:12:26    阅读次数:0
python中的常见错误
2.2.1名字错误 名字错误:python 的关键字写错了。 NameError: name 'python3' is not defined 现象: 2.2.2语法错误 SyntaxError: invalid syntax 无效的语法:Java 和 JS 一行结束用分号“;”Python 用的换 ...
分类:编程语言   时间:2021-04-22 16:31:44    阅读次数:0
Clion配置MingGW报错test cmake run with errors解决方法
两种原因 mingw路径有中文 或者 本地有多个mingw 删除其他的就可以啦 ...
分类:其他好文   时间:2021-04-22 16:23:10    阅读次数:0
57846条   上一页 1 ... 29 30 31 32 33 ... 5785 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!