org.apache.hadoop.record.Utils.isValidCodePoint()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(2.4k)|赞(0)|评价(0)|浏览(107)

本文整理了Java中org.apache.hadoop.record.Utils.isValidCodePoint()方法的一些代码示例,展示了Utils.isValidCodePoint()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Utils.isValidCodePoint()方法的具体详情如下:
包路径:org.apache.hadoop.record.Utils
类名称:Utils
方法名:isValidCodePoint

Utils.isValidCodePoint介绍

暂无

代码示例

代码示例来源:origin: org.apache.hadoop/hadoop-common-test

private static void initStrings(Record[] strings) {
 final int STRLEN = 32;
 for (int idx = 0; idx < strings.length; idx++) {
  strings[idx] = new RecString();
  int strlen = rand.nextInt(STRLEN);
  StringBuilder sb = new StringBuilder(strlen);
  for (int ich = 0; ich < strlen; ich++) {
   int cpt = 0;
   while (true) {
    cpt = rand.nextInt(0x10FFFF+1);
    if (Utils.isValidCodePoint(cpt)) {
     break;
    }
   }
   sb.appendCodePoint(cpt);
  }
  ((RecString)strings[idx]).setData(sb.toString());
 }
}

代码示例来源:origin: io.prestosql.hadoop/hadoop-apache

" at offset "+(len-1)+" in length of "+utf8Len);
if (!isValidCodePoint(cpt)) {
 throw new IOException("Illegal Unicode Codepoint "+
            Integer.toHexString(cpt)+" in stream.");

代码示例来源:origin: ch.cern.hadoop/hadoop-common

" at offset "+(len-1)+" in length of "+utf8Len);
if (!isValidCodePoint(cpt)) {
 throw new IOException("Illegal Unicode Codepoint "+
            Integer.toHexString(cpt)+" in stream.");

代码示例来源:origin: com.github.jiayuhan-it/hadoop-common

" at offset "+(len-1)+" in length of "+utf8Len);
if (!isValidCodePoint(cpt)) {
 throw new IOException("Illegal Unicode Codepoint "+
            Integer.toHexString(cpt)+" in stream.");

代码示例来源:origin: com.facebook.hadoop/hadoop-core

" at offset "+(len-1)+" in length of "+utf8Len);
if (!isValidCodePoint(cpt)) {
 throw new IOException("Illegal Unicode Codepoint "+
            Integer.toHexString(cpt)+" in stream.");

代码示例来源:origin: io.hops/hadoop-common

" at offset "+(len-1)+" in length of "+utf8Len);
if (!isValidCodePoint(cpt)) {
 throw new IOException("Illegal Unicode Codepoint "+
            Integer.toHexString(cpt)+" in stream.");

代码示例来源:origin: org.apache.hadoop/hadoop-streaming

" at offset "+(len-1)+" in length of "+utf8Len);
if (!isValidCodePoint(cpt)) {
 throw new IOException("Illegal Unicode Codepoint "+
            Integer.toHexString(cpt)+" in stream.");

代码示例来源:origin: org.jvnet.hudson.hadoop/hadoop-core

" at offset "+(len-1)+" in length of "+utf8Len);
if (!isValidCodePoint(cpt)) {
 throw new IOException("Illegal Unicode Codepoint "+
            Integer.toHexString(cpt)+" in stream.");

相关文章