在上一节我们分析了TaskTracker如何对JobTracker分配过来的任务进行初始化,并创建各类JVM启动所需的信息,最终创建JVM的整个过程,本节我们继续来看,JVM启动后,执行的是Child类中的Main方法,这个方法是如何执行的。1,从命令参数中解析相应参数,获取JVMID、建立RPC连...
分类:
其他好文 时间:
2014-08-31 01:36:00
阅读次数:
259
#includevoid AdjustMinHeap(int *a,int pos,int len){ int temp,child; for(temp=a[pos];pos*2+1=0;i--) AdjustMinHeap(array,i,len-1); for(i=le...
分类:
其他好文 时间:
2014-08-30 17:36:59
阅读次数:
147
#include pid_t fork(void); Returns: 0 in child, process ID of child in parent,?1 on error
Unix可以使用系统函数fork()创建一个新进程。
fork()执行一次返回两次。
返回值:
0:
...
分类:
其他好文 时间:
2014-08-29 14:44:18
阅读次数:
207
<ul> ??<li>John</li> ??<li>Karl</li> ??<li>Brandon</li> </ul> 获取第一个元素:??$("ul li:first-child") <div id="getfirst">? ??<ul> ????<li>John</li> ????<li>Karl</li> ????<li...
分类:
Web程序 时间:
2014-08-29 13:16:48
阅读次数:
220
本文为senlie原创,转载请保留此地址:http://blog.csdn.net/zhengsenlie
Candy
Total Accepted: 16494 Total
Submissions: 87468My Submissions
There are N children standing in a line. Each child is ...
分类:
其他好文 时间:
2014-08-29 02:54:17
阅读次数:
228
1 Candy题目:There areNchildren standing in a line. Each child is assigned a rating value.You are giving candies to these children subjected to the follo...
分类:
其他好文 时间:
2014-08-28 16:08:29
阅读次数:
294
原题戳我There are N children standing in a line. Each child is assigned a rating value.You are giving candies to these children subjected to the following...
分类:
其他好文 时间:
2014-08-28 12:59:49
阅读次数:
254
1 void dfs(int u,int father) 2 { 3 int child=0; 4 dfn[u]=low[u]=++dfs_clock; 5 6 for (int c=head[u];c;c=nxt[c]) 7 { 8 in...
分类:
其他好文 时间:
2014-08-27 18:21:18
阅读次数:
219
CSS3 伪类选择器 nth-child() 的用法伪类选择器 nth-child() 在IE6-8和FF3.0-浏览器不支持,CSS3中nth-of-type(n)(比如nth-of-type(1))这个特殊的类选择符可以样式更加 个性的标题和段落等,不过,目前nth-of-type(n)只支持火...
分类:
其他好文 时间:
2014-08-27 15:57:57
阅读次数:
155
Run the following command first to start the mongo servermongod run --config /usr/local/etc/mongod.confAssuming you installed mongo usingBrew.More inf...
分类:
数据库 时间:
2014-08-26 00:10:15
阅读次数:
554