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

1 2

  /external/chromium-trace/catapult/third_party/gsutil/gslib/
command_runner.py 139 command_map[command.command_spec.command_name] = command
140 for command_name_aliases in command.command_spec.command_name_aliases:
188 command.command_spec.command_name, add_help=False)
189 if isinstance(command.command_spec.argparse_arguments, dict):
191 subcommand_argument_dict = command.command_spec.argparse_arguments
199 command_parser, command.command_spec.argparse_arguments, gsutil_api)
command.py 288 # Each subclass of Command must define a property named 'command_spec' that is
323 command_spec = None variable in class:Command
361 return self.command_spec.command_name
370 return self.command_spec.urls_start_arg
437 if self.command_spec is None:
439 'command_spec definition.' % self.command_name)
447 self.command_spec = self.command_spec._replace(
450 if (len(self.args) < self.command_spec.min_args
451 or len(self.args) > self.command_spec.max_args)
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/commands/
mv.py 99 command_spec = Command.CreateCommandSpec( variable in class:MvCommand
notification.py 146 command_spec = Command.CreateCommandSpec( variable in class:NotificationCommand
242 self.args, self.command_spec.supported_sub_args)
cat.py 88 command_spec = Command.CreateCommandSpec( variable in class:CatCommand
mb.py 136 command_spec = Command.CreateCommandSpec( variable in class:MbCommand
rb.py 58 command_spec = Command.CreateCommandSpec( variable in class:RbCommand
stat.py 88 command_spec = Command.CreateCommandSpec( variable in class:StatCommand
version.py 58 command_spec = Command.CreateCommandSpec( variable in class:VersionCommand
compose.py 76 command_spec = Command.CreateCommandSpec( variable in class:ComposeCommand
cors.py 96 command_spec = Command.CreateCommandSpec( variable in class:CorsCommand
hash.py 70 command_spec = Command.CreateCommandSpec( variable in class:HashCommand
lifecycle.py 97 command_spec = Command.CreateCommandSpec( variable in class:LifecycleCommand
versioning.py 69 command_spec = Command.CreateCommandSpec( variable in class:VersioningCommand
web.py 137 command_spec = Command.CreateCommandSpec( variable in class:WebCommand
defacl.py 153 command_spec = Command.CreateCommandSpec( variable in class:DefAclCommand
du.py 115 command_spec = Command.CreateCommandSpec( variable in class:DuCommand
help.py 83 command_spec = Command.CreateCommandSpec( variable in class:HelpCommand
logging.py 124 command_spec = Command.CreateCommandSpec( variable in class:LoggingCommand
rm.py 172 command_spec = Command.CreateCommandSpec( variable in class:RmCommand
signurl.py 193 command_spec = Command.CreateCommandSpec( variable in class:UrlSignCommand
update.py 97 command_spec = Command.CreateCommandSpec( variable in class:UpdateCommand
acl.py 282 command_spec = Command.CreateCommandSpec( variable in class:AclCommand
ls.py 227 command_spec = Command.CreateCommandSpec( variable in class:LsCommand
  /external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
test_command_runner.py 77 command_spec = Command.CreateCommandSpec( variable in class:FakeCommandWithInvalidCompleter
100 command_spec = Command.CreateCommandSpec( variable in class:FakeCommandWithCompleters
299 FakeCommandWithInvalidCompleter.command_spec.command_name:
319 FakeCommandWithCompleters.command_spec.command_name:

Completed in 337 milliseconds

1 2