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

/opengrok/src/org/opensolaris/opengrok/util/
H A DExecutor.java57 private int timeout; // in seconds, 0 means no timeout field in class:Executor
84 this.timeout = RuntimeEnvironment.getInstance().getCommandTimeout() * 1000;
88 * Create a new instance of the Executor with specific timeout value.
92 * @param timeout If the command runs longer than the timeout (seconds),
96 public Executor(List<String> cmdList, File workingDirectory, int timeout) { argument
99 this.timeout = timeout * 1000;
103 * Create a new instance of the Executor with or without timeout,
[all...]
/opengrok/src/org/opensolaris/opengrok/configuration/
H A DConfiguration.java233 public void setCommandTimeout(int timeout) { argument
234 this.command_timeout = timeout;
H A DRuntimeEnvironment.java256 public void setCommandTimeout(int timeout) { argument
257 threadConfig.get().setCommandTimeout(timeout);

Completed in 16 milliseconds