/external/autotest/client/tests/barriertest/ |
D | barriertest.py | 12 def run_once(self, our_addr, hostnames, main, timeout=120): argument 18 listen_server=server).rendezvous(*hostnames) 25 ).rendezvous_servers(hostnames[-1], *hostnames[:-1]) 33 ).rendezvous(abort=True, *hostnames) 49 ).rendezvous_servers(main, *hostnames) 57 ).rendezvous_servers(main, *hostnames)
|
/external/conscrypt/testing/src/main/java/org/conscrypt/tlswire/handshake/ |
D | ServerNameHelloExtension.java | 30 public List<String> hostnames; field in ServerNameHelloExtension 37 hostnames = new ArrayList<String>(); in parseData() 45 hostnames.add(hostname); in parseData() 50 return "HelloExtension{type: server_name, hostnames: " + hostnames + "}"; in toString()
|
/external/conscrypt/repackaged/testing/src/main/java/com/android/org/conscrypt/tlswire/handshake/ |
D | ServerNameHelloExtension.java | 32 public List<String> hostnames; field in ServerNameHelloExtension 39 hostnames = new ArrayList<String>(); in parseData() 47 hostnames.add(hostname); in parseData() 52 return "HelloExtension{type: server_name, hostnames: " + hostnames + "}"; in toString()
|
/external/autotest/site_utils/deployment/ |
D | cmdvalidate.py | 270 if arguments.hostnames and arguments.hostname_file: 280 if (not arguments.hostnames and not arguments.hostname_file and 408 hostnames = [] 418 hostnames.append(h) 419 if not hostnames: 424 return hostnames 449 arguments.hostnames = _read_hostnames(input) 548 arguments.hostnames = [host_info.hostname
|
D | install.py | 614 def _report_results(afe, report_log, hostnames, results, arguments): argument 632 for result, hostname in zip(results, hostnames): 638 afe.repair_hosts(hostnames=successful_hosts) 639 for h in afe.get_hosts(hostnames=successful_hosts): 860 install_pool = multiprocessing.Pool(len(arguments.hostnames)) 863 results_list = install_pool.map(install_function, arguments.hostnames) 864 _report_results(afe, report_log, arguments.hostnames, results_list,
|
/external/autotest/server/ |
D | profilers.py | 177 hostnames = [host_info[0].hostname for host_info in hosts] 182 control_script = standalone_profiler.generate_test(hostnames, 200 standalone_profiler.wait_for_profilers(hostnames) 217 hostnames = [host_info[0].hostname for host_info in hosts] 219 standalone_profiler.start_profilers(hostnames) 232 hostnames = [host_info[0].hostname for host_info in hosts] 234 standalone_profiler.stop_profilers(hostnames) 247 hostnames = [host_info[0].hostname for host_info in hosts] 249 standalone_profiler.finish_profilers(hostnames)
|
D | frontend.py | 478 def _dict_for_host_query(hostnames=(), status=None, label=None): argument 480 if hostnames: 481 query_args['hostname__in'] = hostnames 489 def get_hosts(self, hostnames=(), status=None, label=None, **dargs): argument 491 query_args.update(self._dict_for_host_query(hostnames=hostnames, 506 def reverify_hosts(self, hostnames=(), status=None, label=None): argument 509 query_args.update(self._dict_for_host_query(hostnames=hostnames, 515 def repair_hosts(self, hostnames=(), status=None, label=None): argument 518 query_args.update(self._dict_for_host_query(hostnames=hostnames, 613 hostnames = [s.host.hostname for s in job_statuses if s.host] [all …]
|
/external/autotest/utils/ |
D | reverify_repair_failed.py | 27 hostnames = afe_client.reverify_hosts(status='Repair Failed', 31 if hostnames: 34 print ' '.join(hostnames)
|
/external/autotest/contrib/ |
D | repair_hosts_throttled.py | 31 hostnames = input.readlines() 32 remaining = len(hostnames) 36 for hostname in hostnames:
|
D | reverify_hosts | 28 frontend.AFE().reverify_hosts(hostnames=sys.argv[1:])
|
D | repair_hosts | 28 frontend.AFE().repair_hosts(hostnames=sys.argv[1:])
|
D | manage_powerunit_info.py | 164 if options.action == 'list' and not options.hostnames: 185 list_powerunit_info(afe, [h.strip() for h in options.hostnames.split(',')])
|
/external/autotest/site_utils/ |
D | add_detected_host_labels.py | 132 hostnames = [m.strip() for m in options.machines.split(',')] 134 hostnames = afe.get_hostnames() 137 hostnames)) 138 attempts = len(hostnames)
|
D | test_push.py | 156 AFE.reverify_hosts(hostnames=[hostname]) 163 AFE.reverify_hosts(hostnames=hosts) 318 hostnames = set([hqe.host.hostname for hqe in hqes]) 319 for hostname in hostnames:
|
/external/autotest/server/cros/dynamic_suite/ |
D | fakes.py | 43 def __init__(self, id=0, statuses=[], hostnames=[], parent_job_id=None): argument 45 self.hostnames = hostnames if hostnames else ['host%d' % id]
|
D | tools.py | 147 hostnames = [host.hostname for host in host_list] 148 updated_hosts = afe.get_hosts(hostnames=hostnames)
|
/external/autotest/server/cros/ap_configurators/ |
D | ap_configurator_factory.py | 120 def get_aps_by_hostnames(self, hostnames, ap_list=None): argument 134 if ap.host_name in hostnames: 184 if spec.hostnames is not None: 185 matching_aps = self.get_aps_by_hostnames(spec.hostnames,
|
D | ap_spec.py | 139 band=None, mode=None, channel=None, hostnames=None, argument 149 self._hostnames = hostnames 236 def hostnames(self): member in APSpec
|
/external/autotest/server/site_tests/network_WiFi_ChaosConnectDisconnect/ |
D | control.debug | 23 ap_specs = [ap_spec.APSpec(band=ap_spec.BAND_2GHZ, hostnames=debug_aps), 24 ap_spec.APSpec(band=ap_spec.BAND_5GHZ, hostnames=debug_aps)]
|
D | control.jetstream | 23 ap_specs = [ap_spec.APSpec(channel=5, hostnames=jetstream_ap, 25 ap_spec.APSpec(channel=48, hostnames=jetstream_ap,
|
/external/autotest/server/site_tests/network_WiFi_CliqueConnectDisconnect/ |
D | control.debug | 26 hostnames=debug_aps), 29 hostnames=debug_aps)]
|
/external/autotest/server/lib/ |
D | suite_report.py | 216 hostnames = {h.host.hostname for h in hqes if h.host} 218 len(hostnames)) 234 for hostname in sorted(hostnames)]
|
/external/autotest/server/site_tests/network_WiFi_CliqueLongConnect/ |
D | control.debug | 26 hostnames=debug_aps), 29 hostnames=debug_aps)]
|
/external/tensorflow/tensorflow/core/profiler/convert/ |
D | xplane_to_op_stats.cc | 104 for (const auto& hostname : space.hostnames()) { in SetRunEnvironment() 217 details.set_hostname(space.hostnames().empty() ? "localhost" in ConvertXSpaceToOpStats() 218 : space.hostnames(0)); in ConvertXSpaceToOpStats()
|
/external/autotest/server/site_tests/network_WiFi_ChaosLongConnect/ |
D | control.debug | 32 hostnames=debug_aps), 35 hostnames=debug_aps)]
|