net.DNSError.IsTemporary (field)

7 uses

	net (current package)
		cgo_unix.go#L127: 		return 0, &DNSError{Err: err.Error(), Name: network + "/" + service, IsTemporary: isTemporary}
		cgo_unix.go#L190: 		return nil, &DNSError{Err: err.Error(), Name: name, IsNotFound: isErrorNoSuchHost, IsTemporary: isTemporary}
		cgo_unix.go#L275: 		return nil, &DNSError{Err: err.Error(), Name: addr, IsTemporary: isTemporary, IsNotFound: isErrorNoSuchHost}
		dnsclient_unix.go#L290: 					dnsErr.IsTemporary = true
		dnsclient_unix.go#L303: 					dnsErr.IsTemporary = true
		net.go#L626: 	IsTemporary bool   // if true, error is temporary; not all errors set this
		net.go#L650: func (e *DNSError) Temporary() bool { return e.IsTimeout || e.IsTemporary }