51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#So
glyphicons-halflings-regular.ttf:1 Failed to load resource: net::ERR_FILE_NOT_FOUND
下载替换https://gitlab.com/mailman/mailman-website/tree/a97d6b4c5b29594004e3855f1ab1222449d0c211/content/fonts...
代码星球
·
2020-11-01
glyphicons-halflings-regular.ttf
Failed
to
load
resource
python .socket 连接
https://blog.csdn.net/mgsky1/article/details/93412128https://blog.csdn.net/weixin_44449518/article/details/98739210https://bbs.csdn.net/topics...
代码星球
·
2020-11-01
python
.socket
连接
TensorFlow 报错 ValueError: Can't load save_path when it is None.
原因:模型还未生成出来,此时你去检测的生成完毕的模型,模型呢?还没生成.模型还没生成就引用了为什么不报错?解决办法:当前情况不要以为是你的程序有bug,而是你的模型还没生成完毕,OVER! ...
代码星球
·
2020-11-01
TensorFlow
报错
ValueError
Can
#39t
UltraISO 下载
链接:https://pan.baidu.com/s/1Wf0TmB8L9falKyGu8NwvBw提取码:1cu8 参考:https://jingyan.baidu.com/article/cbcede076aa64202f40b4da6.html...
代码星球
·
2020-11-01
UltraISO
下载
socket.error: [Errno 9] Bad file descriptor
这个错误很明显,是因为你关闭了套接字对象后,又再次去调用了套接字对象,此时套接字链接已经被关闭,你不能再去调用,所以才会出现这种错误,复查一下自己的代码,很快就可以解决。 参考:https://blog.csdn.net/weixin_40612082/article/details/800327...
代码星球
·
2020-11-01
socket.error
Errno
Bad
file
descriptor
socket.error: [Errno 32] Broken pipe . tcp
经过检查发现,是由于客户端请求的链接,在一次循环之后,产生的套接字关闭,没有新的客户端套接字进行请求连接,所以产生brokenpipe错误...
代码星球
·
2020-11-01
socket.error
Errno
Broken
pipe
tcp
Python socket 通信功能简介
常用的地址家族AF_UNIX:基于文件,实现同一主机不同进程之间的通信AF_INET:基于网络,适用于IPv4AF_INET6:基于网络,使用于IPv6常见的连接类型SOCK_STREAM:即TCP/IP。面向连接的套接字,通信之前必须建立可靠的连接。面向连接的套接字提供序列化的、可靠的和不重复的数据交付,...
代码星球
·
2020-11-01
Python
socket
通信
功能
简介
python中string、json、bytes的转换
str=json.dumps(jsonobj)str=str(bytes,‘utf-8’)json=json.loads(str) 参考:https://www.cnblogs.com/xiandedanteng/p/9009964.htmlhttps://www.cnbl...
代码星球
·
2020-11-01
python
string
json
bytes
转换
python json与字典对象互相转换
importrequestsimportjson'''json.loads(json_str)json字符串转换成字典json.dumps(dict)字典转换成json字符串'''#这是一个ajax发起的get请求,获取一个json对象r=requests.get("https://m.douban.com...
代码星球
·
2020-11-01
python
json
字典
对象
互相
编程用sort进行排序,然后从最后一个元素开始判断,去重
a=[1,2,4,2,4,5,7,10,5,5,7,8,9,0,3]a.sort()last=a[-1]foriinrange(len(a)-2,-1,-1):iflast==a[i]:dela[i]else:last=a[i]print(a) ...
代码星球
·
2020-11-01
编程
sort
进行
排序
然后
c++ rapidjson读取json文件 解析
库:链接:https://pan.baidu.com/s/1UChrgqLPJxKopyqShDCHjg 密码:3yhz #include<iostream>#include<string>#include"rapidjson/document.h"#includ...
代码星球
·
2020-11-01
c++
rapidjson
读取
json
文件
python 读写json数据
#coding=utf-8importjsondata={"update_time":"12982929921","version":"0.0.0","desc":{"hdw":{"desc":{"power":"1.0.0","motor":"1.0.0","imu":"1.0.0","sensor":"...
代码星球
·
2020-11-01
python
读写
json
数据
W tensorflow/core/platform/cpu_feature_guard.cc:45]
Wtensorflow/core/platform/cpu_feature_guard.cc:45]TheTensorFlowlibrarywasn'tcompiledtouseSSE3instructions,buttheseareavailableonyourmachineandcouldspeedup...
代码星球
·
2020-11-01
tensorflow
core
platform
cpu
feature
解决“cv2.error: OpenCV(3.4.2) C:projectsopencv-pythonopencvmoduleshighguisrcwindow.cpp:356:...”
主要是图片路径中“文件夹分隔符”使用的错误将“”改成“/”就好了修改后的测试代码如下:x.py#导入cv模块importcv2ascv#读取图像,支持bmp、jpg、png、tiff等常用格式img=cv.imread("./xx.pn...
代码星球
·
2020-11-01
解决
cv2.error
OpenCV
3.4.2
projectsopencv-pythonopencvmoduleshighguisrcwindow.cpp
json 文件读写
#coding=utf-8importjsondata={"update_time":"12982929921","version":"0.0.0","desc":{"hdw":{"desc":{"power":"1.0.0","motor":"1.0.0","imu":"1.0.0","sensor":"...
代码星球
·
2020-11-01
json
文件
读写
首页
上一页
...
98
99
100
101
102
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他