一.出现了上述问题解决办法 1.查看eclipse.ini文件 看看eclipse环境架构需要的是什么。 plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.200.v20140116-2212 这个是要求win32 ...
分类:
系统相关 时间:
2014-08-26 19:31:16
阅读次数:
257
Non-blocking algorithm
In computer science, a non-blocking algorithm ensures that threads competing
for a shared resource do not have their execution indefinitely
postponed by mutual ex...
分类:
其他好文 时间:
2014-08-26 09:52:09
阅读次数:
270
一般我们在Linux下执行某些外部程序的时候可能会提示找不到共享库的错误, 比如:tmux: error while loading shared libraries: libevent-1.4.so.2: cannot open shared object file: No such file o...
分类:
其他好文 时间:
2014-08-25 18:32:04
阅读次数:
219
微软近期Open的职位:Title: Principal Dev ManagerLocation: BeijingThe R&D of Shared Data Platform at Search Technology Center Asia aims to build a unified data...
分类:
其他好文 时间:
2014-08-25 16:32:34
阅读次数:
271
Consistency model
From Wikipedia, the free encyclopedia
In computer science, consistency
models are used in distributed systems like distributed
shared memory systems or distributed da...
分类:
其他好文 时间:
2014-08-25 11:53:34
阅读次数:
359
你打开tomcat7\conf\catalina.properties文件再打开tomcat5的,看完后, 你就知道了tomcat 5.5.35## List of comma-separated paths defining the contents of the "shared" # class...
分类:
其他好文 时间:
2014-08-24 16:39:22
阅读次数:
181
条款13:以对象管理资源
使用RAII,获得资源后立刻放进管理对象,管理对象运用析构函数确保资源被释放。
为防止资源泄露,请使用RAII对象,它们在构造函数中获得资源并在析构函数中释放资源。
两个常被使用的RAII类是tr1::shared_ptr和tr1::auto_ptr。前者通常是较佳选择,因为其拷贝行为比较直观。若选择auto_ptr,复制动作会使被复制物指向null.
条款14...
分类:
编程语言 时间:
2014-08-22 16:22:49
阅读次数:
250
这里直接把在网上的找到的答案记录下来,原文地址:http://www.oschina.net/question/109676_15561:如果出现启动 Eclipse 弹出“Failed to load the JNI shared library jvm.dll”错误,原因1:给定目录下jvm.d...
分类:
系统相关 时间:
2014-08-21 22:39:54
阅读次数:
707
TARGET_LIB:=libsqlite3.so
LIBS := -lpthread -ldl
CFLAGS := -g -Wall -shared -fPIC -I. $(LIBS)
CC := mipsel-openwrt-linux-gcc #交叉编译下的编译路径
STRIP := mipsel-openwrt-linux-strip
OBJ := sqlite3.o
all...
分类:
数据库 时间:
2014-08-21 11:34:24
阅读次数:
631
13.27 定义使用引用计数版本的HasPtr#include#include#includeusing namespace std;class HasPtr{public: HasPtr(const string &s=string()):ps(new string(s)),i(0),use...
分类:
其他好文 时间:
2014-08-20 23:59:13
阅读次数:
474