HomeSort by relevance Sort by last modified time
    Searched refs:gsutil (Results 1 - 25 of 48) sorted by null

1 2

  /external/chromium-trace/catapult/third_party/gsutil/
gsutil 19 import gsutil namespace
22 gsutil.RunMain()
  /external/chromium-trace/catapult/third_party/gsutil/gslib/addlhelp/
creds.py 23 gsutil currently supports several types of credentials/authentication, as
24 well as the ability to access public data anonymously (see "gsutil help anon"
27 credentials via either the Cloud SDK or standalone installations of gsutil.
30 <B>Configuring/Using Credentials via Cloud SDK Distribution of gsutil</B>
31 When gsutil is installed/used via the Cloud SDK ("gcloud"), credentials are
43 environment variable). However, gsutil will still look for credentials in the
48 <B>Configuring/Using Credentials via Standalone gsutil Distribution</B>
49 If you installed a standalone distribution of gsutil (downloaded from
50 https://pub.storage.googleapis.com/gsutil.tar.gz,
51 https://pub.storage.googleapis.com/gsutil.zip, or PyPi), credentials ar
    [all...]
security.py 23 This help section provides details about various precautions taken by gsutil
29 gsutil performs all operations using transport-layer encryption (HTTPS), to
31 because gsutil uses "bearer tokens" for authentication (OAuth2) as well as for
35 gsutil also supports the older HMAC style of authentication via the XML API
36 (see "gsutil help apis"). While HMAC authentication does not use bearer
40 Prior to gsutil release 4.0 it was possible to use HTTP instead of HTTPS by
42 boto configuration file to False. However, starting with gsutil version 4.0
44 credential options, see "gsutil help creds".
48 gsutil takes a number of precautions to protect against security exploits in
51 - When the gsutil config command runs it sets file protection mode 60
    [all...]
acls.py 26 If not specified at the time an object is uploaded (e.g., via the gsutil cp
28 bucket (see "gsutil help defacl"). You can replace the ACL on an object
29 or bucket using the "gsutil acl set" command, or
30 modify the existing ACL using the "gsutil acl ch" command (see "gsutil help
83 "gsutil help projects".
98 such objects. For help doing this, see 'gsutil help setmeta'.
104 the "acl ch" command to make these changes; see "gsutil help acl ch" for
117 the "acl ch" command to make these changes; see "gsutil help acl ch" for
137 the "gsutil acl get" command you can retrieve the ACL JSON, and edit it t
    [all...]
anon.py 23 gsutil users can access publicly readable data without obtaining
28 gsutil ls gs://uspto-pair/applications/0800401*
30 Users can similarly download objects they find via the above gsutil ls
33 If a user without credentials attempts to access protected data using gsutil,
34 they will be prompted to run "gsutil config" to obtain credentials.
36 See "gsutil help acls" for more details about data protection.
crc32c.py 26 integrity, but for composite objects only the CRC is available. gsutil
28 Additionally, you can use the "gsutil hash" command to calculate a CRC for
33 of CRC32C used by gsutil is provided by a third-party Python module called
38 crcmod, which requires compiling into a binary module for use. gsutil ships
42 At the end of each copy operation, the gsutil cp and rsync commands validate
44 destination file/object. If the checksums do not match, gsutil will delete
51 environment, you can inspect the output of the gsutil version command for the
54 $ gsutil version -l
62 To control gsutil's behavior in response to crcmod's status, you can set the
64 surrounding comments in your gsutil configuration file. If check_hashes is no
    [all...]
metadata.py 33 objects, using the gsutil -h option. For example, the following command
34 would cause gsutil to set the Content-Type and Cache-Control for each
37 gsutil -h "Content-Type:text/html" \\
41 Note that -h is an option on the gsutil command, not the cp sub-command.
44 the gsutil setmeta command. See "gsutil help setmeta".
52 gsutil sets the Content-Type automatically at upload time, based on each
54 will set Content-Type to text/plain. If you're running gsutil on Linux or
56 examination, see the use_magicfile configuration variable in the gsutil/boto
57 configuration file (See also "gsutil help config"). In general, usin
    [all...]
retries.py 21 There are a number of reasons that gsutil operations can fail; some are not
29 codes. For these cases, gsutil will retry using a truncated binary exponential
39 Thus, by default, gsutil will retry 6 times over 1+2+4+8+16+32=63 seconds.
45 For data transfers (the gsutil cp and rsync commands), gsutil provides
49 about this, see the "RESUMABLE TRANSFERS" section of "gsutil help cp".
support.py 47 - If you can use gsutil to reproduce your issue, specify the -D option to
51 Warning: The gsutil -d, -D, and -DD options will also print the authentication
58 If you make any local modifications to gsutil, please make sure to use
59 a released copy of gsutil (instead of your locally modified copy) when
60 providing the gsutil -D output noted above. We cannot support versions
61 of gsutil that include local modifications. (However, we're open to user
62 contributions; see "gsutil help dev".)
versions.py 45 To work with object versioning in gsutil, you can use a flavor of storage URIs
64 gsutil versioning set on gs://bucket
66 will enable versioning for the named bucket. See 'gsutil help versioning'
70 their generation.metageneration information, use gsutil ls -a:
72 gsutil ls -a gs://bucket
77 gsutil ls -a gs://bucket/object1 gs://bucket/images/*.jpg
81 always the last one listed in the gsutil ls output for a particular object.
91 If you specify version-less URIs with gsutil, you will operate on the
94 gsutil cp gs://bucket/object ./dir
98 gsutil rm gs://bucket/objec
    [all...]
prod.py 15 """Additional help about using gsutil for production tasks."""
23 If you use gsutil in large production tasks (such as uploading or
26 how to script large production tasks around gsutil's resumable transfer
31 First, it's helpful to understand gsutil's resumable transfer mechanism,
33 reliably. gsutil uses resumable transfer support when you attempt to upload
36 an intermittent network problem), gsutil uses a truncated randomized binary
38 to 23 times over a 10 minute period of time (see "gsutil help retries" for
40 progress, gsutil gives up on the transfer, but keeps a "tracker" file for
41 it in a configurable location (the default location is ~/.gsutil/, in a file
44 fail in this fashion, you can rerun gsutil at some later time (e.g., afte
    [all...]
command_opts.py 15 """Additional help about gsutil command-level options."""
23 Top-level gsutil Options
27 gsutil supports separate options for the top-level gsutil command and
29 control behavior of gsutil that apply across commands. For example, in
32 gsutil -m cp -p file gs://bucket/obj
34 the -m option applies to gsutil, while the -p option applies to the cp
47 gsutil -h "Cache-Control:public,max-age=3600" \\
72 if it was not specified. See 'gsutil help apis' for more
73 information on gsutil's interaction with APIs
    [all...]
projects.py 72 You can edit the bucket ACL if you want to (see "gsutil help acl"),
80 project ID that you want to create or list (using the gsutil mb -p option or
81 the gsutil ls -p option, respectively). The project's name shown in the
83 not the project ID required by the gsutil mb and ls commands. To find the
subdirs.py 15 """Additional help about subdirectory handling in gsutil."""
23 This section provides details about how subdirectories work in gsutil.
26 additional documentation to help users understand how gsutil handles
29 performance implications of the gsutil approach, for those interested in such
32 gsutil provides the illusion of a hierarchical file tree atop the "flat"
37 https://cloud.google.com/storage/images/gsutil-subdirectories-thumb.png
38 illustrates how gsutil provides a hierarchical view of objects in a bucket.
40 gsutil achieves the hierarchical file tree illusion by applying a variety of
43 root of a directory under which objects should be copied gsutil uses these
46 1. If the destination object ends with a "/" gsutil treats it as a directory
    [all...]
wildcards.py 23 gsutil supports URI wildcards. For example, the command:
25 gsutil cp gs://bucket/data/abc* .
36 (gs://bucket/data/abc/def) the above gsutil cp command would match the
41 gsutil cp gs://bucket/data/abc** .
45 Note that gsutil supports the same wildcards for both objects and file names.
48 gsutil cp data/abc* gs://bucket
52 is expanding the matches before running gsutil. However, most shells do not
53 support recursive wildcards ('**'), and you can cause gsutil's wildcarding
55 don't get interpreted by the shell before being passed to gsutil:
57 gsutil cp 'data/abc**' gs://bucke
    [all...]
  /external/skia/bin/
fetch-skps 21 gsutil -m cp -r gs://chromium-skia-gm/playback_$VERSION/skps .
  /external/autotest/contrib/
show_offload_failures 30 gsutil ls -R "$GSURI/$DIR/*" | sed "s=^$GSURI/==p"
  /external/autotest/site_utils/
check_hung_proc.py 10 This script gets the number of processes for "gsutil" and "autoserv"
48 for p in ('gsutil', 'autoserv'):
  /device/google/dragon-kernel/
push-kernel.sh 46 latest=$(gsutil.py cat ${gsbase}/${build}/LATEST-master)
58 gsutil.py cat ${gspath}/stripped-packages.tar | bsdtar -s '/.*kernel.*tbz2/kernel.tbz2/' -x -f - '*kernel*'
65 newrev=$(gsutil.py cat ${gspath}/manifest.xml | grep "path=\"${kernel_path}\"" | sed -e 's/.*revision="\([0123456789abcdef]\+\).*/\1/')
  /external/autotest/site_utils/autoupdate/
full_release_test_test.py 106 mox.StrContains('gsutil cat'),
112 mox.StrContains('gsutil cat'),
139 mox.StrContains('gsutil cat'),
145 mox.StrContains('gsutil cat'),
173 mox.StrContains('gsutil cat'),
179 mox.StrContains('gsutil cat'),
206 mox.StrContains('gsutil cat'),
212 mox.StrContains('gsutil cat'),
228 mox.StrContains('gsutil cat'),
235 mox.StrContains('gsutil cat')
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/commands/
mb.py 32 gsutil mb [-c class] [-l location] [-p proj_id] uri...
44 space corresponding to your company's domain name (see "gsutil help naming").
47 will be created using the default project ID specified in your gsutil
48 configuration file (see "gsutil help config"). For more details about
49 projects see "gsutil help projects".
97 gsutil mb -l ASIA gs://some-bucket
112 gsutil mb -c DRA -l US-CENTRAL1 gs://some-bucket
133 """Implementation of gsutil mb command."""
web.py 33 gsutil web set [-m main_page_suffix] [-e error_page] bucket_url...
37 gsutil web get bucket_url
44 The "gsutil web set" command will allow you to configure or disable
61 The "gsutil web get" command will gets the web semantics configuration for
86 section of "gsutil help naming" for details about creating such buckets).
92 gsutil web set -m index.html -e 404.html gs://www.example.com
106 via the CNAME alias, you can continue to use "gsutil ls" to list the bucket
134 """Implementation of gsutil web command."""
229 'See "gsutil help web".') %
cp.py 47 gsutil cp [OPTION]... src_url dst_url
48 gsutil cp [OPTION]... src_url... dst_url
49 gsutil cp [OPTION]... -I dst_url
58 The gsutil cp command allows you to copy data between your local file
63 gsutil cp *.txt gs://my_bucket
67 gsutil cp gs://my_bucket/*.txt .
71 gsutil cp -r dir gs://my_bucket
74 gsutil -m option, to perform a parallel (multi-threaded/multi-processing)
77 gsutil -m cp -r dir gs://my_bucket
80 command line arguments by using the -I option. This allows you to use gsutil
    [all...]
  /external/autotest/site_utils/admin/
autotest.init 15 # Setup PATH so Autotest can run gsutil and cros_sdk for stack trace generation.
16 PATH_EXTRAS=$PATH:/usr/local/google/gsutil:/usr/local/google/depot_tools
  /external/skia/platform_tools/chromeos/bin/
chromeos_make 40 #SDK_VERSION=$(gsutil cat gs://chromeos-image-archive/${deviceID}-release/LATEST-master)
51 gsutil cp gs://chromium-skia-gm/chromeos-toolchains/${TARBALL} ${CHROMEOS_CHROOT}

Completed in 233 milliseconds

1 2