type net.Error
16 uses
net (current package)
dnsclient_unix.go#L465: if nerr, ok := err.(Error); ok && nerr.Temporary() && r.strictErrors() {
dnsclient_unix.go#L685: if nerr, ok := result.error.(Error); ok && nerr.Temporary() && r.strictErrors() {
net.go#L425: type Error interface {
net.go#L691: if err, ok := err.(Error); ok {
net/http
server.go#L729: if ne, ok := err.(net.Error); ok && cr.aborted && ne.Timeout() {
server.go#L1883: if neterr, ok := err.(net.Error); ok && neterr.Timeout() {
server.go#L3439: if ne, ok := err.(net.Error); ok && ne.Temporary() {
crypto/tls
conn.go#L188: err net.Error
conn.go#L197: if e, ok := err.(net.Error); ok {
conn.go#L633: if e, ok := err.(net.Error); !ok || !e.Temporary() {
conn.go#L678: if e, ok := err.(net.Error); !ok || !e.Temporary() {
github.com/gotd/td/telegram/downloader
retry.go#L45: var netErr net.Error
github.com/refraction-networking/utls
conn.go#L191: err net.Error
conn.go#L200: if e, ok := err.(net.Error); ok {
conn.go#L637: if e, ok := err.(net.Error); !ok || !e.Temporary() {
conn.go#L682: if e, ok := err.(net.Error); !ok || !e.Temporary() {
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |