Home
last modified time | relevance | path

Searched refs:discovery_url (Results 1 – 7 of 7) sorted by relevance

/external/python/apitools/apitools/gen/
Dutil.py315 def _NormalizeDiscoveryUrls(discovery_url): argument
317 if discovery_url.startswith('http'):
318 return [discovery_url]
319 elif '.' not in discovery_url:
321 api_name, _, api_version = discovery_url.partition('.')
330 def FetchDiscoveryDoc(discovery_url, retries=5): argument
332 discovery_urls = _NormalizeDiscoveryUrls(discovery_url)
Dgen_client.py44 if args.discovery_url:
46 return util.FetchDiscoveryDoc(args.discovery_url)
/external/python/apitools/samples/storage_sample/
Dgenerate_clients.sh17 gen_client --discovery_url=storage.v1 --overwrite --outdir=storage --root_package=. client
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.distribute.cluster_resolver.-t-p-u-cluster-resolver.pbtxt12 …ator_name\', \'coordinator_address\', \'credentials\', \'service\', \'discovery_url\'], varargs=No…
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.distribute.cluster_resolver.-t-p-u-cluster-resolver.pbtxt12 …ator_name\', \'coordinator_address\', \'credentials\', \'service\', \'discovery_url\'], varargs=No…
/external/tensorflow/tensorflow/python/distribute/cluster_resolver/
Dtpu_cluster_resolver.py189 discovery_url=None): argument
322 self._discovery_url = self._environmentDiscoveryUrl() or discovery_url
/external/python/google-api-python-client/googleapiclient/
Ddiscovery.py219 for discovery_url in (discoveryServiceUrl, V2_DISCOVERY_URI,):
220 requested_url = uritemplate.expand(discovery_url, params)
225 return build_from_document(content, base=discovery_url, http=http,