net.DNSError.IsNotFound (field)

14 uses

	net (current package)
		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#L309: 					dnsErr.IsNotFound = true
		dnsclient_unix.go#L329: 				lastErr.(*DNSError).IsNotFound = true
		dnsclient_unix.go#L431: 		return dnsmessage.Parser{}, "", &DNSError{Err: errNoSuchHost.Error(), Name: name, IsNotFound: true}
		dnsclient_unix.go#L559: 			return nil, &DNSError{Err: errNoSuchHost.Error(), Name: name, IsNotFound: true}
		dnsclient_unix.go#L610: 			return nil, dnsmessage.Name{}, &DNSError{Err: errNoSuchHost.Error(), Name: name, IsNotFound: true}
		dnsclient_unix.go#L616: 		return nil, dnsmessage.Name{}, &DNSError{Err: errNoSuchHost.Error(), Name: name, IsNotFound: true}
		dnsclient_unix.go#L821: 			return nil, &DNSError{Err: errNoSuchHost.Error(), Name: addr, IsNotFound: true}
		dnsclient_unix.go#L832: 		if errors.As(err, &dnsErr) && dnsErr.IsNotFound {
		lookup.go#L185: 		return nil, &DNSError{Err: errNoSuchHost.Error(), Name: host, IsNotFound: true}
		lookup.go#L229: 		return nil, &DNSError{Err: errNoSuchHost.Error(), Name: host, IsNotFound: true}
		lookup.go#L297: 		return nil, &DNSError{Err: errNoSuchHost.Error(), Name: host, IsNotFound: true}
		net.go#L627: 	IsNotFound  bool   // if true, host could not be found