Examples of GEJobDescription


Examples of it.infn.ct.GridEngine.JobResubmission.GEJobDescription

              _log.info("Requirement["+i+"]='"+jdlRequirements[i]+"'");
            }
        } // for each jobRequirement

        // Prepare the GridEngine job description
        GEJobDescription jobDesc = new GEJobDescription();
        jobDesc.setExecutable (   executable); // Specify the executeable
        jobDesc.setArguments  (    arguments); // Specify the application' arguments
        jobDesc.setOutputPath (   outputPath); // Specify the output directory
        jobDesc.setOutput     (   outputFile); // Specify the std-output file
        jobDesc.setError      (    errorFile); // Specify the std-error file
        jobDesc.setOutputFiles(outputSandbox); // Setup output files (OutputSandbox) (*)
        jobDesc.setInputFiles ( inputSandbox); // Setut input files (InputSandbox)

        // GridEngine' MultiInfrastructure job submission object
        MultiInfrastructureJobSubmission miJobSubmission=null;

        //
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.