使用的是:+PrintGCDetails
-XX:+PrintGCTimeStamps输出的日志格式: [Times: user=0.03 sys=0.00, real=0.01
secs]363.375: [GC 363.375: [ParNew: 39424K->3249K(39424K), 0...
分类:
其他好文 时间:
2014-06-12 22:38:15
阅读次数:
347
1,忘记sys密码 打开CMD命令窗口,执行以下操作:1,SQLPLUS
/NOLOG;2,3,CONNECT / AS SYSDBA4,5,ALTER USER SYS IDENTIFIED BY 新密码6,7,ALTER USER
SYSTEM IDENTIFIED BY 新密码8,2,以sys...
分类:
数据库 时间:
2014-06-12 18:40:13
阅读次数:
361
在早期,我们都是通过使用 JavaScript 来实现占位符功能。而现在,HTML5
原生提供的 placeholder 属性让我们在现代浏览器轻松就能实现这样的功能。这里向大家分享一个自适应的占位符效果(Adaptive
Placeholder),当你输入的时候,提示文字不会消失,而是以动画的方式...
分类:
其他好文 时间:
2014-06-12 17:04:47
阅读次数:
219
sublime Package Control 安装...
分类:
其他好文 时间:
2014-06-11 00:06:06
阅读次数:
212
There are three DMVs you can use to track
tempdb
usage:sys.dm_db_task_space_usagesys.dm_db_session_space_usagesys.dm_db_file_space_usageThe
first two ...
分类:
数据库 时间:
2014-06-10 11:27:07
阅读次数:
307
brk(addr)直接修改堆的大小。addr指定current->mm->brk的新值,返回值是线性区新的结束地址,这是一个系统调用。当用户态的进程调用brk()系统调用时,内核执行sys_brk(addr)函数。下面分析这个函数的执行流程:
1:检测addr参数是否位于进程代码段所在的线性区,如果是直接返回,因为堆不能与进程代码段所在的线性区重合。
mm=current->mm;
down_...
分类:
其他好文 时间:
2014-06-10 11:06:20
阅读次数:
284
Graph coloring is the problem of assigning a color to each vertex of an undirected graph such that no two adjacent vertices have the same color. We implement the greedy algorithm from Scalable parallel graph coloring algorithms. The algorithm iteratively f...
分类:
其他好文 时间:
2014-06-10 07:10:19
阅读次数:
260