var io/fs.ErrPermission
6 uses
io/fs (current package)
fs.go#L144: ErrPermission = errPermission() // "permission denied"
net
conf.go#L277: if canUseCgo && dnsConf.err != nil && !errors.Is(dnsConf.err, fs.ErrNotExist) && !errors.Is(dnsConf.err, fs.ErrPermission) {
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#L768: if errors.Is(err, fs.ErrPermission) {
os
error.go#L21: ErrPermission = fs.ErrPermission // "permission denied"
 |
The pages are generated with Golds v0.7.6. (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. |