码迷,mamicode.com
首页 >  
搜索关键字:warning    ( 3842个结果
github如何配置ssh
1.问题: Warning: Permanently added 'github.com' (RSA) to the list of known hosts. git@github.com: Permission denied (publickey). fatal: Could not read f ...
分类:其他好文   时间:2021-07-05 16:56:22    阅读次数:0
vscode和插件配置
插件列表: code --install-extension abusaidm.html-snippetscode --install-extension akamud.vscode-javascript-snippet-packcode --install-extension christian- ...
分类:其他好文   时间:2021-07-01 16:41:12    阅读次数:0
resttemplate使用
RestTemplate String url = "http://aaa.com"; URI uri = URI.create(url); post请求无参数 JSONObject jsonObject = restTemplate.postForObject(uri, "{}", JSONObj ...
分类:其他好文   时间:2021-06-30 18:30:07    阅读次数:0
1:C++搭配PCL显示一个点云
本文内容:显示一个点云文件。 平台:vs2017+PCL1.8 1 #pragma warning(disable:4996) 2 #include <pcl/registration/ia_ransac.h>//采样一致性 3 #include <pcl/point_types.h> 4 #inc ...
分类:编程语言   时间:2021-06-30 17:51:50    阅读次数:0
2:C++搭配PCL显示多个点云
将点云显示封装为函数,在主函数里调用 1 #pragma warning(disable:4996) 2 #include <pcl/registration/ia_ransac.h>//采样一致性 3 #include <pcl/point_types.h> 4 #include <pcl/poi ...
分类:编程语言   时间:2021-06-30 17:49:47    阅读次数:0
mysql 启动失败问题
Warning: World-writable config file '/etc/mysql/my.cnf' is ignoredERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mys ...
分类:数据库   时间:2021-06-28 20:57:43    阅读次数:0
使用idea连接数据库时报错 Server returns invalid timezone. Go to 'Advanced' tab and set 'serverTimezon
原因: mysql数据库的时区设置错误 解决办法: ①.Win+R 输入cmd 打开控制台 ②.打开数据库, 输入: mysql -uroot -p ③.查看数据库是否设置时区 show variables like '%time_zone%'; mysql> show variables like ...
分类:数据库   时间:2021-06-28 18:57:02    阅读次数:0
机器学习sklearn(51): 特征工程(十八) 特征降维(九)降维算法PCA和SVD(四)PCA对手写数字数据集的降维
PCA对手写数字数据集的降维 还记得我们上一周在讲特征工程时,使用的手写数字的数据集吗?数据集结构为(42000, 784),用KNN跑一次半小时,得到准确率在96.6%上下,用随机森林跑一次12秒,准确率在93.8%,虽然KNN效果好,但由于数据量太大,KNN计算太缓慢,所以我们不得不选用随机森林 ...
分类:编程语言   时间:2021-06-28 18:03:47    阅读次数:0
MYSQL Packets out of order. Expected 1 received 56. Packet size=3420216错误
报错信息: PHP Warning: Packets out of order. Expected 1 received 56. Packet size=3420216 in /data/bogiang/test/EC/swoole_process.php on line 62 Warning: P ...
分类:数据库   时间:2021-06-22 18:19:52    阅读次数:0
python logging 禁止es requests模块输出info级别日志
项目日志级别设置为 INFO es 和request 输出很多日志影响分析查看,把这两个模块日志输出级别设置为WARN request 模块设置 logging.getLogger("requests").setLevel(logging.WARNING) es 模块设置 logging.getLo ...
分类:编程语言   时间:2021-06-19 19:08:21    阅读次数:0
3842条   1 2 3 4 ... 385 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!