码迷,mamicode.com
首页 >  
搜索关键字:does not match    ( 7565个结果
(图解)Description Resource Path Location Type Java compiler level does not match the version of
project 编译问题 1、在项目上右键properties->project Facets->修改右侧的version  保持一致 2、window->preferences->java->Compiler->设置右侧的Compiler compliance level 3、window->preferences->java->Installed JREs...
分类:编程语言   时间:2014-10-10 22:42:54    阅读次数:221
使用Boost Regex 的regex_search进行遍历搜索
在regex_search函数中,会将找到的第一个匹配结果保存到一个smatch类中。 然而如果搜索字符串中有多个匹配结果,则需要自己实现了。 在smatch中,有两个成员,官方文档如下: iterator first: An iterator denoting the position of the start of the match. iterator second An ite...
分类:其他好文   时间:2014-10-10 19:25:14    阅读次数:180
ETL技术工具kettle入门笔记(一) 之kettle连接oracle rac 报listener does not currently know of sid错误的解决
kettle连接oracle rac 报listener does not currently know of sid错误的解决...
分类:数据库   时间:2014-10-10 17:19:24    阅读次数:948
rhel 6.4 device eth0 does no seem to be present delaying initalization
RHEL6.4克隆系统后出现:“Deviceeth0doesnotseemtobepresent,delayinginitialization.”解决方法:删除/etc/udev/rules.d/70-persistent-net.rules 后重启机器。70-persistent-net.rules这个文件确定了网卡与MAC地址的绑定,clone之后网卡的MAC地址发生了变化,所以导致系统认..
分类:其他好文   时间:2014-10-10 15:16:04    阅读次数:164
BZOJ 1264 AHOI2006 基因匹配Match 动态规划+树状数组
题目大意:给定n个数和两个长度为n*5的序列,每个数恰好出现5次,求两个序列的LCS n 所以我们考虑LCS的一些性质 LCS的决策+1的条件是a[i]==b[j] 于是我们记录a序列中每个数的5个位置 扫一下b[i] 对于每个b[i]找到b[i]在a中的5个位置 这5个位置的每个f[pos]值都可以被b[i]更新 于是找到f[1]到f[pos-1]的最大值+1 更新f[pos]即可 这...
分类:其他好文   时间:2014-10-10 12:52:34    阅读次数:172
TFS 异常处理------API tfs User or role 'TFSEXECROLE' does not exist in this database.
使用API调用QueueCreateCollection去创建tfs collection 返回The collection servicing job did not succeed.查询TFS的Logs中:[error]:tfs User or role 'TFSEXECROLE' does n...
分类:数据库   时间:2014-10-10 11:48:54    阅读次数:200
Install MongoDB on Windows
OverviewUse this tutorial to install MongoDB on a Windows systems.PLATFORM SUPPORTStarting in version 2.2, MongoDB does not support Windows XP. Please...
分类:数据库   时间:2014-10-10 05:20:04    阅读次数:471
eclipse解决editor does not contain a main type的方法
转自:http://blog.csdn.net/huazhangena/article/details/7349044写在前面的话:我的也出现这个问题,但是解决方法和转发的内容不太一样,原理一样,我是右击src--build path--use as source folder,估计以前是删除了工程...
分类:系统相关   时间:2014-10-10 02:27:43    阅读次数:256
Android Caused by: java.lang.IllegalArgumentException: column '_id' does not exist
出错原因:在查询整个sqlite数据库时,没有查询到 "_id" 这一列。原来的代码是:mSQLiteDatabase.query(table_name, new String[] {_title}, null, null, null, null, null);修改后的代码为:mSQLiteData...
分类:移动开发   时间:2014-10-09 18:38:47    阅读次数:212
php Function ereg() is deprecated的解决方法
PHP 5.3 ereg() 无法正常使用,提示“Function ereg() is deprecated Error”。问题根源是php中有两种正则表示方法,一个是posix,一个是perl,php6打算废除posix的正则表示方法所以后来就加了个preg_match。此问题解决办法很简单,在e...
分类:Web程序   时间:2014-10-09 14:48:18    阅读次数:257
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!