Home | History | Annotate | Download | only in commands

Lines Matching defs:string

51     private final List<String> args;
52 private final Map<String, String> env;
60 public Command(Log log, String... args) {
77 String string = toString();
78 if (string.length() > builder.maxLength) {
80 + " exceeded by: " + string);
114 public List<String> gatherOutput()
122 List<String> outputLines = new ArrayList<String>();
123 String outputLine;
140 public List<String> execute() {
158 public List<String> executeWithTimeout(int timeoutSeconds) throws TimeoutException {
190 @Override public String toString() {
191 String envString = !env.isEmpty() ? (Strings.join(env.entrySet(), " ") + " ") : "";
244 public List<String> getArgs() {
250 private final List<String> args = new ArrayList<String>();
251 private final Map<String, String> env = new LinkedHashMap<String, String>();
282 public Builder env(String key, String value) {
315 public List<String> execute() {