Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsTimeout (0.04 sec)

  1. src/main/java/org/codelibs/fess/suggest/concurrent/Deferred.java

             * @return The response.
             */
            public RESPONSE getResponse(final long time, final TimeUnit unit) {
                try {
                    final boolean isTimeout = !latch.await(time, unit);
                    if (isTimeout) {
                        throw new SuggesterException("Request timeout. time:" + time + " unit:" + unit.name());
                    }
                    if (error != null) {
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Fri Jul 04 14:00:23 UTC 2025
    - 7.8K bytes
    - Viewed (0)
Back to top