Searched defs:cmd (Results 1 - 3 of 3) sorted by relevance

/opengrok-jel/src/org/opensolaris/opengrok/util/
H A DExecutor.java54 * @param cmd An array containing the command to execute
56 public Executor(String[] cmd) { argument
57 this(Arrays.asList(cmd));
/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DRepository.java54 protected String cmd; field in class:Repository
316 * repository's <var>cmd</var> has already been set (i.e. has a
322 * @see #cmd
325 if (cmd != null) {
326 return cmd;
328 cmd = RuntimeEnvironment.getConfig()
330 if (cmd == null) {
331 cmd = System.getProperty(propertyKey, fallbackCommand);
333 .setRepoCmd(this.getClass().getCanonicalName(), cmd);
335 return cmd;
[all...]
/opengrok-jel/src/org/opensolaris/opengrok/configuration/
H A DConfiguration.java304 * @param cmd the client command to use. If {@code null} the corresponding
308 public String setRepoCmd(String clazzName, String cmd) { argument
312 if (cmd == null || cmd.length() == 0) {
315 return cmds.put(clazzName, cmd);

Completed in 13 milliseconds