HomeSort by relevance Sort by last modified time
    Searched refs:min_duts (Results 1 - 3 of 3) sorted by null

  /external/autotest/scheduler/
rdb_utils.py 58 """A helper class that count requests and manages min_duts requirement.
63 It will also generates a mapping from suite_job_id -> min_duts.
66 to get min_duts for each suite. The second round attemps to satisfy
147 min_duts = self.min_duts_map.get(parent_id, 0)
148 to_acquire = min(count, min_duts)
149 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 163 each suite. It is determined by two factors: min_duts specified
175 min_duts = suite_min_duts.get(parent_id, 0)
177 suite_min_duts[parent_id] = max(0, min_duts - cur_duts)
178 logging.debug('Minimum duts to get for suites (suite_id: min_duts): %s',
374 and get min_duts requirement for each suite.
375 It pipes min_duts for each suite to rdb.

Completed in 95 milliseconds