/external/autotest/contrib/ |
D | task_runner.sh | 61 hostnames='' 63 if [ "$hostnames" ]; then 64 hostnames="$hostnames,$H" 66 hostnames=$H 70 $AT_DIR/cli/atest host delete $hostnames --web $AFE 73 $AT_DIR/cli/atest host create $hostnames --web $AFE 74 $AT_DIR/cli/atest label add -m $hostnames $labels --web $AFE
|
/external/autotest/client/tests/barriertest/ |
D | barriertest.py | 12 def run_once(self, our_addr, hostnames, master, timeout=120): argument 18 listen_server=server).rendezvous(*hostnames) 25 ).rendezvous_servers(hostnames[-1], *hostnames[:-1]) 33 ).rendezvous(abort=True, *hostnames) 49 ).rendezvous_servers(master, *hostnames) 57 ).rendezvous_servers(master, *hostnames)
|
/external/autotest/cli/ |
D | host.py | 215 hostnames=self.hosts, 1167 def _remove_invalid_hostnames(self, hostnames, log_failure=False): argument 1176 for hostname in hostnames: 1184 hostnames = list(set(hostnames) - invalid_hostnames) 1186 return hostnames 1191 hostnames = self._remove_invalid_hostnames(self.hosts, log_failure=True) 1195 if hostnames: 1198 filters['hostname__in'] = hostnames 1203 for h in hostnames] 1229 hostnames = [h['hostname'] for h in results] [all …]
|
/external/autotest/site_utils/deployment/ |
D | cmdvalidate.py | 265 if arguments.hostnames and arguments.hostname_file: 275 if (not arguments.hostnames and not arguments.hostname_file and 403 hostnames = [] 413 hostnames.append(h) 414 if not hostnames: 419 return hostnames 444 arguments.hostnames = _read_hostnames(input) 541 arguments.hostnames = [host_info.hostname
|
D | install.py | 651 def _report_results(afe, report_log, hostnames, results): argument 668 for result, hostname in zip(results, hostnames): 674 afe.repair_hosts(hostnames=successful_hosts) 675 for h in afe.get_hosts(hostnames=successful_hosts): 885 install_pool = multiprocessing.Pool(len(arguments.hostnames)) 888 results_list = install_pool.map(install_function, arguments.hostnames) 889 _report_results(afe, report_log, arguments.hostnames, results_list)
|
/external/autotest/server/ |
D | profilers.py | 176 hostnames = [host_info[0].hostname for host_info in hosts] 181 control_script = standalone_profiler.generate_test(hostnames, 199 standalone_profiler.wait_for_profilers(hostnames) 216 hostnames = [host_info[0].hostname for host_info in hosts] 218 standalone_profiler.start_profilers(hostnames) 231 hostnames = [host_info[0].hostname for host_info in hosts] 233 standalone_profiler.stop_profilers(hostnames) 246 hostnames = [host_info[0].hostname for host_info in hosts] 248 standalone_profiler.finish_profilers(hostnames)
|
D | frontend.py | 473 def _dict_for_host_query(hostnames=(), status=None, label=None): argument 475 if hostnames: 476 query_args['hostname__in'] = hostnames 484 def get_hosts(self, hostnames=(), status=None, label=None, **dargs): argument 486 query_args.update(self._dict_for_host_query(hostnames=hostnames, 501 def reverify_hosts(self, hostnames=(), status=None, label=None): argument 504 query_args.update(self._dict_for_host_query(hostnames=hostnames, 510 def repair_hosts(self, hostnames=(), status=None, label=None): argument 513 query_args.update(self._dict_for_host_query(hostnames=hostnames, 608 hostnames = [s.host.hostname for s in job_statuses if s.host] [all …]
|
/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/utils/ |
D | reverify_repair_failed.py | 27 hostnames = afe_client.reverify_hosts(status='Repair Failed', 31 if hostnames: 34 print ' '.join(hostnames)
|
/external/autotest/site_utils/ |
D | add_detected_host_labels.py | 128 hostnames = [m.strip() for m in options.machines.split(',')] 130 hostnames = afe.get_hostnames() 133 hostnames)) 134 attempts = len(hostnames)
|
D | test_push.py | 152 AFE.reverify_hosts(hostnames=[hostname]) 159 AFE.reverify_hosts(hostnames=hosts) 314 hostnames = set([hqe.host.hostname for hqe in hqes]) 315 for hostname in hostnames:
|
/external/tensorflow/tensorflow/core/profiler/rpc/client/ |
D | capture_profile.cc | 127 const std::vector<tensorflow::string>& hostnames, in NewSession() argument 135 for (const auto& hostname : hostnames) { in NewSession() 158 << str_util::Join(hostnames, ",") << std::endl; in NewSession() 196 std::vector<tensorflow::string> hostnames = in StartTracing() local 208 if (hostnames.empty()) { in StartTracing() 213 status = NewSession(tpu_master, hostnames, duration_ms, repository_root, in StartTracing()
|
/external/autotest/server/cros/dynamic_suite/ |
D | fakes.py | 38 def __init__(self, id=0, statuses=[], hostnames=[], parent_job_id=None): argument 40 self.hostnames = hostnames if hostnames else ['host%d' % id]
|
D | tools.py | 143 hostnames = [host.hostname for host in host_list] 144 updated_hosts = afe.get_hosts(hostnames=hostnames)
|
/external/autotest/server/cros/ap_configurators/ |
D | ap_configurator_factory.py | 131 def get_aps_by_hostnames(self, hostnames, ap_list=None): argument 145 if ap.host_name in hostnames: 275 if spec.hostnames is None: 285 if spec.hostnames is not None: 286 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/scheduler/ |
D | agent_task_unittest.py | 46 task.hostnames = {1: self.HOST_IN_RESTRICTED_SUBNET} 63 task.hostnames = {1: self.HOST_NOT_IN_RESTRICTED_SUBNET} 76 task.hostnames = {1: self.HOST_NOT_IN_RESTRICTED_SUBNET,
|
D | agent_task.py | 163 self.hostnames = {} 171 self.hostnames = {} 176 self.hostnames[entry.host.id] = entry.host.hostname 188 self.hostnames = {host.id: host.hostname} 385 if (self.hostnames and restricted_subnets and enable_drone_in_subnet): 386 for hostname in self.hostnames.values():
|
/external/autotest/server/site_tests/network_WiFi_ChaosConnectDisconnect/ |
D | control.jetstream | 23 ap_specs = [ap_spec.APSpec(channel=5, hostnames=jetstream_ap, 25 ap_spec.APSpec(channel=48, hostnames=jetstream_ap,
|
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)]
|
/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_CliqueConnectDisconnect/ |
D | control.debug | 26 hostnames=debug_aps), 29 hostnames=debug_aps)]
|
/external/autotest/server/site_tests/network_WiFi_CliqueLongConnect/ |
D | control.debug | 26 hostnames=debug_aps), 29 hostnames=debug_aps)]
|
/external/autotest/venv/lucifer/ |
D | jobx.py | 35 return not hostnames(job) 38 def hostnames(job): function
|