Home
last modified time | relevance | path

Searched refs:client_type (Results 1 – 17 of 17) sorted by relevance

/external/grpc-grpc/tools/run_tests/performance/
Dscenario_config.py112 client_type, argument
140 'client_type': client_type,
244 client_type='ASYNC_CLIENT',
258 client_type='ASYNC_CLIENT',
272 client_type='ASYNC_CLIENT',
293 client_type='ASYNC_CLIENT',
303 client_type='ASYNC_CLIENT',
316 client_type='ASYNC_CLIENT',
330 client_type='ASYNC_CLIENT',
344 client_type='ASYNC_CLIENT',
[all …]
/external/tensorflow/tensorflow/compiler/xla/tests/
Dcompute_constant_test.cc55 Client* ClientOrDie(se::Platform* platform, ClientType client_type) { in ClientOrDie() argument
56 if (client_type == ClientType::kLocal) { in ClientOrDie()
62 } else if (client_type == ClientType::kCompileOnly) { in ClientOrDie()
99 for (ClientType client_type : client_types) { in TEST_F() local
100 Client* client = ClientOrDie(platform_, client_type); in TEST_F()
112 for (ClientType client_type : client_types) { in TEST_F() local
113 Client* client = ClientOrDie(platform_, client_type); in TEST_F()
126 for (ClientType client_type : client_types) { in TEST_F() local
127 Client* client = ClientOrDie(platform_, client_type); in TEST_F()
141 for (ClientType client_type : client_types) { in TEST_F() local
[all …]
/external/python/oauth2client/oauth2client/
Dclientsecrets.py87 (client_type, client_info), = clientsecrets_dict.items()
94 if client_type not in VALID_CLIENT:
96 'Unknown client type: {0}.'.format(client_type))
98 for prop_name in VALID_CLIENT[client_type]['required']:
102 prop_name, client_type))
103 for prop_name in VALID_CLIENT[client_type]['string']:
107 return client_type, client_info
170 client_type, client_info = _loadfile(filename)
171 obj = {client_type: client_info}
Dclient.py2104 client_type, client_info = clientsecrets.loadfile(filename,
2106 if client_type in (clientsecrets.TYPE_WEB,
2133 'This OAuth 2.0 flow is unsupported: {0!r}'.format(client_type))
/external/grpc-grpc/test/cpp/qps/
Djson_run_localhost_scenarios.bzl3client_type": "ASYNC_CLIENT", "payload_config": {"simple_params": {"resp_size": 50, "req_size": 30…
Dqps_json_driver_scenarios.bzl3client_type": "SYNC_CLIENT", "payload_config": {"simple_params": {"resp_size": 0, "req_size": 0}},…
Dqps_worker.cc52 ClientType_Name(config.client_type()).c_str(), in CreateClient()
56 switch (config.client_type()) { in CreateClient()
/external/python/oauth2client/tests/
Dtest_clientsecrets.py153 client_type, client_info = clientsecrets._loadfile(VALID_FILE)
162 self.assertEqual(client_type, clientsecrets.TYPE_WEB)
248 client_type, client_info = clientsecrets.loadfile(
250 self.assertEqual('web', client_type)
254 self.assertEqual({client_type: client_info}, cached)
265 client_type, client_info = clientsecrets.loadfile(
267 self.assertEqual('web', client_type)
278 client_type, client_info = clientsecrets.loadfile(VALID_FILE)
279 self.assertEqual('web', client_type)
Dtest_client.py76 client_type, client_info = clientsecrets._loadfile(datafile(existing_file))
77 cache_mock.cache[fakename] = {client_type: client_info}
2079 client_type = clientsecrets.TYPE_WEB
2088 loadfile_mock.return_value = client_type, client_info
2157 client_type = 'UNKNOWN'
2158 loadfile_mock.return_value = client_type, None
2163 '{0!r}'.format(client_type))
/external/python/oauth2client/oauth2client/contrib/django_util/
D__init__.py252 client_type, client_info = clientsecrets.loadfile(filename)
254 if client_type != clientsecrets.TYPE_WEB:
257 'type is supported.'.format(client_type))
/external/grpc-grpc/src/php/tests/qps/generated_code/Grpc/Testing/
DClientConfig.php25 private $client_type = 0; variable in Grpc\\Testing\\ClientConfig
144 return $this->client_type;
155 $this->client_type = $var;
/external/grpc-grpc/src/python/grpcio_tests/tests/qps/
Dworker_server.py146 if config.client_type == control_pb2.SYNC_CLIENT:
153 elif config.client_type == control_pb2.ASYNC_CLIENT:
161 config.client_type))
/external/python/oauth2client/oauth2client/contrib/
Dflask_util.py317 client_type, client_info = clientsecrets.loadfile(filename)
318 if client_type != clientsecrets.TYPE_WEB:
321 client_type))
Dappengine.py869 client_type, client_info = clientsecrets.loadfile(filename,
871 if client_type not in (clientsecrets.TYPE_WEB,
/external/grpc-grpc/src/proto/grpc/testing/
Dcontrol.proto81 ClientType client_type = 2; field
101 // If we use an OTHER_CLIENT client_type, this string gives more detail
153 // If we use an OTHER_SERVER client_type, this string gives more detail
/external/grpc-grpc-java/benchmarks/src/main/proto/grpc/testing/
Dcontrol.proto82 ClientType client_type = 2; field
102 // If we use an OTHER_CLIENT client_type, this string gives more detail
144 // If we use an OTHER_SERVER client_type, this string gives more detail
/external/python/oauth2client/tests/contrib/
Dtest_appengine.py57 client_type, client_info = clientsecrets._loadfile(datafile(existing_file))
58 cache_mock.cache[fakename] = {client_type: client_info}