OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:host_spec_list
(Results
1 - 2
of
2
) sorted by null
/external/autotest/server/cros/dynamic_suite/
tools_unittest.py
35
host_spec_list
= [HostSpec([self._BOARD, self._POOL])]
37
host_spec_list
.append(
39
self.specs = host_spec.order_by_complexity(
host_spec_list
)
host_spec.py
7
def order_by_complexity(
host_spec_list
):
14
@param
host_spec_list
: a list of HostSpec objects.
19
return sorted(
host_spec_list
, key=extract_label_list_len, reverse=True)
22
def is_simple_list(
host_spec_list
):
28
@param
host_spec_list
: a list of HostSpec objects.
31
return len(
host_spec_list
) == 1
Completed in 497 milliseconds