A. Sundararajan's Weblog - Annotated
- I looked at heapViewer.c and it does miss Agent_OnAttach function
- AgentLoadException: Failed to load agent library 异常的原因,可能是miss Agent_OnAttach function. - post by lithium
- JNIEXPORT jint JNICALL
Agent_OnAttach(JavaVM *vm, char *options, void *reserved) {
printf("attached..\n");
return Agent_OnLoad(vm, options, reserved);
}
- With the Mustang JDK you can now attach
jconsole to any application, even if it wasn't launched with the magic
-Dcom.sun.management.jmxremote - You can load any suitably coded native or Java agent
into running JVM using the attach API. - VirtualMachine vm = VirtualMachine.attach(args[0]);
- vm.loadAgent(args[1], null);
- 山寨版的唐骏
Google 黑板报 -- Google 中国的博客网志: 中文搜索:公正性是实现准确性的根本—中国搜索行业应当立即行动起来、正视搜索公正性 - Annotated
- 3. 我们呼吁所有的搜索引擎,加入谷歌、腾讯、雅虎的行列,作出下列承诺:
(1) 明确标识和区分广告及自然搜索结果,以免误导用户;
(2) 珍惜搜索结果页面的黄金区域,决不让第一页搜索结果全部为广告充斥,让中文用户彻底告别搜索从第二页开始的历史;
(3) 绝不滥用自身的市场地位,绝不以收费或变相收费的形式来改变或删除搜索结果。- 剑指百度呀,哈哈 - post by lithium
SourceForge.net: Highly Scalable Java
- These are intended as direct replacements for the java.util.* or java.util.concurrent.* collections but with better performance when many CPUs are using the collection concurrently.
- 口气够大的,找时间来看看 - post by lithium
怎样最有效地测试异常? - ajoo - JavaEye技术网站
- @Test(expected=FooException.class)
- public void testDoSomethingBadAfterInitializeSomething() {
- initializeSomething();
- doSomethingBad();
- }
- 用JUnit4可以这样测试异常,简洁明了 - post by lithium
Posted from Diigo. The rest of my favorite links are here.
没有评论:
发表评论