org.apache.hadoop.fs.Path.checkPathArg()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(3.9k)|赞(0)|评价(0)|浏览(120)

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

Path.checkPathArg介绍

暂无

代码示例

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

/**
 * Construct a Path from components.
 *
 * @param scheme the scheme
 * @param authority the authority
 * @param path the path
 */
public Path(String scheme, String authority, String path) {
 checkPathArg( path );
 // add a slash in front of paths with Windows drive letters
 if (hasWindowsDrive(path) && path.charAt(0) != '/') {
  path = "/" + path;
 }
 // add "./" in front of Linux relative paths so that a path containing
 // a colon e.q. "a:b" will not be interpreted as scheme "a".
 if (!WINDOWS && path.charAt(0) != '/') {
  path = "./" + path;
 }
 initialize(scheme, authority, path, null);
}

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

checkPathArg( pathString );

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

/** Construct a Path from components. */
public Path(String scheme, String authority, String path) {
 checkPathArg( path );
 initialize(scheme, authority, path);
}

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

/** Construct a Path from components. */
public Path(String scheme, String authority, String path) {
 checkPathArg( path );
 initialize(scheme, authority, path);
}

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

/** Construct a Path from components. */
public Path(String scheme, String authority, String path) {
 checkPathArg( path );
 // add a slash in front of paths with Windows drive letters
 if (hasWindowsDrive(path) && path.charAt(0) != '/') {
  path = "/" + path;
 }
 // add "./" in front of Linux relative paths so that a path containing
 // a colon e.q. "a:b" will not be interpreted as scheme "a".
 if (!WINDOWS && path.charAt(0) != '/') {
  path = "./" + path;
 }
 initialize(scheme, authority, path, null);
}

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

/** Construct a Path from components. */
public Path(String scheme, String authority, String path) {
 checkPathArg( path );
 // add a slash in front of paths with Windows drive letters
 if (hasWindowsDrive(path) && path.charAt(0) != '/') {
  path = "/" + path;
 }
 // add "./" in front of Linux relative paths so that a path containing
 // a colon e.q. "a:b" will not be interpreted as scheme "a".
 if (!WINDOWS && path.charAt(0) != '/') {
  path = "./" + path;
 }
 initialize(scheme, authority, path, null);
}

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

/** Construct a Path from components. */
public Path(String scheme, String authority, String path) {
 checkPathArg( path );
 // add a slash in front of paths with Windows drive letters
 if (hasWindowsDrive(path) && path.charAt(0) != '/') {
  path = "/" + path;
 }
 // add "./" in front of Linux relative paths so that a path containing
 // a colon e.q. "a:b" will not be interpreted as scheme "a".
 if (!WINDOWS && path.charAt(0) != '/') {
  path = "./" + path;
 }
 initialize(scheme, authority, path, null);
}

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

checkPathArg( pathString );

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

checkPathArg( pathString );

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

checkPathArg( pathString );

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

/**
 * Construct a Path from components.
 *
 * @param scheme the scheme
 * @param authority the authority
 * @param path the path
 */
public Path(String scheme, String authority, String path) {
 checkPathArg( path );
 // add a slash in front of paths with Windows drive letters
 if (hasWindowsDrive(path) && path.charAt(0) != '/') {
  path = "/" + path;
 }
 // add "./" in front of Linux relative paths so that a path containing
 // a colon e.q. "a:b" will not be interpreted as scheme "a".
 if (!WINDOWS && path.charAt(0) != '/') {
  path = "./" + path;
 }
 initialize(scheme, authority, path, null);
}

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

checkPathArg( pathString );

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

checkPathArg( pathString );

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

checkPathArg( pathString );

相关文章