Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 93 for ENOTSUP (0.11 sec)

  1. src/syscall/syscall_unix.go

    		return e == EACCES || e == EPERM
    	case oserror.ErrExist:
    		return e == EEXIST || e == ENOTEMPTY
    	case oserror.ErrNotExist:
    		return e == ENOENT
    	case errorspkg.ErrUnsupported:
    		return e == ENOSYS || e == ENOTSUP || e == EOPNOTSUPP
    	}
    	return false
    }
    
    func (e Errno) Temporary() bool {
    	return e == EINTR || e == EMFILE || e == ENFILE || e.Timeout()
    }
    
    func (e Errno) Timeout() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 16:19:26 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go

    	ENOTCONN        = syscall.Errno(0x39)
    	ENOTDIR         = syscall.Errno(0x14)
    	ENOTEMPTY       = syscall.Errno(0x42)
    	ENOTRECOVERABLE = syscall.Errno(0x68)
    	ENOTSOCK        = syscall.Errno(0x26)
    	ENOTSUP         = syscall.Errno(0x2d)
    	ENOTTY          = syscall.Errno(0x19)
    	ENXIO           = syscall.Errno(0x6)
    	EOPNOTSUPP      = syscall.Errno(0x66)
    	EOVERFLOW       = syscall.Errno(0x54)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 87.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_riscv64.go

    	ENOTCONN        = syscall.Errno(0x39)
    	ENOTDIR         = syscall.Errno(0x14)
    	ENOTEMPTY       = syscall.Errno(0x42)
    	ENOTRECOVERABLE = syscall.Errno(0x5d)
    	ENOTSOCK        = syscall.Errno(0x26)
    	ENOTSUP         = syscall.Errno(0x5b)
    	ENOTTY          = syscall.Errno(0x19)
    	ENXIO           = syscall.Errno(0x6)
    	EOPNOTSUPP      = syscall.Errno(0x2d)
    	EOVERFLOW       = syscall.Errno(0x57)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go

    	ENOTBLK         = syscall.Errno(0xf)
    	ENOTCONN        = syscall.Errno(0x39)
    	ENOTDIR         = syscall.Errno(0x14)
    	ENOTEMPTY       = syscall.Errno(0x42)
    	ENOTSOCK        = syscall.Errno(0x26)
    	ENOTSUP         = syscall.Errno(0x56)
    	ENOTTY          = syscall.Errno(0x19)
    	ENXIO           = syscall.Errno(0x6)
    	EOPNOTSUPP      = syscall.Errno(0x2d)
    	EOVERFLOW       = syscall.Errno(0x54)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 72.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go

    	ENOTCONN        = syscall.Errno(0x39)
    	ENOTDIR         = syscall.Errno(0x14)
    	ENOTEMPTY       = syscall.Errno(0x42)
    	ENOTRECOVERABLE = syscall.Errno(0x5d)
    	ENOTSOCK        = syscall.Errno(0x26)
    	ENOTSUP         = syscall.Errno(0x5b)
    	ENOTTY          = syscall.Errno(0x19)
    	ENXIO           = syscall.Errno(0x6)
    	EOPNOTSUPP      = syscall.Errno(0x2d)
    	EOVERFLOW       = syscall.Errno(0x57)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_mips64.go

    	ENOTCONN        = syscall.Errno(0x39)
    	ENOTDIR         = syscall.Errno(0x14)
    	ENOTEMPTY       = syscall.Errno(0x42)
    	ENOTRECOVERABLE = syscall.Errno(0x5d)
    	ENOTSOCK        = syscall.Errno(0x26)
    	ENOTSUP         = syscall.Errno(0x5b)
    	ENOTTY          = syscall.Errno(0x19)
    	ENXIO           = syscall.Errno(0x6)
    	EOPNOTSUPP      = syscall.Errno(0x2d)
    	EOVERFLOW       = syscall.Errno(0x57)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go

    	ENOTBLK         = syscall.Errno(0xf)
    	ENOTCONN        = syscall.Errno(0x39)
    	ENOTDIR         = syscall.Errno(0x14)
    	ENOTEMPTY       = syscall.Errno(0x42)
    	ENOTSOCK        = syscall.Errno(0x26)
    	ENOTSUP         = syscall.Errno(0x56)
    	ENOTTY          = syscall.Errno(0x19)
    	ENXIO           = syscall.Errno(0x6)
    	EOPNOTSUPP      = syscall.Errno(0x2d)
    	EOVERFLOW       = syscall.Errno(0x54)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 72.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go

    	ENOTBLK         = syscall.Errno(0xf)
    	ENOTCONN        = syscall.Errno(0x39)
    	ENOTDIR         = syscall.Errno(0x14)
    	ENOTEMPTY       = syscall.Errno(0x42)
    	ENOTSOCK        = syscall.Errno(0x26)
    	ENOTSUP         = syscall.Errno(0x56)
    	ENOTTY          = syscall.Errno(0x19)
    	ENXIO           = syscall.Errno(0x6)
    	EOPNOTSUPP      = syscall.Errno(0x2d)
    	EOVERFLOW       = syscall.Errno(0x54)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 71.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm64.go

    	ENOTBLK         = syscall.Errno(0xf)
    	ENOTCONN        = syscall.Errno(0x39)
    	ENOTDIR         = syscall.Errno(0x14)
    	ENOTEMPTY       = syscall.Errno(0x42)
    	ENOTSOCK        = syscall.Errno(0x26)
    	ENOTSUP         = syscall.Errno(0x56)
    	ENOTTY          = syscall.Errno(0x19)
    	ENXIO           = syscall.Errno(0x6)
    	EOPNOTSUPP      = syscall.Errno(0x2d)
    	EOVERFLOW       = syscall.Errno(0x54)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 72.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go

    	ENOTCONN        = syscall.Errno(0x39)
    	ENOTDIR         = syscall.Errno(0x14)
    	ENOTEMPTY       = syscall.Errno(0x42)
    	ENOTRECOVERABLE = syscall.Errno(0x5d)
    	ENOTSOCK        = syscall.Errno(0x26)
    	ENOTSUP         = syscall.Errno(0x5b)
    	ENOTTY          = syscall.Errno(0x19)
    	ENXIO           = syscall.Errno(0x6)
    	EOPNOTSUPP      = syscall.Errno(0x2d)
    	EOVERFLOW       = syscall.Errno(0x57)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.5K bytes
    - Viewed (0)
Back to top