Lines Matching refs:args
47 private final List<String> args; field in Command
55 public Command(String... args) { in Command() argument
56 this(Arrays.asList(args)); in Command()
59 public Command(List<String> args) { in Command() argument
60 this.args = new ArrayList<String>(args); in Command()
69 this.args = new ArrayList<String>(builder.args); in Command()
92 .command(args) in start()
140 throw new CommandFailedException(args, outputLines); in gatherOutput()
151 throw new RuntimeException("Failed to execute process: " + args, e); in execute()
153 throw new RuntimeException("Interrupted while executing process: " + args, e); in execute()
173 throw new RuntimeException("Interrupted while executing process: " + args, e); in executeWithTimeout()
222 return envString + Strings.join(args, " "); in toString()
226 private final List<String> args = new ArrayList<String>(); field in Command.Builder
234 public Builder args(Object... objects) { in args() method in Command.Builder
236 args(object.toString()); in args()
246 public Builder args(String... args) { in args() method in Command.Builder
247 return args(Arrays.asList(args)); in args()
250 public Builder args(Collection<String> args) { in args() method in Command.Builder
251 this.args.addAll(args); in args()