OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:min_duts
(Results
1 - 4
of
4
) sorted by null
/external/autotest/scheduler/
rdb_utils.py
64
"""A helper class that count requests and manages
min_duts
requirement.
69
It will also generates a mapping from suite_job_id ->
min_duts
.
72
to get
min_duts
for each suite. The second round attemps to satisfy
154
min_duts
= self.min_duts_map.get(parent_id, 0)
155
to_acquire = min(count,
min_duts
)
156
self.min_duts_map[parent_id] = max(0,
min_duts
- to_acquire)
rdb_lib.py
55
min_duts
= self._suite_min_duts.get(parent_id, 0) if parent_id else 0
62
'suite_min_duts':
min_duts
}
host_scheduler.py
168
each suite. It is determined by two factors:
min_duts
specified
180
min_duts
= suite_min_duts.get(parent_id, 0)
182
suite_min_duts[parent_id] = max(0,
min_duts
- cur_duts)
183
logging.debug('Minimum duts to get for suites (suite_id:
min_duts
): %s',
371
and get
min_duts
requirement for each suite.
372
It pipes
min_duts
for each suite to rdb.
/external/autotest/venv/skylab_staging/
test_push.py
243
def _ensure_duts_ready(swclient, board, pool,
min_duts
, timeout_s):
247
_logger.debug('Checking whether %d DUTs are available',
min_duts
)
249
if num_duts >=
min_duts
:
252
num_duts,
min_duts
,
258
' seconds' % (
min_duts
, board, pool, timeout_s)
Completed in 217 milliseconds