OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:suite_host_num
(Results
1 - 3
of
3
) sorted by null
/external/autotest/scheduler/
host_scheduler.py
98
*
suite_host_num
, records how many duts a suite is holding,
121
self.
suite_host_num
, self.hosts_to_suites = (
139
num_hosts = self.
suite_host_num
.get(parent_id, 0)
140
self.
suite_host_num
[parent_id] = num_hosts + 1
144
self.
suite_host_num
[parent_id])
155
count = self.
suite_host_num
[parent_job_id] - 1
157
del self.
suite_host_num
[parent_job_id]
159
self.
suite_host_num
[parent_job_id] = count
182
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 115 milliseconds