HomeSort by relevance Sort by last modified time
    Searched defs:upload (Results 1 - 25 of 45) sorted by null

1 2

  /external/catch2/scripts/
updateWandbox.py 9 def upload(options): function
32 response = upload({
  /external/skia/tools/skqp/
upload_model 16 upload() { function
47 MD5=$(upload "$FILENAME")
56 upload "$FILES" > files.checksum
  /external/skqp/tools/skqp/
upload_model 16 upload() { function
47 MD5=$(upload "$FILENAME")
56 upload "$FILES" > files.checksum
  /external/python/dateutil/
release.py 50 def upload(passfile, release): function
73 args = ['twine', 'upload', '-r', repository] + dist_files
  /external/python/setuptools/setuptools/command/
upload.py 2 from distutils.command import upload as orig
5 class upload(orig.upload): class in inherits:orig.upload
7 Override default upload behavior to obtain password
12 orig.upload.finalize_options(self)
  /external/walt/server/
main.py 49 @route('/upload', method='POST')
50 def upload(): function
  /external/owasp/sanitizer/tools/
googlecode_upload.py 12 # To upload a file to Google Code, you need to provide a path to the
21 # Note that the upload script requests that you enter your
33 # the upload() function, which is the meat of the uploader. You
59 def upload(file, project_name, user_name, password, summary, labels=None): function
60 """Upload a file to a Google Code project's file server.
72 http_status: 201 if the upload succeeded, something else if an
75 file_url: If the upload succeeded, the URL of the file on Google
114 the file to upload. The file will be uploaded to Google Code with
124 # Add the metadata about the upload first
143 # The upload server determines the mime-type, no need to set it
    [all...]
  /external/skia/infra/bots/assets/
assets.py 45 def upload(args): function
46 """Upload a new version of the asset."""
75 'upload', help='Upload a new version of an asset.')
76 prs_upload.set_defaults(func=upload)
asset_utils_test.py 63 def upload(self, name, version, target_dir, extra_tags=None): member in class:_LocalStore
91 # Upload a version, download it again.
92 store.upload(self.asset_name, 0, input_dir)
105 store.upload(self.asset_name, 0, input_dir)
107 store.upload(self.asset_name, 1, input_dir)
209 # Upload a version, download it again.
  /external/skqp/infra/bots/assets/
assets.py 45 def upload(args): function
46 """Upload a new version of the asset."""
75 'upload', help='Upload a new version of an asset.')
76 prs_upload.set_defaults(func=upload)
asset_utils_test.py 63 def upload(self, name, version, target_dir, extra_tags=None): member in class:_LocalStore
91 # Upload a version, download it again.
92 store.upload(self.asset_name, 0, input_dir)
105 store.upload(self.asset_name, 0, input_dir)
107 store.upload(self.asset_name, 1, input_dir)
209 # Upload a version, download it again.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
upload.py 1 """distutils.command.upload
3 Implements the Distutils 'upload' subcommand (upload package to PyPI)."""
18 class upload(PyPIRCCommand): class in inherits:PyPIRCCommand
20 description = "upload binary package to PyPI"
24 'sign files to upload using gpg'),
193 self.announce('Upload failed (%s): %s' % (status, reason),
  /external/python/cpython2/Lib/distutils/command/
upload.py 1 """distutils.command.upload
3 Implements the Distutils 'upload' subcommand (upload package to PyPI)."""
18 class upload(PyPIRCCommand): class in inherits:PyPIRCCommand
20 description = "upload binary package to PyPI"
24 'sign files to upload using gpg'),
58 msg = ("Must create and upload files in one command "
59 "(e.g. setup.py sdist upload)")
192 msg = 'Upload failed (%s): %s' % (status, reason)
  /external/python/cpython3/Lib/distutils/command/
upload.py 2 distutils.command.upload
4 Implements the Distutils 'upload' subcommand (upload package to a package
20 class upload(PyPIRCCommand): class in inherits:PyPIRCCommand
22 description = "upload binary package to PyPI"
26 'sign files to upload using gpg'),
60 msg = ("Must create and upload files in one command "
61 "(e.g. setup.py sdist upload)")
198 msg = 'Upload failed (%s): %s' % (status, reason)
  /external/autotest/client/site_tests/firmware_TouchMTB/
cros_gs.py 73 def upload(self, data, bucket_dir=''): member in class:CrosGs
74 """Upload the data to the chosen bucket."""
  /external/catch2/.conan/
build.py 25 def upload(self): member in class:BuilderSettings
26 """ Set Catch2 repository to be used on upload.
27 The upload server address could be customized by env var
31 not match the stable pattern. Otherwise it will upload to stable
38 """ Force to upload when running over tag branch
44 """ Only upload the package the branch name is like a tag
87 upload=settings.upload,
  /external/curl/docs/examples/
ftpuploadfrommem.c 23 * FTP upload a file from memory
48 struct WriteThis *upload = (struct WriteThis *)userp; local
54 if(upload->sizeleft) {
56 if(copylen > upload->sizeleft)
57 copylen = upload->sizeleft;
58 memcpy(ptr, upload->readptr, copylen);
59 upload->readptr += copylen;
60 upload->sizeleft -= copylen;
72 struct WriteThis upload; local
74 upload.readptr = data
    [all...]
ftpuploadresume.c 23 * Upload to FTP, resuming failed transfers.
53 /* read data to upload */
68 static int upload(CURL *curlhandle, const char *remotepath, function
154 upload(curlhandle, "ftp://user:pass@example.com/path/file", "C:\\file",
  /external/curl/tests/libtest/
lib591.c 44 FILE *upload = NULL; local
48 upload = fopen(libtest_arg3, "rb");
49 if(!upload) {
58 fclose(upload);
74 easy_setopt(easy, CURLOPT_READDATA, upload);
142 fclose(upload);
  /external/autotest/client/cros/power/
power_dashboard.py 65 """Base class that implements method for prepare and upload data to power
79 uploadurl: url to upload power data
186 """Convert powerlog dict to minimal size JSON and upload to dashboard.
190 uploadurl: url to upload the power data
271 def upload(self): member in class:BaseDashboard
272 """Upload powerlog to dashboard and save data to results directory.
300 uploadurl: url to upload power data
  /external/autotest/site_utils/
perf_csv_uploader.py 8 This module is used to upload csv files generated by performance related tests
16 3. Locate the csv files in GS, and upload them to desired cns location.
40 # This allows gs_offloader to have enough time to upload the results to GS.
46 # Timeout in minutes for upload attempts for a given folder.
55 uploaded, and logic to upload the csv files.
62 # A class variable whose value is the cns path to upload the csv files to.
119 def upload(self): member in class:CsvFolder
120 """Upload the folder to cns.
251 folder.upload()
257 logging.error('Failed to upload folder %s, error: %s'
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_upload_mgr.c 44 unsigned default_size; /* Minimum size of the upload buffer, in bytes. */
51 struct pipe_resource *buffer; /* Upload buffer. */
52 struct pipe_transfer *transfer; /* Transfer object for the upload buffer. */
53 uint8_t *map; /* Pointer to the mapped upload buffer. */
54 unsigned offset; /* Aligned offset to the upload buffer, pointing
63 struct u_upload_mgr *upload = CALLOC_STRUCT(u_upload_mgr); local
64 if (!upload)
67 upload->pipe = pipe;
68 upload->default_size = default_size;
69 upload->bind = bind
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/nv30/
nv30_fragprog.c 71 bool upload = false; local
79 upload = true;
96 upload = true;
100 if (upload)
107 if (nv30->state.fragprog != fp || upload) {
  /external/mesa3d/src/gallium/state_trackers/nine/
nine_buffer_upload.c 50 unsigned free_offset; /* Aligned offset to the upload buffer, pointing
73 nine_upload_create_buffer_group(struct nine_buffer_upload *upload,
77 struct pipe_screen *screen = upload->pipe->screen;
78 DBG("%p %p\n", upload, group);
85 resource.width0 = upload->buffers_size;
97 group->map = pipe_buffer_map_range(upload->pipe, group->resource,
98 0, upload->buffers_size,
113 nine_upload_destroy_buffer_group(struct nine_buffer_upload *upload,
116 DBG("%p %p\n", upload, group);
120 pipe_transfer_unmap(upload->pipe, group->transfer)
131 struct nine_buffer_upload *upload; local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/draw/
vktDrawImageObjectUtil.cpp 462 upload(queue, allocator, layout, offset, access.getWidth(),
484 upload(queue, allocator, layout, offset, access.getWidth(),
506 upload(queue, allocator, layout, offset, access.getWidth(),
529 void Image::upload (vk::VkQueue queue, function in class:vkt::Image

Completed in 1303 milliseconds

1 2