Changes between Version 41 and Version 42 of RemoteJobs
- Timestamp:
- Apr 21, 2014, 11:35:44 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
RemoteJobs
v41 v42 74 74 The following example submits a 10-job batch: 75 75 {{{ 76 $req = new StdClass; 76 77 $req->project = "http://foo.bar.edu/test/"; 77 78 $req->authenticator = "xxx"; … … 79 80 $req->jobs = array(); 80 81 82 $f = new StdClass; 81 83 $f->mode = "local_staged"; 82 84 $f->source = "filename.dat"; … … 84 86 85 87 for ($i=10; $i<20; $i++) { 88 $job = new StdClass; 86 89 $job->rsc_fpops_est = $i*1e9; 87 90 $job->command_line = "--t $i";