D | PollingCheck.java | 54 public static boolean check( in check() method in PollingCheck 82 public static boolean check(long timeout, Callable<Boolean> condition) throws Exception { in check() method in PollingCheck 83 return check(DEFAULT_CLOCK, TIME_SLICE, timeout, condition); in check() 96 public static void check( in check() method in PollingCheck 103 if (!check(clock, pollInterval, timeout, condition)) { in check() 116 public static void check(String message, long timeout, Callable<Boolean> condition) in check() method in PollingCheck 118 check(DEFAULT_CLOCK, message, TIME_SLICE, timeout, condition); in check() 137 check(clock, "Unexpected timeout waiting for condition", pollInterval, timeout, condition); in waitFor()
|