#include <stdio.h>#include <sys/socket.h>#include <sys/types.h>#include <stdlib.h>#include <netinet/in.h>#include <errno.h>#include <string.h>#include ...
分类:
其他好文 时间:
2019-03-26 17:05:12
阅读次数:
147
运行npm run dev报错, webpack-dev-server --inline --progress --config build/webpack.dev.conf.js npm ERR! code ELIFECYCLEnpm ERR! errno 1npm ERR! vue_test@1 ...
分类:
Web程序 时间:
2019-03-26 15:18:21
阅读次数:
265
我们知道对文件访问权限的修改在Shell下可通过chmod来进行 例如 可以看到v.c文件从无权限到所有者可读可写可执行、群组和其他用户可读可执行 chmod函数原型 第一个参数为文件名,第二个参数为8进制的权限参数,权限更改成功时返回0,更改失败返回-1,错误代码存储于系统预定义变量errno中。 ...
分类:
其他好文 时间:
2019-03-24 13:40:53
阅读次数:
121
pyhton2.7 版本需要 python 2.7.9+ 参考链接: https://github.com/pytorch/pytorch/issues/3193 issuecomment 338165421 ...
分类:
Web程序 时间:
2019-03-17 19:42:58
阅读次数:
672
我安装webpack时,出现如下错误: C:\Users\admin> npm install webpack -gnpm WARN checkPermissions Missing write access to C:\Users\admin\AppData\Roaming\npm\node_mo ...
分类:
Web程序 时间:
2019-03-16 23:30:05
阅读次数:
962
main.c #include<stdio.h>#include<unistd.h>#include"ls.h"int main(int argc,char *argv[]){ char *optstring ="-l:a:i:h:"; int c; while(1) { c=getopt(argc ...
分类:
其他好文 时间:
2019-03-16 19:14:31
阅读次数:
123
#include<stdio.h>#include<unistd.h>#include<sys/types.h> #include<sys/stat.h>#include<dirent.h>#include<errno.h>#include<unistd.h>#include<pwd.h>#incl ...
分类:
其他好文 时间:
2019-03-15 17:39:58
阅读次数:
118
pymongo.errors.ServerSelectionTimeoutError: 192.168.12.230:27017: [Errno 61] Connection refused 1.如果是链接虚拟机中的Mongodb时,打开配置文件mongod.conf。 2.修改配置参数 3.重启m ...
分类:
数据库 时间:
2019-03-12 10:33:39
阅读次数:
278
任何编程语言的学习都要考虑错误处理。早期的语言,比如C语言中的errno,不是语言规范的一部分,通常只作为一种编程范式存在。但C++语言从语言层面上增加错误处理的支持,比如异常的概念和try-catch关键字的引入。而Go语言最大的亮点之一就是拥有漂亮的错误处理规范。 一、error error是G ...
分类:
编程语言 时间:
2019-03-07 16:21:42
阅读次数:
191
当我们认为某些代码可能会出错时,就可以用try来运行这段代码,如果执行出错,则后续代码不会继续执行,而是直接跳转至错误处理代码,即except语句块,执行完except后,如果有finally语句块,则执行finally语句块,至此,执行完毕。
分类:
编程语言 时间:
2019-03-05 17:10:45
阅读次数:
208