Examples of PBSJob


Examples of jenkins.plugins.pbs.model.PBSJob

    }
    PBSSlaveComputer pbsSlaveComputer = (PBSSlaveComputer) computer;
   
    TraceJob traceJob = new TraceJob(jobId, numberOfDays);
   
    PBSJob pbsJob = null;
    try {
      pbsJob = pbsSlaveComputer.getChannel().call(traceJob);
     
      request.setAttribute("output", pbsJob.getOut());
      request.setAttribute("error", pbsJob.getErr());
      request.getView(this, "index.jelly").forward(request, response);
    } catch (InterruptedException e) {
      e.printStackTrace();
    } catch (Throwable e) {
      e.printStackTrace();
View Full Code Here

Examples of jenkins.plugins.pbs.model.PBSJob

    return numberOfDays;
  }
 
  public PBSJob call() throws Throwable {
    final CommandOutput commandOutput = PBS.traceJob(jobId, this.numberOfDays);
    return new PBSJob(jobId, commandOutput.getOutput(), commandOutput.getError());
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.