/external/python/google-api-python-client/googleapiclient/ |
D | http.py | 309 def resumable(self): member in MediaUpload 425 def __init__(self, fd, mimetype, chunksize=DEFAULT_CHUNK_SIZE, resumable=False): argument 448 self._resumable = resumable 477 def resumable(self): member in MediaIoBaseUpload 549 self, filename, mimetype=None, chunksize=DEFAULT_CHUNK_SIZE, resumable=False argument 574 fd, mimetype, chunksize=chunksize, resumable=resumable 596 resumable=d["_resumable"], 613 resumable=False, argument 631 fd, mimetype, chunksize=chunksize, resumable=resumable 796 resumable=None, argument [all …]
|
D | discovery.py | 820 resumable = None 849 if media_upload.resumable(): 852 if media_upload.resumable(): 855 resumable = media_upload 903 resumable=resumable,
|
/external/python/google-api-python-client/tests/ |
D | test_http.py | 236 upload = MediaFileUpload(datafile("small.png"), chunksize=500, resumable=True) 239 self.assertEqual(True, upload.resumable()) 248 self.assertEqual(True, new_upload.resumable()) 259 resumable=True, 264 b"abcdef", mimetype="text/plain", chunksize=10, resumable=True 268 self.assertTrue(media.resumable()) 275 datafile("small.png"), chunksize=500, resumable=True 285 resumable=media_upload, 298 self.assertEqual(media_upload.to_json(), new_req.resumable.to_json()) 308 fd=fd, mimetype="image/png", chunksize=500, resumable=True [all …]
|
D | test_discovery.py | 1045 media_upload = MediaFileUpload(datafile("small.png"), resumable=True) 1049 self.assertEquals(media_upload, request.resumable) 1051 self.assertEquals("image/png", request.resumable.mimetype()) 1088 self.assertEquals(media_upload, request.resumable) 1094 self.assertEquals(media_upload, request.resumable) 1113 media_upload = MediaFileUpload(datafile("small.png"), resumable=True) 1115 self.assertEquals(media_upload, request.resumable) 1117 self.assertEquals("image/png", request.resumable.mimetype()) 1154 self.assertEquals(media_upload, request.resumable) 1172 media_upload = MediaFileUpload(datafile("small.png"), resumable=True) [all …]
|
/external/owasp/sanitizer/src/main/org/owasp/html/ |
D | TagBalancingHtmlStreamEventReceiver.java | 125 if (top.resumable) { in prepareForContent() 187 if (unclosed.resumable) { in closeTag() 258 final boolean resumable; field in TagBalancingHtmlStreamEventReceiver.ElementContainmentInfo 273 String elementName, boolean resumable, int types, int contents, in ElementContainmentInfo() argument 277 this.resumable = resumable; in ElementContainmentInfo() 374 String elementName, boolean resumable, int types, int contentTypes) { in defineElement() argument 375 return defineElement(elementName, resumable, types, contentTypes, null); in defineElement() 379 String elementName, boolean resumable, int types, int contentTypes, in defineElement() argument 382 elementName, resumable, types, contentTypes, null, inScopes); in defineElement() 386 String elementName, boolean resumable, int types, int contentTypes, in defineElement() argument [all …]
|
/external/python/google-api-python-client/docs/ |
D | media.md | 29 For large media files, you can use resumable media uploads to send files, which allows files to be … 31 To use resumable media you must use a MediaFileUpload object and flag it as a resumable upload. You… 34 media = MediaFileUpload('pig.png', mimetype='image/png', resumable=True) 47 media = MediaFileUpload('pig.png', mimetype='image/png', chunksize=1048576, resumable=True) 60 The following is a good exception handling pattern for resumable media uploads:
|
/external/python/google-api-python-client/docs/epy/ |
D | api-objects.txt | 226 googleapiclient.http.MediaIoBaseUpload.resumable googleapiclient.http.MediaIoBaseUpload-class.html#… 238 googleapiclient.http.MediaIoBaseUpload.resumable googleapiclient.http.MediaIoBaseUpload-class.html#… 253 googleapiclient.http.MediaIoBaseUpload.resumable googleapiclient.http.MediaIoBaseUpload-class.html#… 264 googleapiclient.http.MediaUpload.resumable googleapiclient.http.MediaUpload-class.html#resumable
|
/external/expat/tests/ |
D | runtests.c | 1972 static XML_Bool resumable = XML_FALSE; variable 1980 XML_StopParser(g_parser, resumable); in clearing_aborting_character_handler() 1996 resumable = XML_FALSE; in START_TEST() 2017 resumable = XML_TRUE; in START_TEST() 2039 XML_StopParser(g_parser, resumable); in parser_stop_character_handler() 2041 if (! resumable) { in parser_stop_character_handler() 2065 resumable = XML_FALSE; in START_TEST() 2073 resumable = XML_TRUE; in START_TEST() 2081 resumable = XML_TRUE; in START_TEST() 2478 resumable = XML_FALSE; in START_TEST() [all …]
|
/external/grpc-grpc-java/core/src/test/java/io/grpc/internal/ |
D | SerializingExecutorTest.java | 54 public void resumable() { in resumable() method in SerializingExecutorTest
|
/external/python/google-api-python-client/ |
D | CHANGELOG | 247 - Fixed resumable upload failure when receiving a 308 response. (#312) 307 - Fix non-resumable binary uploads in Python 3 (#147) 376 resumable media upload request. 457 * Added media download support, including resumable downloads.
|
/external/tensorflow/tensorflow/core/platform/cloud/ |
D | gcs_file_system.h | 106 bool resumable; member
|
D | gcs_file_system.cc | 576 if (session_handle.resumable && !first_attempt) { in SyncImpl() 1124 session_handle->resumable = true; in CreateNewUploadSession()
|
/external/python/cpython3/Modules/expat/ |
D | expat.h | 798 XML_StopParser(XML_Parser parser, XML_Bool resumable);
|
D | xmlparse.c | 2038 XML_StopParser(XML_Parser parser, XML_Bool resumable) { in XML_StopParser() argument 2043 if (resumable) { in XML_StopParser() 2053 if (resumable) { in XML_StopParser()
|
/external/expat/lib/ |
D | expat.h | 800 XML_StopParser(XML_Parser parser, XML_Bool resumable);
|
D | xmlparse.c | 2055 XML_StopParser(XML_Parser parser, XML_Bool resumable) { in XML_StopParser() argument 2060 if (resumable) { in XML_StopParser() 2070 if (resumable) { in XML_StopParser()
|
/external/python/cpython2/Modules/expat/ |
D | expat.h | 849 XML_StopParser(XML_Parser parser, XML_Bool resumable);
|
D | xmlparse.c | 2130 XML_StopParser(XML_Parser parser, XML_Bool resumable) in XML_StopParser() argument 2136 if (resumable) { in XML_StopParser() 2146 if (resumable) { in XML_StopParser()
|
/external/python/oauth2client/ |
D | CHANGELOG.md | 297 resumable media upload request. 375 + Added media download support, including resumable downloads.
|
/external/swiftshader/third_party/marl/docs/ |
D | scheduler.md | 120 …Once all resumable fibers have been completed or have become re-blocked, new tasks are taken from …
|
/external/python/cpython2/Doc/library/ |
D | wsgiref.rst | 158 returns an empty string, iteration is ended and is not resumable.
|
/external/python/cpython3/Doc/library/ |
D | wsgiref.rst | 158 returns an empty bytestring, iteration is ended and is not resumable.
|
/external/python/cpython3/Doc/howto/ |
D | functional.rst | 444 is what generators provide; they can be thought of as resumable functions.
|
/external/python/cpython2/Doc/howto/ |
D | functional.rst | 445 is what generators provide; they can be thought of as resumable functions.
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.2.rst | 554 generators provide; they can be thought of as resumable functions.
|