码迷,mamicode.com
首页 >  
搜索关键字:fatal error cannot r    ( 34996个结果
[ FastDFS ] [Error] 无法获取服务器端链接资源
【Error:无法获取服务器端链接资源】 处理方式 使用单点配置。 在宿主机上通过IDEA测试程序时: 报错:com.github.tobato.fastdfs.exception.FdfsConnectException: 无法获取服务端连接资源:can't create connection t ...
分类:其他好文   时间:2020-05-20 15:47:59    阅读次数:236
VMware安装CentOS 7,并安装jdk、mysql、nginx
vmware安装centos 一、下载centos7.x的镜像包 进入官网:https://www.centos.org/ 找到下载位置后,发现只提供了最新的centos8的镜像包,找到页面最下面的 : https://www.centos.org/download/mirrors/ 进入后,通过国 ...
分类:数据库   时间:2020-05-20 14:36:40    阅读次数:63
进程与线程
守护进程: daemon进程。通常运行与操作系统后台,脱离控制终端。一般不与用户直接交互。周期性的等待某个事件发生或周期性执行某一动作。 不受用户登录注销影响。通常采用以d结尾的命名方式。 守护进程创建步骤: 1. fork子进程,让父进程终止。 2. 子进程调用 setsid() 创建新会话 3. ...
分类:编程语言   时间:2020-05-20 14:00:04    阅读次数:52
Python运行Queue报错ImportError: cannot import name 'Empty'
在运行Python的进程间通信的queue代码时候报错 解决方案 请不要把程序名称命名的和包一样!!!!!!!!!! 意思就是,原来是这样的 随意改个名字 这样再重新跑就不会报错了。。。。 这是非常低级的错误了... 参考文档:https://blog.csdn.net/teavamc/articl ...
分类:编程语言   时间:2020-05-20 12:52:27    阅读次数:69
Python-基础-Chpater3
列表,语法:lists=[] 方法: append():在末尾增加一个 extend(interable):在末尾增加多个值 insert(i,x):在i下标增加x remove(x) :删除列表中第一个值为x的元素。如果没有,抛出ValueError异常 pop([x]):删除列表中给定位置的元素 ...
分类:编程语言   时间:2020-05-20 12:49:18    阅读次数:51
Appium问题解决方案(9)- Original error: Failed to launch Appium Settings app: Condition unmet after 5090 ms
背景 执行代码报错 解决方法 该问题并不常见,主要是手机操作系统的问题 程序无法无法自动打开appiumsettings,那么我们可以手动打开appiumsettings服务(程序没有界面,会出现打开就闪退的错觉,这是正常现象) 然后再运行脚本 如果觉得此方法麻烦,那就只能更新系统或者更换手机解决了 ...
分类:移动开发   时间:2020-05-20 12:44:51    阅读次数:176
Appium问题解决方案(7)- Could not find 'adb.exe' in PATH. Please set the ANDROID_HOME environment variable with the Android SDK root directory path
背景:运行代码提示找不到ADB An unknown server-side error occurred while processing the command. Original error: Could not find 'adb.exe' in PATH. Please set the A ...
分类:移动开发   时间:2020-05-20 12:43:19    阅读次数:157
Python读取文件报错
在读取桌面文件的时候一直报错:(unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape 一开始写的: xlsx = pd.ExcelFile('C:\Us ...
分类:编程语言   时间:2020-05-20 12:38:14    阅读次数:69
Appium问题解决方案(8)- selenium.common.exceptions.WebDriverException: Message: An unknown server-side error occurred while processing the command. Original error: Could not sign with default certificate.
背景 运行时代码报错: selenium.common.exceptions.WebDriverException: Message: An unknown server-side error occurred while processing the command. Original error ...
分类:移动开发   时间:2020-05-20 12:36:57    阅读次数:127
抛弃os.path,拥抱pathlib
基于Python的文件、目录和路径操作,我们一般使用的是os.path模块。 pathlib是它的替代品,在os.path上的基础上进行了封装,实现了路径的对象化,api更加通俗,操作更便捷,更符编程的思维习惯。 pathlib模块提供了一些使用语义化表示文件系统路径的类,这些类适合多种操作系统。路... ...
分类:其他好文   时间:2020-05-20 12:23:46    阅读次数:52
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!