hudson.model.AbstractProject.setConcurrentBuild()方法的使用及代码示例

x33g5p2x  于2022-01-15 转载在 其他  
字(5.9k)|赞(0)|评价(0)|浏览(75)

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

AbstractProject.setConcurrentBuild介绍

暂无

代码示例

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

void setConcurrentBuild(boolean b) throws IOException {
   setConcurrentBuild(b, true);
}

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

void convertConcurrentBuildProperty() throws IOException {
  if (null == getProperty(CONCURRENT_BUILD_PROPERTY_NAME)) {
    setConcurrentBuild(concurrentBuild);
    concurrentBuild = false;
  }
}

代码示例来源:origin: hudson/hudson-2.x

void convertConcurrentBuildProperty() throws IOException {
  if (null == getProperty(CONCURRENT_BUILD_PROPERTY_NAME)) {
    setConcurrentBuild(concurrentBuild);
    concurrentBuild = false;
  }
}

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

void convertConcurrentBuildProperty() throws IOException {
  if (null == getProperty(CONCURRENT_BUILD_PROPERTY_NAME)) {
    setConcurrentBuild(concurrentBuild, false);
    concurrentBuild = false;
  }
}

代码示例来源:origin: org.eclipse.hudson.main/hudson-core

void convertConcurrentBuildProperty() throws IOException {
  if (null == getProperty(CONCURRENT_BUILD_PROPERTY_NAME)) {
    setConcurrentBuild(concurrentBuild);
    concurrentBuild = false;
  }
}

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

setConcurrentBuild(json.has("concurrentBuild"));

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

@Override
protected void submit(StaplerRequest req, StaplerResponse rsp) throws IOException, ServletException, FormException {
  super.submit(req,rsp);
  makeDisabled(null != req.getParameter("disable"));
  setJDK(req.getParameter("jdk"));
  setQuietPeriod(null != req.getParameter(HAS_QUIET_PERIOD_PROPERTY_NAME)
    ? req.getParameter("quiet_period") : null);
  setScmCheckoutRetryCount(null != req.getParameter(HAS_SCM_CHECKOUT_RETRY_COUNT_PROPERTY_NAME)
    ? req.getParameter("scmCheckoutRetryCount") : null);
  setBlockBuildWhenDownstreamBuilding(null != req.getParameter("blockBuildWhenDownstreamBuilding"));
  setBlockBuildWhenUpstreamBuilding(null != req.getParameter("blockBuildWhenUpstreamBuilding"));
  if (req.getParameter(APPOINTED_NODE_PROPERTY_NAME) != null) {
    // New logic for handling whether this choice came from the dropdown or textfield.
    if (BASIC_KEY.equals(req.getParameter(AFFINITY_CHO0SER_KEY))) {
      setAppointedNode(
        new AppointedNode(Util.fixEmptyAndTrim(req.getParameter(SLAVE_KEY)), false));
    } else {
      setAppointedNode(
        new AppointedNode(Util.fixEmptyAndTrim(req.getParameter(ASSIGNED_LABEL_KEY)), true));
    }
  } else {
    setAppointedNode(null);
  }
  setCleanWorkspaceRequired(null != req.getParameter("cleanWorkspaceRequired"));
  setConcurrentBuild(req.getSubmittedForm().has("concurrentBuild"));
  authToken = BuildAuthorizationToken.create(req);
  setScm(SCMS.parseSCM(req,this));
  buildTriggers(req, req.getSubmittedForm(), Trigger.for_(this));
}

代码示例来源:origin: hudson/hudson-2.x

@Override
protected void submit(StaplerRequest req, StaplerResponse rsp) throws IOException, ServletException, FormException {
  super.submit(req,rsp);
  makeDisabled(null != req.getParameter("disable"));
  setJDK(req.getParameter("jdk"));
  setQuietPeriod(null != req.getParameter(HAS_QUIET_PERIOD_PROPERTY_NAME)
    ? req.getParameter("quiet_period") : null);
  setScmCheckoutRetryCount(null != req.getParameter(HAS_SCM_CHECKOUT_RETRY_COUNT_PROPERTY_NAME)
    ? req.getParameter("scmCheckoutRetryCount") : null);
  setBlockBuildWhenDownstreamBuilding(null != req.getParameter("blockBuildWhenDownstreamBuilding"));
  setBlockBuildWhenUpstreamBuilding(null != req.getParameter("blockBuildWhenUpstreamBuilding"));
  if (req.getParameter(APPOINTED_NODE_PROPERTY_NAME) != null) {
    // New logic for handling whether this choice came from the dropdown or textfield.
    if (BASIC_KEY.equals(req.getParameter(AFFINITY_CHO0SER_KEY))) {
      setAppointedNode(
        new AppointedNode(Util.fixEmptyAndTrim(req.getParameter(SLAVE_KEY)), false));
    } else {
      setAppointedNode(
        new AppointedNode(Util.fixEmptyAndTrim(req.getParameter(ASSIGNED_LABEL_KEY)), true));
    }
  } else {
    setAppointedNode(null);
  }
  setCleanWorkspaceRequired(null != req.getParameter("cleanWorkspaceRequired"));
  setConcurrentBuild(req.getSubmittedForm().has("concurrentBuild"));
  authToken = BuildAuthorizationToken.create(req);
  setScm(SCMS.parseSCM(req,this));
  buildTriggers(req, req.getSubmittedForm(), Trigger.for_(this));
}

代码示例来源:origin: org.eclipse.hudson.main/hudson-core

@Override
protected void submit(StaplerRequest req, StaplerResponse rsp) throws IOException, ServletException, FormException {
  super.submit(req, rsp);
  makeDisabled(null != req.getParameter("disable"));
  setJDK(req.getParameter("jdk"));
  setQuietPeriod(null != req.getParameter(HAS_QUIET_PERIOD_PROPERTY_NAME)
      ? req.getParameter("quiet_period") : null);
  setScmCheckoutRetryCount(null != req.getParameter(HAS_SCM_CHECKOUT_RETRY_COUNT_PROPERTY_NAME)
      ? req.getParameter("scmCheckoutRetryCount") : null);
  setBlockBuildWhenDownstreamBuilding(null != req.getParameter("blockBuildWhenDownstreamBuilding"));
  setBlockBuildWhenUpstreamBuilding(null != req.getParameter("blockBuildWhenUpstreamBuilding"));
  if (req.getParameter(APPOINTED_NODE_PROPERTY_NAME) != null) {
    // New logic for handling whether this choice came from the dropdown or textfield.
    if (BASIC_KEY.equals(req.getParameter(AFFINITY_CHO0SER_KEY))) {
      setAppointedNode(
          new AppointedNode(Util.fixEmptyAndTrim(req.getParameter(SLAVE_KEY)), false));
    } else {
      setAppointedNode(
          new AppointedNode(Util.fixEmptyAndTrim(req.getParameter(ASSIGNED_LABEL_KEY)), true));
    }
  } else {
    setAppointedNode(null);
  }
  setCleanWorkspaceRequired(null != req.getParameter("cleanWorkspaceRequired"));
  setConcurrentBuild(req.getSubmittedForm().has("concurrentBuild"));
  authToken = BuildAuthorizationToken.create(req);
  setScm(SCMS.parseSCM(req, this));
  buildTriggers(req, req.getSubmittedForm(), Trigger.for_(this));
}

相关文章

微信公众号

最新文章

更多

AbstractProject类方法