Home | History | Annotate | Download | only in Scripts

Lines Matching refs:job

93 # Magic determination of job size
95 # won't suffer too much if one job finishes much more quickly than another.
97 # the minimum job size to 5.
123 my $job = makeJob(@sources, $jobSize);
124 ($pid, $tmpFile) = forkAndCompileFiles(@{$job}, $options);
146 my @job;
148 @job = splice(@{$files}, -$jobSize);
150 # Compile all the remaining files in this job to avoid having a small job later
151 @job = splice(@{$files});
154 return \@job;