Lines Matching full:concurrency
212 const { concurrency, loc, only, timeout, todo, signal } = options;
227 this.concurrency = 1;
246 this.concurrency = parent.concurrency;
263 switch (typeof concurrency) {
265 validateUint32(concurrency, 'options.concurrency', 1);
266 this.concurrency = concurrency;
270 if (concurrency) {
271 this.concurrency = parent === null ?
274 this.concurrency = 1;
279 if (concurrency != null)
280 throw new ERR_INVALID_ARG_TYPE('options.concurrency', ['boolean', 'number'], concurrency);
362 return this.concurrency > this.activeSubtests;
529 // If there is enough available concurrency to run the test now, then do
667 // tests that were pending due to available concurrency.