HomeSort by relevance Sort by last modified time
    Searched refs:hostnames (Results 1 - 25 of 43) sorted by null

1 2

  /external/conscrypt/testing/src/main/java/libcore/tlswire/handshake/
ServerNameHelloExtension.java 30 public List<String> hostnames; field in class:ServerNameHelloExtension
37 hostnames = new ArrayList<String>();
45 hostnames.add(hostname);
50 return "HelloExtension{type: server_name, hostnames: " + hostnames + "}";
  /libcore/support/src/test/java/libcore/tlswire/handshake/
ServerNameHelloExtension.java 32 public List<String> hostnames; field in class:ServerNameHelloExtension
40 hostnames = new ArrayList<String>();
48 hostnames.add(hostname);
54 return "HelloExtension{type: server_name, hostnames: " + hostnames + "}";
  /external/autotest/contrib/
repair_hosts 24 # with hostnames=[], the call takes longer than I was willing to
28 frontend.AFE().repair_hosts(hostnames=sys.argv[1:])
reverify_hosts 24 # with hostnames=[], the call takes longer than I was willing to
28 frontend.AFE().reverify_hosts(hostnames=sys.argv[1:])
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
manage_powerunit_info.py 116 @param devices: a list of device hostnames.
144 parser.add_argument('-m', type=str, dest='hostnames', default='',
145 help='A list of machine hostnames seperated by comma, '
164 if options.action == 'list' and not options.hostnames:
165 logging.error('Please specify hostnames with -m')
185 list_powerunit_info(afe, [h.strip() for h in options.hostnames.split(',')])
find_suite_tasks.py 82 hostnames = {h.host.hostname for h in hqes if h.host}
84 for hostname in hostnames:
  /external/autotest/venv/lucifer/
jobx.py 24 return bool(hostnames(job))
27 def hostnames(job): function
28 """Return a list of hostnames for a job.
  /external/autotest/client/tests/barriertest/
barriertest.py 12 def run_once(self, our_addr, hostnames, master, timeout=120):
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/utils/
reverify_repair_failed.py 27 hostnames = afe_client.reverify_hosts(status='Repair Failed',
30 # A more recent one returns a list of hostnames to make this message useful.
31 if hostnames:
34 print ' '.join(hostnames)
  /external/chromium-libpac/test/js-unittest/
international_domain_names.js 1 // Try resolving hostnames containing non-ASCII characters.
  /external/autotest/server/
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)
frontend.py 512 def _dict_for_host_query(hostnames=(), status=None, label=None):
514 if hostnames:
515 query_args['hostname__in'] = hostnames
523 def get_hosts(self, hostnames=(), status=None, label=None, **dargs):
525 query_args.update(self._dict_for_host_query(hostnames=hostnames,
533 """Like get_hosts() but returns hostnames instead of Host objects."""
540 def reverify_hosts(self, hostnames=(), status=None, label=None):
543 query_args.update(self._dict_for_host_query(hostnames=hostnames,
    [all...]
  /external/autotest/scheduler/
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,
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/cros/dynamic_suite/
fakes.py 39 def __init__(self, id=0, statuses=[], hostnames=[], parent_job_id=None):
41 self.hostnames = hostnames if hostnames else ['host%d' % id]
tools.py 143 hostnames = [host.hostname for host in host_list]
144 updated_hosts = afe.get_hosts(hostnames=hostnames)
  /external/autotest/server/cros/network/
rf_switch_utils.py 48 rf_switch = afe.get_hosts(hostnames=(rf_switch_host.hostname,))
  /external/autotest/server/cros/ap_configurators/
ap_configurator_factory.py 25 @attribute HOSTNAMES: a string, AP hostname.
247 HOSTNAMES = 'hostnames'
335 def get_aps_by_hostnames(self, hostnames, ap_list=None):
338 @param hostnames: a list of strings, AP's wan_hostname defined in the AP
349 if ap.host_name in hostnames:
441 # Add hostnames to chamber_aps list
477 # If APs hostnames are provided, assume the tester knows the location
479 if spec.hostnames is None:
489 if spec.hostnames is not None
    [all...]
ap_spec.py 139 band=None, mode=None, channel=None, hostnames=None,
149 self._hostnames = hostnames
234 def hostnames(self): member in class:APSpec
235 """Return the hostnames; this may be None."""
ap_configurator_factory_unittest.py 203 spec = ap_spec.APSpec(hostnames=['chromeos3-row2-rack1-host1'])
207 spec = ap_spec.APSpec(hostnames=['chromeos3-row2-rack1-host1',
  /external/okhttp/samples/crawler/src/main/java/com/squareup/okhttp/sample/
Crawler.java 46 private final ConcurrentHashMap<String, AtomicInteger> hostnames = new ConcurrentHashMap<>(); field in class:Crawler
85 AtomicInteger previous = hostnames.putIfAbsent(url.host(), hostnameCount);
  /external/autotest/site_utils/deployment/
commandline.py 14 * (required) Hostnames of the DUTs to be deployed.
19 The interactive dialog is invoked if the board and hostnames
266 # If both hostnames and hostname_file are specified, complain about that.
267 if arguments.hostnames and arguments.hostname_file:
269 'DUT hostnames and hostname file both specified, only '
277 if (not arguments.hostnames and not arguments.hostname_file and
280 'DUT hostnames are required with board or build.\n')
371 hostnames = []
381 hostnames.append(h)
382 if not hostnames
    [all...]
install.py 504 @param host_attr_dict Dict mapping hostnames to attributes to be
559 def _report_results(afe, report_log, hostnames, results):
568 @param hostnames List of the hostnames that were tested.
570 as the hostnames. `None` means the
576 for result, hostname in zip(results, hostnames):
582 afe.reverify_hosts(hostnames=successful_hosts)
583 for h in afe.get_hosts(hostnames=successful_hosts):
783 install_pool = multiprocessing.Pool(len(arguments.hostnames))
786 results_list = install_pool.map(install_function, arguments.hostnames)
    [all...]
  /external/autotest/server/lib/
suite_report.py 201 hostnames = {h.host.hostname for h in hqes if h.host}
203 len(hostnames))
211 for hostname in sorted(hostnames)]

Completed in 197 milliseconds

1 2