本文整理了Java中hudson.tasks.Builder.perform()
方法的一些代码示例,展示了Builder.perform()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Builder.perform()
方法的具体详情如下:
包路径:hudson.tasks.Builder
类名称:Builder
方法名:perform
暂无
代码示例来源:origin: ingenieux/awseb-deployment-plugin
@Override
public boolean perform(AbstractBuild<?, ?> build, Launcher launcher, BuildListener listener) throws InterruptedException, IOException {
return super.perform(build, launcher, listener);
}
代码示例来源:origin: org.jenkins-ci.plugins/python-wrapper
public boolean superPerform(AbstractBuild<?, ?> build, Launcher launcher, BuildListener listener) throws InterruptedException, IOException {
return super.perform(build, launcher, listener);
}
代码示例来源:origin: org.jenkins-ci.plugins/python-wrapper
public boolean superPerform(Build<?, ?> build, Launcher launcher, BuildListener listener) throws InterruptedException, IOException {
return super.perform(build, launcher, listener);
}
代码示例来源:origin: org.jenkins-ci.plugins/python-wrapper
@Override
public boolean perform(Build<?, ?> build, Launcher launcher, BuildListener listener) throws InterruptedException, IOException {
initPython();
if (pexec.isImplemented(7)) {
return pexec.execPythonBool("perform", build, launcher, listener);
} else {
return super.perform(build, launcher, listener);
}
}
代码示例来源:origin: org.jenkins-ci.plugins/python-wrapper
@Override
public boolean perform(AbstractBuild<?, ?> build, Launcher launcher, BuildListener listener) throws InterruptedException, IOException {
initPython();
if (pexec.isImplemented(4)) {
return pexec.execPythonBool("perform", build, launcher, listener);
} else {
return super.perform(build, launcher, listener);
}
}
代码示例来源:origin: org.jenkins-ci.plugins/ivy
if (!builder.perform(IvyBuild.this, launcher, listener))
r = FAILURE;
} finally {
代码示例来源:origin: org.jvnet.hudson.plugins/ivy
if (!builder.perform(IvyBuild.this, launcher, listener))
r = FAILURE;
} finally {
代码示例来源:origin: org.hudsonci.plugins/ivy
if (!builder.perform(IvyBuild.this, launcher, listener))
r = FAILURE;
} finally {
代码示例来源:origin: org.jvnet.hudson.plugins/ivy
logger.println("Building project with " + ivyBuilderType.getDescriptor().getDisplayName());
if (builder.perform(IvyModuleSetBuild.this, launcher, listener))
return Result.SUCCESS;
代码示例来源:origin: org.hudsonci.plugins/ivy
logger.println("Building project with " + ivyBuilderType.getDescriptor().getDisplayName());
if (builder.perform(IvyModuleSetBuild.this, launcher, listener))
return Result.SUCCESS;
代码示例来源:origin: org.jenkins-ci.plugins/ivy
logger.println("Building project with " + ivyBuilderType.getDescriptor().getDisplayName());
if (builder.perform(IvyModuleSetBuild.this, launcher, listener))
return Result.SUCCESS;
内容来源于网络,如有侵权,请联系作者删除!