/external/grpc-grpc/tools/run_tests/performance/ |
D | scenario_config.py | 112 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/ |
D | compute_constant_test.cc | 55 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/ |
D | clientsecrets.py | 87 (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}
|
D | client.py | 2104 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/ |
D | json_run_localhost_scenarios.bzl | 3 …client_type": "ASYNC_CLIENT", "payload_config": {"simple_params": {"resp_size": 50, "req_size": 30…
|
D | qps_json_driver_scenarios.bzl | 3 …client_type": "SYNC_CLIENT", "payload_config": {"simple_params": {"resp_size": 0, "req_size": 0}},…
|
D | qps_worker.cc | 52 ClientType_Name(config.client_type()).c_str(), in CreateClient() 56 switch (config.client_type()) { in CreateClient()
|
/external/python/oauth2client/tests/ |
D | test_clientsecrets.py | 153 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)
|
D | test_client.py | 76 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__.py | 252 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/ |
D | ClientConfig.php | 25 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/ |
D | worker_server.py | 146 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/ |
D | flask_util.py | 317 client_type, client_info = clientsecrets.loadfile(filename) 318 if client_type != clientsecrets.TYPE_WEB: 321 client_type))
|
D | appengine.py | 869 client_type, client_info = clientsecrets.loadfile(filename, 871 if client_type not in (clientsecrets.TYPE_WEB,
|
/external/grpc-grpc/src/proto/grpc/testing/ |
D | control.proto | 81 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/ |
D | control.proto | 82 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/ |
D | test_appengine.py | 57 client_type, client_info = clientsecrets._loadfile(datafile(existing_file)) 58 cache_mock.cache[fakename] = {client_type: client_info}
|