in src/main/java/org/apache/commons/exec/DefaultExecuteResultHandler.java [125:130]
public void waitFor(final Duration timeout) throws InterruptedException {
final Instant until = Instant.now().plus(timeout);
while (!hasResult() && Instant.now().isBefore(until)) {
Thread.sleep(SLEEP_TIME_MS);
}
}