var io/fs.ErrNotExist

12 uses

	io/fs (current package)
		fs.go#L140: 	ErrNotExist   = errNotExist()   // "file does not exist"

	embed
		embed.go#L308: 		return nil, &fs.PathError{Op: "open", Path: name, Err: fs.ErrNotExist}

	github.com/gotd/td/session/tdesktop
		file.go#L37: 			if errors.Is(err, fs.ErrNotExist) ||

	net
		conf.go#L270: 	if canUseCgo && dnsConf.err != nil && !errors.Is(dnsConf.err, fs.ErrNotExist) && !errors.Is(dnsConf.err, fs.ErrPermission) {
		conf.go#L287: 		if errors.Is(dnsConf.err, fs.ErrNotExist) {
		conf.go#L347: 	if errors.Is(nss.err, fs.ErrNotExist) || (nss.err == nil && len(srcs) == 0) {
		conf.go#L412: 					if err != nil && !errors.Is(err, fs.ErrNotExist) {
		hosts.go#L70: 		if !errors.Is(err, fs.ErrNotExist) && !errors.Is(err, fs.ErrPermission) {

	net/http
		fs.go#L50: 	if errors.Is(originalErr, fs.ErrNotExist) || errors.Is(originalErr, fs.ErrPermission) {
		fs.go#L64: 			return fs.ErrNotExist
		fs.go#L689: 	if errors.Is(err, fs.ErrNotExist) {

	os
		error.go#L23: 	ErrNotExist   = fs.ErrNotExist   // "file does not exist"