类org.apache.hadoop.io.SequenceFile.ValueBytes源码实例Demo

下面列出了怎么用org.apache.hadoop.io.SequenceFile.ValueBytes的API类实例代码及写法,或者点击链接到github查看源代码。

源代码1 项目: hadoop   文件: BasicTypeSorterBase.java
public ValueBytes getValue() throws IOException {
  //value[i] is stored in the following byte range:
  //startOffsets[i] + keyLengths[i] through valLengths[i]
  value.reset(keyValBuffer,
              startOffsets[currStartOffsetIndex] + keyLengths[currStartOffsetIndex],
              valLengths[currStartOffsetIndex]);
  return value;
}
 
源代码2 项目: big-c   文件: BasicTypeSorterBase.java
public ValueBytes getValue() throws IOException {
  //value[i] is stored in the following byte range:
  //startOffsets[i] + keyLengths[i] through valLengths[i]
  value.reset(keyValBuffer,
              startOffsets[currStartOffsetIndex] + keyLengths[currStartOffsetIndex],
              valLengths[currStartOffsetIndex]);
  return value;
}
 
源代码3 项目: RDFS   文件: BasicTypeSorterBase.java
public ValueBytes getValue() throws IOException {
  //value[i] is stored in the following byte range:
  //startOffsets[i] + keyLengths[i] through valLengths[i]
  value.reset(keyValBuffer,
              startOffsets[currStartOffsetIndex] + keyLengths[currStartOffsetIndex],
              valLengths[currStartOffsetIndex]);
  return value;
}
 
源代码4 项目: hadoop-gpu   文件: BasicTypeSorterBase.java
public ValueBytes getValue() throws IOException {
  //value[i] is stored in the following byte range:
  //startOffsets[i] + keyLengths[i] through valLengths[i]
  value.reset(keyValBuffer,
              startOffsets[currStartOffsetIndex] + keyLengths[currStartOffsetIndex],
              valLengths[currStartOffsetIndex]);
  return value;
}
 
 类所在包
 类方法
 同包方法