type net.Error
17 uses
net (current package)
dnsclient_unix.go#L262: if nerr, ok := err.(Error); ok && nerr.Timeout() {
dnsclient_unix.go#L413: if nerr, ok := err.(Error); ok && nerr.Temporary() && r.strictErrors() {
dnsclient_unix.go#L619: if nerr, ok := result.error.(Error); ok && nerr.Temporary() && r.strictErrors() {
net.go#L397: type Error interface {
net/http
server.go#L719: if ne, ok := err.(net.Error); ok && cr.aborted && ne.Timeout() {
server.go#L1807: if neterr, ok := err.(net.Error); ok && neterr.Timeout() {
server.go#L2988: if ne, ok := err.(net.Error); ok && ne.Temporary() {
crypto/tls
conn.go#L173: err net.Error
conn.go#L182: if e, ok := err.(net.Error); ok {
conn.go#L612: if e, ok := err.(net.Error); !ok || !e.Temporary() {
conn.go#L651: if e, ok := err.(net.Error); !ok || !e.Temporary() {
github.com/go-redis/redis/v8
error.go#L76: if netErr, ok := err.(net.Error); ok && netErr.Timeout() {
github.com/jackc/pgconn
errors.go#L28: var netErr net.Error
pgconn.go#L454: if netErr, ok := err.(net.Error); ok && netErr.Timeout() {
pgconn.go#L463: if err, ok := err.(net.Error); !(ok && err.Timeout()) {
pgconn.go#L479: if err, ok := err.(net.Error); !(ok && err.Timeout()) {
google.golang.org/grpc/internal/transport
http2_client.go#L364: if _, ok := err.(net.Error); !ok {
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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 @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |