var io/fs.ErrPermission
7 uses
io/fs (current package)
fs.go#L138: ErrPermission = errPermission() // "permission denied"
github.com/gotd/td/session/tdesktop
file.go#L38: errors.Is(err, fs.ErrPermission) {
net
conf.go#L270: 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#L692: if errors.Is(err, fs.ErrPermission) {
os
error.go#L21: ErrPermission = fs.ErrPermission // "permission denied"
|
The pages are generated with Golds v0.6.7. (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 @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |