/external/chromium-trace/catapult/third_party/gsutil/gslib/commands/ |
lifecycle.py | 15 """Implementation of lifecycle configuration command for GCS buckets.""" 21 from gslib.command import Command 46 redirected into a file, edited and then updated via the set sub-command. 53 specified on the command line should be a path to a local file containing 59 The lifecycle command can be used to get or set lifecycle management policies 60 for the given bucket(s). This command is supported for buckets only, not 64 The lifecycle command has two sub-commands: 93 class LifecycleCommand(Command): 94 """Implementation of gsutil lifecycle command."" [all...] |
logging.py | 15 """Implementation of logging configuration command for buckets.""" 23 from gslib.command import Command 46 The set sub-command has two sub-commands: 49 The "gsutil set on" command will enable access logging of the 55 is the bucket name. For example, the command: 65 the log bucket, using this command: 74 This command will disable access logging of the buckets named by the 79 run this command. 93 You can download log data from your log bucket using the gsutil cp command [all...] |
mb.py | 15 """Implementation of mb command for creating cloud storage buckets.""" 22 from gslib.command import Command 41 The mb command creates a new bucket. Google Cloud Storage has a single 132 class MbCommand(Command): 133 """Implementation of gsutil mb command.""" 135 # Command specification. See base class for documentation. 136 command_spec = Command.CreateCommandSpec( 153 help_spec = Command.HelpSpec( 166 """Command entry point for the mb command."" [all...] |
mv.py | 15 """Implementation of Unix-like mv command for cloud storage providers.""" 19 from gslib.command import Command 40 The gsutil mv command allows you to move data between your local file 54 You can use the gsutil mv command to rename subdirectories. For example, 55 the command: 77 Unlike the case with many file systems, the gsutil mv command does not 83 All options that are available for the gsutil cp command are also available 84 for the gsutil mv command (except for the -R flag, which is implied by the 85 gsutil mv command). Please see the OPTIONS sections of "gsutil help cp [all...] |
notification.py | 15 """This module provides the notification command to gsutil.""" 23 from gslib.command import Command 24 from gslib.command import NO_MAX 44 The watchbucket sub-command can be used to watch a bucket for object changes. 45 A service account must be used when running this command. 65 The stopchannel sub-command can be used to stop sending change events to a 74 The notification command can be used to configure notifications. 78 The notification command has two sub-commands: 142 class NotificationCommand(Command) [all...] |
rb.py | 15 """Implementation of rb command for deleting cloud storage buckets.""" 20 from gslib.command import Command 38 The rb command deletes a bucket. Buckets must be empty before you can delete 54 class RbCommand(Command): 55 """Implementation of gsutil rb command.""" 57 # Command specification. See base class for documentation. 58 command_spec = Command.CreateCommandSpec( 76 help_spec = Command.HelpSpec( 87 """Command entry point for the rb command."" [all...] |
stat.py | 15 """Implementation of Unix-like stat command for cloud storage providers.""" 25 from gslib.command import Command 46 The stat command will output details about the specified object URLs. 54 command provides a strongly consistent way to check for the existence (and 57 The gsutil stat command will, however, perform bucket listings if you specify 67 Note: Unlike the gsutil ls command, the stat command does not support 68 operations on sub-directories. For example, if you run the command: 76 stat command on objects within subdirectories. For example, this command wil [all...] |
version.py | 15 """Implementation of gsutil version command.""" 28 from gslib.command import Command 54 class VersionCommand(Command): 55 """Implementation of gsutil version command.""" 57 # Command specification. See base class for documentation. 58 command_spec = Command.CreateCommandSpec( 70 help_spec = Command.HelpSpec( 80 """Command entry point for the version command."" [all...] |
versioning.py | 15 """Implementation of versioning configuration command for buckets.""" 19 from gslib.command import Command 40 The "set" sub-command requires an additional sub-command, either "on" or 48 The "get" sub-command gets the versioning configuration for a 56 The gsutil versioning command has two sub-commands: 65 class VersioningCommand(Command): 66 """Implementation of gsutil versioning command.""" 68 # Command specification. See base class for documentation [all...] |
web.py | 15 """Implementation of website configuration command for buckets.""" 23 from gslib.command import Command 44 The "gsutil web set" command will allow you to configure or disable 45 Website Configuration on your bucket(s). The "set" sub-command has the 61 The "gsutil web get" command will gets the web semantics configuration for 90 3. Configure the bucket to have website behavior using the command: 124 The web command has two sub-commands: 133 class WebCommand(Command): 134 """Implementation of gsutil web command."" [all...] |
/external/llvm/utils/lit/lit/ |
ShUtil.py | 5 from lit.ShCommands import Command, Pipeline, Seq 191 raise ValueError("empty command!") 204 # If this is an argument, just add it to the current command. 221 return Command(args, redirects) 291 Pipeline([Command(['echo', 'hello'], [])], False)) 293 Pipeline([Command(['echo', ''], [])], False)) 295 Pipeline([Command(['echo', '-DFOO=a'], [])], False)) 297 Pipeline([Command(['echo', '-DFOO=a'], [])], False)) 301 Pipeline([Command(['echo', 'hello'], 304 Pipeline([Command(['echo', 'hello'], [(('>',), 'c') [all...] |
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/command/ |
CommandTest.java | 16 package org.mockftpserver.core.command;
27 * Tests for the Command class
37 * Test the Command(String,String[]) constructor
41 Command command = new Command("abc", PARAMETERS);
local 42 assertEquals("name", "abc", command.getName());
43 assertEquals("parameters", PARAMETERS, command.getParameters());
47 * Test the Command(String,List) constructor
52 Command command = new Command("abc", PARAMETERS_LIST); local 96 Command command = new Command("abc", array("123", "456")); local 105 Command command = new Command("abc", array("123", "456")); local 119 Command command = new Command("abc", array("123", "456")); local 129 Command command = new Command("abc", array("123", "456")); local [all...] |
/external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/ |
CommandTest.java | 16 package org.mockftpserver.stub.command;
19 import org.mockftpserver.core.command.Command;
24 * Tests for the Command class
39 Command command = new Command("abc", PARAMETERS);
local 40 assertEquals("name", "abc", command.getName());
41 assertEquals("parameters", PARAMETERS, command.getParameters());
49 new Command(null, EMPTY); 83 Command command = new Command("abc", array("123", "456")); local 92 Command command = new Command("abc", array("123", "456")); local 106 Command command = new Command("abc", array("123", "456")); local [all...] |
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/ |
Dicttool.java | 32 public static abstract class Command { 70 static HashMap<String, Class<? extends Command>> sCommands = new HashMap<>(); 76 public static void addCommand(final String commandName, final Class<? extends Command> cls) { 80 private static Command getCommandInstance(final String commandName) { 91 System.out.println("Syntax: dicttool <command [arguments]>\nAvailable commands:\n"); 103 private static Command getCommand(final String[] arguments) { 106 throw new RuntimeException("Unknown command : " + commandName); 108 final Command command = getCommandInstance(commandName); local 110 command.setArgs(argsArray) 120 final Command command = getCommand(arguments); local [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/distutils/command/ |
bdist_msi.py | 4 # The bdist_wininst command proper 7 Implements the bdist_msi command. 12 from distutils.core import Command 84 class bdist_msi (Command): 648 # On Windows9x, the ALLUSERS property is ignored on the command line [all...] |
build_py.py | 1 """distutils.command.build_py 3 Implements the Distutils 'build_py' command.""" 11 from distutils.core import Command 16 class build_py(Command): 385 # method of the "install_lib" command, except for the determination
|
config.py | 1 """distutils.command.config 3 Implements the Distutils 'config' command, a (mostly) empty command class 5 applications. The idea is that while every "config" command is different, 17 from distutils.core import Command 24 class config(Command): 51 # The three standard command methods: since the "config" command 170 # info. My inclination is to make it up to the real config command to 283 # when implementing a real-world config command!) [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/distutils/command/ |
bdist_msi.py | 4 # The bdist_wininst command proper 7 Implements the bdist_msi command. 12 from distutils.core import Command 84 class bdist_msi (Command): 648 # On Windows9x, the ALLUSERS property is ignored on the command line [all...] |
build_py.py | 1 """distutils.command.build_py 3 Implements the Distutils 'build_py' command.""" 11 from distutils.core import Command 16 class build_py(Command): 385 # method of the "install_lib" command, except for the determination
|
config.py | 1 """distutils.command.config 3 Implements the Distutils 'config' command, a (mostly) empty command class 5 applications. The idea is that while every "config" command is different, 17 from distutils.core import Command 24 class config(Command): 51 # The three standard command methods: since the "config" command 170 # info. My inclination is to make it up to the real config command to 283 # when implementing a real-world config command!) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/ |
bdist_msi.py | 4 # The bdist_wininst command proper 7 Implements the bdist_msi command. 12 from distutils.core import Command 84 class bdist_msi (Command): 648 # On Windows9x, the ALLUSERS property is ignored on the command line [all...] |
build_py.py | 1 """distutils.command.build_py 3 Implements the Distutils 'build_py' command.""" 11 from distutils.core import Command 16 class build_py(Command): 385 # method of the "install_lib" command, except for the determination
|
config.py | 1 """distutils.command.config 3 Implements the Distutils 'config' command, a (mostly) empty command class 5 applications. The idea is that while every "config" command is different, 17 from distutils.core import Command 24 class config(Command): 51 # The three standard command methods: since the "config" command 170 # info. My inclination is to make it up to the real config command to 283 # when implementing a real-world config command!) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/ |
bdist_msi.py | 4 # The bdist_wininst command proper 7 Implements the bdist_msi command. 12 from distutils.core import Command 84 class bdist_msi (Command): 648 # On Windows9x, the ALLUSERS property is ignored on the command line [all...] |
build_py.py | 1 """distutils.command.build_py 3 Implements the Distutils 'build_py' command.""" 11 from distutils.core import Command 16 class build_py(Command): 385 # method of the "install_lib" command, except for the determination
|