Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for IsTimeout (0.07 sec)

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

                return getResponse(1, TimeUnit.MINUTES);
            }
    
            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 Nov 08 09:08:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. api/go1.10.txt

    pkg net, method (*TCPListener) SyscallConn() (syscall.RawConn, error)
    pkg net, method (*UnixListener) SyscallConn() (syscall.RawConn, error)
    pkg net/smtp, method (*Client) Noop() error
    pkg os, func IsTimeout(error) bool
    pkg os, method (*File) SetDeadline(time.Time) error
    pkg os, method (*File) SetReadDeadline(time.Time) error
    pkg os, method (*File) SetWriteDeadline(time.Time) error
    pkg os, method (*PathError) Timeout() bool
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Feb 06 05:00:01 UTC 2018
    - 30.1K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg net, type DNSConfigError struct
    pkg net, type DNSConfigError struct, Err error
    pkg net, type DNSError struct
    pkg net, type DNSError struct, Err string
    pkg net, type DNSError struct, IsTimeout bool
    pkg net, type DNSError struct, Name string
    pkg net, type DNSError struct, Server string
    pkg net, type Error interface { Error, Temporary, Timeout }
    pkg net, type Error interface, Error() string
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top