最新升级IDEA12到13版本,升级后发现IDEA中SVN无法正常使用,但文件夹下能够正常使用。 并且报错:svn: E204899: Cannot run program "svn" (in directory "G:\code\langchao\.idea"): CreateProcess error=2, ?...
分类:
其他好文 时间:
2014-07-22 08:19:34
阅读次数:
227
error opening trace file: No such file or directory (2)问题描述可以编译运行,但报错。问题原因及解决其实系统是找不到文件或者是目录!写了很多class文件后,在AndroidMainfest.xml中声明,后来又修改或者加了新的class,然后把...
分类:
移动开发 时间:
2014-07-22 00:39:36
阅读次数:
263
1 在Linux驱动中把无法归类的五花八门的设备定义为混杂设备(用miscdevice结构体表述)。miscdevice共享一个主设备号MISC_MAJOR(即10),但次设备号不同。 所有的miscdevice设备形成了一个链表,对设备访问时内核根据次设备号查找对应的miscdevice设备,然后调用其file_operations结构中注册的文件操作接口进行操作。 在内核中用struct m...
分类:
系统相关 时间:
2014-07-22 00:17:34
阅读次数:
415
1、Could not chdir to home directory /home/USER: Permission denied启动datanode时会报这个错误,尝试利用ssh登录datanode,发现需要密码。解决办法: 利用root权限修改/etc/sysconfig/selinux,将S....
分类:
其他好文 时间:
2014-07-21 14:27:28
阅读次数:
281
微软近期Open的职位:Job posting title: Senior Software Design EngineerLocation: China, BeijingLevel: 63Division: Operations System Group Engineering Group Ove...
分类:
移动开发 时间:
2014-07-21 11:27:09
阅读次数:
255
时间: 2014-7-20 11:30地点: andon问题: 研究xu库文件的创建,编译-链接通过后,执行文件时./ProjectC ./ProjectC: error while loading shared libraries: libProjectC.so: cannot open s...
分类:
其他好文 时间:
2014-07-21 10:26:43
阅读次数:
167
3.1搜索的简单实现1.创建IndexReaderpackagecom.mzsx.index;
importjava.io.File;
importjava.io.IOException;
importorg.apache.lucene.index.CorruptIndexException;
importorg.apache.lucene.index.IndexReader;
importorg.apache.lucene.store.Directory;
importorg.apac..
分类:
其他好文 时间:
2014-07-20 15:26:11
阅读次数:
313
参考:http://www.cnblogs.com/hlizard/p/3627792.html报错类似以下错误\"F:/GitExtensions/GitCredentialWinStore/git-credential-winstore.exe\" get: "F:/GitExtensions/...
1、yum install vsftpd;2、vi /etc/vsftpd/vsftpd.conf 将userlist_enable=YES改为NO3、vi /etc/vsftpd/ftpuser 将root注释掉4、如果提示 500 OOPS cannot change directory:/ro...
分类:
系统相关 时间:
2014-07-19 15:28:00
阅读次数:
349
Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations:getandset.get(key)- Get the valu...
分类:
其他好文 时间:
2014-07-19 12:13:13
阅读次数:
254