package test;
option cc_generic_services = true; //编译c++文件时,生成Service及Service_Stub接口类
option py_generic_services = true; //编译python文件时,生成Service及Service_Stub接口类
message...
分类:
编程语言 时间:
2014-11-12 19:53:33
阅读次数:
592
1.迭代式mapreduce ? ?? ???一些复杂的任务难以用一次MapReduce处理完成,需要多次 MapReduce 才能完成任务,例如Pagrank,K-means算法都需要多次的迭代,关于 MapReduce 迭代在Mahout中运用较多。有兴趣的...
分类:
其他好文 时间:
2014-11-12 19:53:00
阅读次数:
175
在最初接触mapreduce时,top n 问题的解决办法是将mapreduce输出(排序后)放入一个集合中,取前n个,但这种写法过于简单,内存能够加载的集合的大小是有上限的,一旦数据量大,很容易出现内存溢出。 ? ...
分类:
其他好文 时间:
2014-11-12 19:50:39
阅读次数:
135
effectiveC++ 读书笔记 条款08...
分类:
编程语言 时间:
2014-11-12 19:49:18
阅读次数:
197
1. Open a command console and go to the directory where you installed Postgre server.
e.g. D:\Program Files\PostgreSQL\9.3\bin>
2. Drill down into BIN folder and issue following command.
psql -d -...
分类:
其他好文 时间:
2014-11-12 19:51:25
阅读次数:
215
条件与循环
条件执行:
name = raw_input('What is your name? ')
if name.endswith('Gumby'):
print 'Hello, Mr.Gumby'What is your name? Gumby
Hello, Mr.Gumbyname = raw_input('What is your name? ')
if name.endswit...
分类:
编程语言 时间:
2014-11-12 19:50:03
阅读次数:
245
前段时间做了一个功能,就是锁定主launch,机器上只能跑我们定义的launch,当时没注意影响,
最近发现就是因为在AMS中加了这个锁定过滤条件导致原生Browser无法启动了,
把我郁闷的,当时怎么想都觉得奇怪,这完全不相关的两件事怎么会影响到~ 这里记录一下...
分类:
移动开发 时间:
2014-11-12 19:49:03
阅读次数:
339
//删除文件夹
private void deleteDirectory(File folder) {
if (folder.exists()) {
File[] files = folder.listFiles();
if (files == null) {
return;
}
for (int i = 0; i < files.length; i++) {...
分类:
移动开发 时间:
2014-11-12 19:49:18
阅读次数:
211
在C++程序中,经常用const 来限制对一个对象的操作,例如,将一个变量定义为const 的:
const int n=3;
则这个变量的值不能被修改,即不能对变量赋值。
const 这个关键字经常出现在函数的定义中,而且会出现在不同的位置,比如:
int strcmp (const char *str1,cons...
分类:
其他好文 时间:
2014-11-12 19:50:42
阅读次数:
198
dpdk的版本是1.7.1的稳定版
绑定万兆网卡的默认驱动ixgbe失败
# ./dpdk_nic_bind.py -b ixgbe 06:00.1
Error: bind failed for 0000:06:00.1 - Cannot bind to driver ixgbe
查看原因 dmesg |tail
# dmesg |tail
[ 5667.433649] ixgbe...
分类:
其他好文 时间:
2014-11-12 19:50:32
阅读次数:
587
Description
The advice to "buy low" is half the formula to success in the bovine stock market.To be considered a great investor you must also follow this problems' advice:
"Bu...
分类:
其他好文 时间:
2014-11-12 19:50:43
阅读次数:
301
PHPthinking官方论坛正式上线一个月!目前,我们已经拥有几百人的固定用户,论坛发展迅速,全是大家分享的一些技术贴,希望更多的用户加入进来,营造一个学习、交流更加方便、内容更加充实的PHP论坛!
PHPthinking官网:http://www.phpthinking.com
PHPthinking论坛:http://bbs.phpthinking.com
PHPthinkin...
分类:
Web程序 时间:
2014-11-12 19:51:00
阅读次数:
202
The count-and-say sequence is the sequence of integers beginning as follows:
1, 11, 21, 1211, 111221, ...
1 is read off as "one
1" or 11.
11 is read off as "two
1s" or 21.
21 is read off as ...
分类:
其他好文 时间:
2014-11-12 19:50:50
阅读次数:
164
2,"id"=>4);
print_r(($b));
echo $b['name'];
$a=1;
while ( $a...
分类:
Web程序 时间:
2014-11-12 19:48:38
阅读次数:
160
#pragma mark 截图
- (UIImage *)capture:(UIView *)view
{
UIGraphicsBeginImageContextWithOptions(view.bounds.size, YES, 0.0);
[view.layer renderInContext:UIGraphicsGetCurrentContext()];
U...
分类:
移动开发 时间:
2014-11-12 19:47:11
阅读次数:
200
数据链路层——MAC帧
MAC层的硬件地址硬件地址又称为物理地址或MAC 地址。
IEEE802 标准规定的48 比特的全球地址,是指局域网上的每一台计算机所插入的网卡上固化在ROM 中的地址。
IEEE 的注册管理委员会RAC 负责分配地址字段的6 个字节中的前3个字节。
地址字段的后3个字节有厂家自行指派,称为扩展标识符,只要保证生产出的网卡没有重复即可。用这种方法得到的...
分类:
其他好文 时间:
2014-11-12 19:48:00
阅读次数:
285
1、java版本
public string PptReader(string filename)
{
string fullname = DocPath+filename; //绝对路径
PowerPoint.Application papp = new PowerPoint.Application();
PowerPoint.Presentation ppr = papp.Prese...
分类:
其他好文 时间:
2014-11-12 19:47:56
阅读次数:
172