Home
last modified time | relevance | path

Searched refs:resumable (Results 1 – 25 of 28) sorted by relevance

12

/external/python/google-api-python-client/googleapiclient/
Dhttp.py298 def resumable(self): member in MediaUpload
415 resumable=False): argument
438 self._resumable = resumable
467 def resumable(self): member in MediaIoBaseUpload
539 resumable=False): argument
564 resumable=resumable)
582 chunksize=d['_chunksize'], resumable=d['_resumable'])
594 chunksize=DEFAULT_CHUNK_SIZE, resumable=False): argument
611 resumable=resumable)
762 resumable=None): argument
[all …]
Ddiscovery.py794 resumable = None
823 if media_upload.resumable():
826 if media_upload.resumable():
829 resumable = media_upload
875 resumable=resumable)
/external/python/google-api-python-client/tests/
Dtest_http.py235 datafile('small.png'), chunksize=500, resumable=True)
238 self.assertEqual(True, upload.resumable())
247 self.assertEqual(True, new_upload.resumable())
254 resumable=True)
258 resumable=True)
261 self.assertTrue(media.resumable())
268 datafile('small.png'), chunksize=500, resumable=True)
277 resumable=media_upload)
288 self.assertEqual(media_upload.to_json(), new_req.resumable.to_json())
299 fd=fd, mimetype='image/png', chunksize=500, resumable=True)
[all …]
Dtest_discovery.py946 media_upload = MediaFileUpload(datafile('small.png'), resumable=True)
951 self.assertEquals(media_upload, request.resumable)
953 self.assertEquals('image/png', request.resumable.mimetype())
980 self.assertEquals(media_upload, request.resumable)
986 self.assertEquals(media_upload, request.resumable)
1006 media_upload = MediaFileUpload(datafile('small.png'), resumable=True)
1008 self.assertEquals(media_upload, request.resumable)
1010 self.assertEquals('image/png', request.resumable.mimetype())
1036 self.assertEquals(media_upload, request.resumable)
1054 media_upload = MediaFileUpload(datafile('small.png'), resumable=True)
[all …]
/external/owasp/sanitizer/src/main/org/owasp/html/
DTagBalancingHtmlStreamEventReceiver.java125 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/
Dmedia.md29 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/oss-fuzz/infra/gcb/
Drequirements.txt14 google-resumable-media==0.3.1
/external/python/google-api-python-client/docs/epy/
Dapi-objects.txt226 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/
Druntests.c1980 static XML_Bool resumable = XML_FALSE; variable
1988 XML_StopParser(g_parser, resumable); in clearing_aborting_character_handler()
2004 resumable = XML_FALSE; in START_TEST()
2025 resumable = XML_TRUE; in START_TEST()
2047 XML_StopParser(g_parser, resumable); in parser_stop_character_handler()
2049 if (! resumable) { in parser_stop_character_handler()
2073 resumable = XML_FALSE; in START_TEST()
2081 resumable = XML_TRUE; in START_TEST()
2089 resumable = XML_TRUE; in START_TEST()
2482 resumable = XML_FALSE; in START_TEST()
[all …]
/external/python/google-api-python-client/
DCHANGELOG217 - Fixed resumable upload failure when receiving a 308 response. (#312)
277 - Fix non-resumable binary uploads in Python 3 (#147)
346 resumable media upload request.
427 * Added media download support, including resumable downloads.
/external/grpc-grpc-java/core/src/test/java/io/grpc/internal/
DSerializingExecutorTest.java54 public void resumable() { in resumable() method in SerializingExecutorTest
/external/expat/lib/
Dexpat.h798 XML_StopParser(XML_Parser parser, XML_Bool resumable);
Dxmlparse.c2040 XML_StopParser(XML_Parser parser, XML_Bool resumable) { in XML_StopParser() argument
2045 if (resumable) { in XML_StopParser()
2055 if (resumable) { in XML_StopParser()
/external/python/cpython3/Modules/expat/
Dexpat.h798 XML_StopParser(XML_Parser parser, XML_Bool resumable);
Dxmlparse.c2038 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/python/cpython2/Modules/expat/
Dexpat.h849 XML_StopParser(XML_Parser parser, XML_Bool resumable);
Dxmlparse.c2130 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/
DCHANGELOG.md297 resumable media upload request.
375 + Added media download support, including resumable downloads.
/external/swiftshader/third_party/marl/docs/
Dscheduler.md108 …Once all resumable fibers have been completed or have become re-blocked, new tasks are taken from …
/external/python/cpython2/Doc/library/
Dwsgiref.rst158 returns an empty string, iteration is ended and is not resumable.
/external/python/cpython3/Doc/library/
Dwsgiref.rst158 returns an empty bytestring, iteration is ended and is not resumable.
/external/python/cpython3/Doc/howto/
Dfunctional.rst444 is what generators provide; they can be thought of as resumable functions.
/external/python/cpython2/Doc/howto/
Dfunctional.rst445 is what generators provide; they can be thought of as resumable functions.
/external/python/cpython2/Doc/whatsnew/
D2.2.rst554 generators provide; they can be thought of as resumable functions.
/external/python/cpython3/Doc/whatsnew/
D2.2.rst554 generators provide; they can be thought of as resumable functions.

12