/external/python/oauth2client/tests/contrib/ |
D | test_keyring_storage.py | 87 credentials.to_json = to_json = mock.MagicMock( 90 to_json.assert_called_once_with() 150 'my_unit_test', 'me', credentials.to_json()) 154 return_value=credentials.to_json(),
|
D | test_appengine.py | 162 json = credentials.to_json() 348 self.credentials.to_json(), 349 retrieved.credentials.to_json()) 360 self.credentials.to_json()) 362 self.credentials.to_json(), 363 decoded.to_json()) 486 self.assertEqual(credmodel.credentials.to_json(), 487 self.credentials.to_json()) 499 self.assertEqual(credmodel.credentials.to_json(), 500 self.credentials.to_json()) [all …]
|
D | test_flask_util.py | 396 session['google_oauth2_credentials'] = credentials.to_json() 410 credentials.to_json()) 424 credentials.to_json()) 465 session['google_oauth2_credentials'] = credentials.to_json() 490 session['google_oauth2_credentials'] = credentials2.to_json()
|
D | test_dictionary_storage.py | 69 dictionary[key] = credentials.to_json()
|
D | test_gce.py | 59 credentials.to_json()
|
/external/protobuf/conformance/ |
D | conformance_ruby.rb | 73 response.json_payload = test_message.to_json 107 STDERR.puts("conformance_ruby: request=#{request.to_json}, " \ 108 "response=#{response.to_json}\n")
|
/external/tensorflow/tensorflow/contrib/training/python/training/ |
D | hparam_test.py | 393 json_str = hparams.to_json() 402 self.assertEqual('{"aaa": 123}', hparams3.to_json()) 403 self.assertEqual('{\n "aaa": 123\n}', hparams3.to_json(indent=2)) 404 self.assertEqual('{"aaa"=123}', hparams3.to_json(separators=(';', '='))) 409 hparams4.to_json(sort_keys=True))
|
/external/protobuf/ruby/lib/google/protobuf/ |
D | message_exts.rb | 43 def to_json method
|
/external/python/google-api-python-client/docs/epy/ |
D | api-objects.txt | 186 googleapiclient.http.HttpRequest.to_json googleapiclient.http.HttpRequest-class.html#to_json 197 googleapiclient.http.MediaFileUpload.to_json googleapiclient.http.MediaFileUpload-class.html#to_json 209 googleapiclient.http.MediaIoBaseUpload.to_json googleapiclient.http.MediaIoBaseUpload-class.html#to… 224 googleapiclient.http.MediaIoBaseUpload.to_json googleapiclient.http.MediaIoBaseUpload-class.html#to… 236 googleapiclient.http.MediaUpload.to_json googleapiclient.http.MediaUpload-class.html#to_json
|
/external/protobuf/ruby/lib/google/ |
D | protobuf.rb | 64 msg.to_json
|
/external/python/oauth2client/oauth2client/contrib/ |
D | dictionary_storage.py | 60 serialized = credentials.to_json()
|
D | keyring_storage.py | 90 credentials.to_json())
|
D | _appengine_ndb.py | 124 return value.to_json()
|
D | gce.py | 84 def to_json(self): member in AppAssertionCredentials
|
D | appengine.py | 274 cred = cred.to_json() 398 self._cache.set(self._key_name, credentials.to_json()) 415 self._cache.set(self._key_name, credentials.to_json())
|
D | multiprocess_file_storage.py | 179 credential_json = credential.to_json()
|
D | multistore_file.py | 442 raw_cred = json.loads(cred.to_json())
|
/external/python/apitools/apitools/scripts/ |
D | oauth2l.py | 136 return _PrettyJson(json.loads(_AsText(credentials.to_json()))) 138 return _CompactJson(json.loads(_AsText(credentials.to_json())))
|
/external/python/oauth2client/oauth2client/ |
D | file.py | 97 f.write(credentials.to_json())
|
/external/python/oauth2client/tests/ |
D | test_client.py | 84 json = credentials.to_json() 169 def test_to_json(self, to_json): argument 171 self.assertEqual(credentials.to_json(), to_json.return_value) 172 to_json.assert_called_once_with( 793 json = creds.to_json() 803 creds2 = client.GoogleCredentials.from_json(creds1.to_json()) 817 creds2 = client.GoogleCredentials.from_json(creds1.to_json()) 960 original_credentials = self.credentials.to_json() 977 json = self.credentials.to_json() 986 data = json.loads(self.credentials.to_json()) [all …]
|
D | test_jwt.py | 270 json = credentials.to_json()
|
/external/python/google-api-python-client/googleapiclient/ |
D | http.py | 359 def to_json(self): member in MediaUpload 509 def to_json(self): member in MediaIoBaseUpload 564 def to_json(self): member in MediaFileUpload 1026 def to_json(self): member in HttpRequest 1030 d['resumable'] = self.resumable.to_json()
|
/external/python/google-api-python-client/tests/ |
D | test_http.py | 228 json = upload.to_json() 265 json = req.to_json() 274 self.assertEqual(media_upload.to_json(), new_req.resumable.to_json()) 308 json = upload.to_json()
|
/external/protobuf/ruby/tests/ |
D | basic.rb | 856 json = m.to_json 879 assert_equal m.to_json, encoded_msg 882 assert_equal TestMessage.decode_json(m.to_json), decoded_msg
|
/external/tensorflow/tensorflow/python/keras/saving/ |
D | saved_model.py | 130 model_json = model.to_json()
|