Home | History | Annotate | Download | only in examples

Lines Matching refs:TIMEOUT

220             refresh (hive, target_hostnames, timeout=0.5)
234 resync (hive, target_hostnames, timeout=0.5)
249 resync (hive, target_hostnames, timeout=0.5)
284 hive[hostname].prompt(timeout=2)
359 hive[hostname].prompt(timeout=2)
370 def refresh (hive, hive_names, timeout=0.5):
372 """This waits for the TIMEOUT on each host.
377 hive[hostname].expect([pexpect.TIMEOUT,pexpect.EOF],timeout=timeout)
379 def resync (hive, hive_names, timeout=2, max_attempts=5):
382 them all to the same state. The timeout is set low so that hosts that are
387 timeout for each machine. So for 10 machines with a 2 second delay you will
393 if not hive[hostname].prompt(timeout=timeout):