hudson.tasks.Builder.perform()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(2.6k)|赞(0)|评价(0)|浏览(132)

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

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;

相关文章