码迷,mamicode.com
首页 >  
搜索关键字:cause failed to find    ( 31758个结果
Python--linux下安装依赖时报错command 'gcc' failed with exit status 1
Python--linux下安装依赖时报错command 'gcc' failed with exit status 1 博客说明 文章所涉及的资料来自互联网整理和个人总结,意在于个人学习和经验汇总,如有什么地方侵权,请联系本人删除,谢谢! 说明 在一个新的linux上部署flask项目时出现这个问 ...
分类:编程语言   时间:2020-05-30 01:14:00    阅读次数:91
匈牙利算法
匈牙利算法 #include <iostream> #include <vector> #include <cstdio> #include <cstring> #include <queue> using namespace std; #define ll long long #define pb ...
分类:编程语言   时间:2020-05-29 23:35:50    阅读次数:77
什么是 .bashrc,为什么要编辑 .bashrc
你的 home 目录下藏着很多隐藏文件。如果你在运行 macOS 或者主流的 Linux 发行版的话,你就会在靠近隐藏文件列表的上方看见一个名为 .bashrc 的文件。那么什么是 .bashrc,编辑 .bashrc 又有什么用呢? finder-find-bashrc 如果你运行一个基于 Uni ...
分类:其他好文   时间:2020-05-29 21:11:45    阅读次数:79
ros gazebo it says it‘s incompatible with that RT
gzserver: /build/ogre-1.9-mqY1wq/ogre-1.9-1.9.0+dfsg1/OgreMain/src/OgreRenderSystem.cpp:546: virtual void Ogre::RenderSystem::setDepthBufferFor(Ogre::RenderTarget*): Assertion `bAttached && "A new DepthBuffer for a RenderTarget was created, but after creation" "it says it‘s incompatible with that RT"‘ failed.
分类:其他好文   时间:2020-05-29 19:45:03    阅读次数:180
Linux下搜索文件常用方法
###1、 which 命令 which指令会在环境变量$PATH设置的目录里查找符合条件的文件 which bash # 显示: /usr/bin/bash ###2、 find 命令 find 命令用来在指定目录下查找文件。任何位于参数之前的字符串都将被视为欲查找的目录名。如果使用该命令时,不设 ...
分类:系统相关   时间:2020-05-29 17:49:25    阅读次数:76
WCF 添加X509证书加密
1.先在服务器添加证书 makecert.exe -sr LocalMachine -ss My -a sha1 -n CN=TestServer -sky exchange -pe 2.设置证书的权限,everyone添加读取权限 3.服务器端配置 ` 这里设置成None因为我们创建的是不受信任的 ...
分类:其他好文   时间:2020-05-29 16:23:23    阅读次数:82
Find if all numbers appear an even number of times
package _interview_question /** * Given a list/array of integers, return a boolean that states whether all numbers appear an even number of times. Exa ...
分类:移动开发   时间:2020-05-29 13:33:33    阅读次数:69
浏览器自定义Ajax函数批量调接口
function Ajax(type, url, data, success, failed){ // 创建ajax对象 var xhr = null; if(window.XMLHttpRequest){ xhr = new XMLHttpRequest(); } else { xhr = new ...
分类:Web程序   时间:2020-05-29 13:32:49    阅读次数:65
mybatis项目报错:Cause: java.lang.IllegalArgumentException: invalid comparison: java.util.Date and java.lang.String
今日Mybatis执行一个add命令时,报错 invalid comparison: java.util.Date and java.lang.String;字面意思是Data和String不匹配,但是我仔细查看了Pojo以及jdbcType的类型,都是时间类型,没有错误,但是清除class之后重新 ...
分类:编程语言   时间:2020-05-29 12:11:16    阅读次数:77
二分法
算法 是高效解决问题的办法 用于某种特定的场景 算法之 二分法 需求:有一个按照从小到大顺序排列的数字列表,需要从该数字列表中找到我们想要的那个数字,如何做更高效??? 方案1:整体遍历,效率太低 nums = [-3,4,7,10,13,21,43,77,89] find_num = 10 for ...
分类:其他好文   时间:2020-05-29 09:34:10    阅读次数:67
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!