Home
last modified time | relevance | path

Searched refs:max_workers (Results 1 – 2 of 2) sorted by relevance

/scripts/lib/abi/
A Dsystem_symbols.py251 def check_undefined_symbols(self, max_workers=None, chunk_size=50, argument
290 if not max_workers:
291 max_workers = os.cpu_count()
292 elif max_workers > os.cpu_count():
293 max_workers = os.cpu_count()
295 max_workers = max(max_workers, 1)
297 max_chunk_size = int((num_refs + max_workers - 1) / max_workers)
301 if max_workers > 1:
320 with executor(max_workers=max_workers) as exe:
/scripts/
A Dget_abi.py178 max_workers=args.jobs,

Completed in 3 milliseconds