Home
last modified time | relevance | path

Searched defs:temporaryError (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/net/url/
Durl_test.go1749 type temporaryError struct { struct
1750 temporary bool
1753 func (e *temporaryError) Error() string { return "temporary error" }
1754 func (e *temporaryError) Temporary() bool { return e.temporary }
1758 temporaryError anonMember
/aosp_15_r20/prebuilts/go/linux-x86/src/net/
Dnet.go651 type temporaryError struct{ s string } struct
653 func (e *temporaryError) Error() string { return e.s }
654 func (e *temporaryError) Temporary() bool { return true }
655 func (e *temporaryError) Timeout() bool { return false }