In one embodiment, a source device detects a packet flow that meets criteria for multi-path forwarding, and forwards a probe packet on a primary path ...
分类:
Web程序 时间:
2014-07-22 22:47:53
阅读次数:
374
TriangleGiven a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, given...
分类:
其他好文 时间:
2014-07-22 22:47:52
阅读次数:
230
搭建嵌入式开发环境一.把boootloader写到SD卡 1、把SD卡插入PC机 2、fdisk -l查看SD卡对应的设备文件 3、卸载SD卡 4、.//write_sd /dev/sdb u-boot-movi.bin 5、把SD卡插入开发板,并切换为SD卡启动方式,上电二、配置minicom 1...
分类:
其他好文 时间:
2014-07-22 22:47:14
阅读次数:
241
Write-ups 本文最早发布在TSRC,详细地址:http://security.tencent.com/index.php/blog/msg/55 Forensics USB is FUN 这道题目就给出了一个文件下载地址:http://41.231.53.40/for1.pcapng 文件后...
分类:
Web程序 时间:
2014-07-22 22:45:55
阅读次数:
636
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, given the fol...
分类:
其他好文 时间:
2014-07-22 22:40:36
阅读次数:
238
package cn.lmj.mapreduce;import java.io.IOException;import java.util.Iterator;import org.apache.hadoop.fs.Path;import org.apache.hadoop.io.LongWritabl...
分类:
其他好文 时间:
2014-07-22 22:40:15
阅读次数:
170
shuffle是处在map和reduce之间的过程。我们看一下这个过程都有哪些步骤,对这个问题了解的并不深,可能有错误,忘指正
1. map
map输出key,value,对应代码里的context.write(key, value);,这个步骤是将key,value写到内存buffer里了,这个内存的默认大小是100M
2. sort
当数据大小超过buffer容量的80%(默认)时,会...
分类:
其他好文 时间:
2014-07-22 22:39:53
阅读次数:
295
The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path...
分类:
编程语言 时间:
2014-07-22 22:38:33
阅读次数:
239
本章介绍如何用 D3 做一个饼状图。初始数据是几个整数,将这几个整数转换成饼状图使用的数据,转换用 Layout 来转换数据。...
分类:
Web程序 时间:
2014-07-22 14:17:14
阅读次数:
568
今天在做项目时,遇到一个需要获取第几行第几列的问题。后来,网上找了找资料,整理了此文。(使用jquery的preAll()获取列)
代码如下:
function c(temp){
var hang = $(temp.parentNode).parent().prevAll().length+1;
var lie...
分类:
Web程序 时间:
2014-07-22 14:09:04
阅读次数:
394