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

  /external/autotest/scheduler/
host_scheduler.py 97 * suite_host_num, records how many duts a suite is holding,
120 self.suite_host_num, self.hosts_to_suites = (
138 num_hosts = self.suite_host_num.get(parent_id, 0)
139 self.suite_host_num[parent_id] = num_hosts + 1
143 self.suite_host_num[parent_id])
154 count = self.suite_host_num[parent_job_id] - 1
156 del self.suite_host_num[parent_job_id]
158 self.suite_host_num[parent_job_id] = count
181 cur_duts = self.suite_host_num.get(parent_id, 0)
query_managers.py 187 @return: Two dictionaries (suite_host_num, hosts_to_suites)
188 suite_host_num maps suite job id to number of hosts
196 suite_host_num = {}
201 count = suite_host_num.get(parent_job_id, 0)
202 suite_host_num[parent_job_id] = count + 1
204 return suite_host_num, hosts_to_suites
host_scheduler_unittests.py 300 self.assertEqual(r.suite_host_num,
309 def verify_state(self, recorder, suite_host_num, hosts_to_suites):
313 @param suite_host_num: a dict, expected value of suite_host_num.
316 self.assertEqual(recorder.suite_host_num, suite_host_num)

Completed in 76 milliseconds