Lines Matching refs:jobs
150 Get the number of jobs to be used for docs build passed via command
153 The number of jobs can be on different places:
157 3) if called via GNU make, -j specifies the desired number of jobs.
166 # and desired number of parallel jobs.
169 parser.add_argument('-j', '--jobs', type=int)
198 elif sphinx_args.jobs:
199 self.n_jobs = sphinx_args.jobs
298 many jobs are still available from a job pool. claim all remaining
299 jobs, as we don't want sphinx-build to run in parallel with other
300 jobs.
303 the number of available jobs via command line.
305 The "with" logic here is used to ensure that the claimed jobs will
312 # when GNU make is used, claim available jobs from jobserver
395 jobs = {}
408 jobs[future] = (from_dir, pdf_dir, name)
410 for future in futures.as_completed(jobs):
411 from_dir, pdf_dir, name = jobs[future]
493 # When using make, this won't be used, as the number of jobs comes
496 # the user explicitly sets the number of jobs.
508 # When using make, jobserver.claim is the number of jobs that were
820 raise argparse.ArgumentTypeError(f"Minimum jobs is 1, got {value}")
874 parser.add_argument('-j', '--jobs', type=jobs_type,
875 help="Sets number of jobs to use with sphinx-build(default: auto)")
893 verbose=args.verbose, n_jobs=args.jobs,