OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:locked_hosts
(Results
1 - 4
of
4
) sorted by null
/external/autotest/server/cros/
host_lock_manager_unittest.py
58
Add hosts to self.
locked_hosts
for LOCK and remove hosts from
59
self.
locked_hosts
for UNLOCK.
67
self.
locked_hosts
= self.
locked_hosts
.union(hosts)
69
self.
locked_hosts
= self.
locked_hosts
.difference(hosts)
125
"""Tests host locking, all hosts not in self.
locked_hosts
."""
128
manager.
locked_hosts
= set([self.HOST1])
130
self.assertEquals(set([self.HOST1, self.HOST2]), manager.
locked_hosts
)
134
"""Tests host locking, some hosts not in self.
locked_hosts
.""
[
all
...]
host_lock_manager.py
41
def
locked_hosts
(self):
member in class:HostLockManager
46
@
locked_hosts
.setter
47
def
locked_hosts
(self, hosts):
member in class:HostLockManager
48
"""Sets value of
locked_hosts
.
/external/autotest/server/cros/dynamic_suite/
job_status.py
244
locked_hosts
= set()
248
while
locked_hosts
!= expected_hosts:
252
return
locked_hosts
258
if set(hostnames) -
locked_hosts
!= set():
262
locked_hosts
=
locked_hosts
.union(hostnames)
274
logging.debug('Locked hosts: %r',
locked_hosts
)
278
return
locked_hosts
/external/autotest/cli/contrib/
why_isnt_my_job_running.py
151
locked_hosts
= [h for h in atomic_hosts if h['locked']]
variable
152
for host in
locked_hosts
:
Completed in 189 milliseconds