Searched defs:timeoutError (Results 1 – 4 of 4) sorted by relevance
102 type timeoutError struct{} struct104 func (timeoutError) Error() string { return "tls: DialWithDialer timed out" }105 func (timeoutError) Timeout() bool { return true }106 func (timeoutError) Temporary() bool { return true }
1742 type timeoutError struct { struct1743 timeout bool1746 func (e *timeoutError) Error() string { return "timeout error" }1747 func (e *timeoutError) Timeout() bool { return e.timeout }1757 timeoutError anonMember
616 type timeoutError struct{} struct618 func (e *timeoutError) Error() string { return "i/o timeout" }619 func (e *timeoutError) Timeout() bool { return true }620 func (e *timeoutError) Temporary() bool { return true }622 func (e *timeoutError) Is(err error) bool {
2635 type timeoutError struct { struct2636 err string2639 func (e *timeoutError) Error() string { return e.err }2640 func (e *timeoutError) Timeout() bool { return true }2641 func (e *timeoutError) Temporary() bool { return true }2642 func (e *timeoutError) Is(err error) bool { return err == context.DeadlineExceeded }