http://www.游戏蛮牛.com/forum.php?mod=viewthread&tid=15507&page=1&authorid=1235
分类:
Web程序 时间:
2014-05-12 16:50:42
阅读次数:
336
环境:OS:Centos 6.5 x64 & Soft:Hadoop
1.2.11、查看当前块大小,默认64M。[huser@master hadoop-1.2.1]$ bin/hadoop fs -stat "%o"
./in/test1.txt671088642、修改hdfs-site.conf...
分类:
其他好文 时间:
2014-05-06 08:59:21
阅读次数:
368
留待修改私货:啊这个标题逼格好高5.2 10:36 开始阅读
分类:
编程语言 时间:
2014-05-02 17:31:08
阅读次数:
255
SubsetsGiven a set of distinct integers,S,
return all possible subsets.Note:Elements in a subset must be in non-descending
order.The solution set must...
分类:
其他好文 时间:
2014-05-02 16:39:15
阅读次数:
315
原地址:http://www.cocoachina.com/bbs/read.php?tid=70395&page=1分享看见的2篇好文.简单翻译了一下并且放出原文http://www.cratesmith.com/archives/1831.做减法大量代码在Update()或FixedUpdate...
分类:
移动开发 时间:
2014-05-02 15:21:12
阅读次数:
537
模拟namenode崩溃,将name目录的内容全部删除,然后通过secondary
namenode恢复namenode。环境:OS:Centos 6.5 x64 & Soft:Hadoop
1.2.11、进入name目录下,删除name目录内容。[huser@master name]$ pwd/h...
分类:
其他好文 时间:
2014-05-02 14:44:28
阅读次数:
517
在学习的java当中有3种选择语句,分别是if语句
if/else语句和swich语句三种。if语句由一个后跟一到多个语句的布尔表达组成 语法表达为if(布尔表达式){如果布尔表达式为true,就执行 比如int
a=10;if的表达式可以是true 和false if(a>10&&a0){ Sy....
分类:
其他好文 时间:
2014-05-02 14:24:59
阅读次数:
267
vbs获取当前时间日期的代码,文章来源:脚本学堂。获取当前日期方法一:Currentdate1=date()msgbox
Currentdate1获取当前日期方法二:Currentdate2=year(Now)&"-"&Month(Now)&"-"&day(Now)msgbox
Currentdat...
分类:
其他好文 时间:
2014-05-02 11:27:20
阅读次数:
314
在C语言某个程序当中需要把文本16进制转换成对应的16进制数,比如字符串"0x1a"转换成10进制的26,可以用以下函数来实现相关函数: atof, atoi,
atol, strtod, strtoul表头文件: #include 定义函数: long int strtol(const char ...
分类:
编程语言 时间:
2014-05-02 09:58:29
阅读次数:
290
#include
using namespace std;
void f(int(&p)[3]){
cout
cout
}
int main(){
int a1[3]={1,2,3};
cout
cout
f(a1);
}
编译后输出:...
分类:
其他好文 时间:
2014-05-02 05:32:02
阅读次数:
265