当前位置: 首页>>代码示例>>Java>>正文


Java SCMProbeStat类代码示例

本文整理汇总了Java中jenkins.scm.api.SCMProbeStat的典型用法代码示例。如果您正苦于以下问题:Java SCMProbeStat类的具体用法?Java SCMProbeStat怎么用?Java SCMProbeStat使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


SCMProbeStat类属于jenkins.scm.api包,在下文中一共展示了SCMProbeStat类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: stat

import jenkins.scm.api.SCMProbeStat; //导入依赖的package包/类
@Nonnull
private SCMProbeStat stat(String root, String name) throws GitLabAPIException, FileNotFoundException {
    for (GitlabRepositoryTree content : api().getTree(projectId, hash, root)) {
        if (content.getName().equals(name)) {
            if (TYPE_BLOB.equals(content.getType())) {
                return SCMProbeStat.fromType(SCMFile.Type.REGULAR_FILE);
            } else if (TYPE_DIRECTORY.equals(content.getType())) {
                return SCMProbeStat.fromType(SCMFile.Type.DIRECTORY);
            } else {
                return SCMProbeStat.fromType(SCMFile.Type.OTHER);
            }
        }
    }

    throw new FileNotFoundException(root + "/" + name);
}
 
开发者ID:Argelbargel,项目名称:gitlab-branch-source-plugin,代码行数:17,代码来源:GitLabSCMProbe.java

示例2: stat

import jenkins.scm.api.SCMProbeStat; //导入依赖的package包/类
@Override
public SCMProbeStat stat(@NonNull String file) throws IOException {
	try {
		for(P4Path path : head.getPaths()) {
			String depotPath = path.getPathBuilder(file);
			if (p4.hasFile(depotPath)) {
				return SCMProbeStat.fromType(SCMFile.Type.REGULAR_FILE);
			}
		}
	} catch (Exception e) {
		throw new IOException("Unable to check file: " + e.getMessage());
	}
	return SCMProbeStat.fromType(SCMFile.Type.NONEXISTENT);
}
 
开发者ID:p4paul,项目名称:p4-jenkins,代码行数:15,代码来源:P4Probe.java


注:本文中的jenkins.scm.api.SCMProbeStat类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。