Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for EOPNOTSUPP (0.24 sec)

  1. src/syscall/zerrors_linux_ppc64.go

    	ENOTRECOVERABLE = Errno(0x83)
    	ENOTSOCK        = Errno(0x58)
    	ENOTSUP         = Errno(0x5f)
    	ENOTTY          = Errno(0x19)
    	ENOTUNIQ        = Errno(0x4c)
    	ENXIO           = Errno(0x6)
    	EOPNOTSUPP      = Errno(0x5f)
    	EOVERFLOW       = Errno(0x4b)
    	EOWNERDEAD      = Errno(0x82)
    	EPERM           = Errno(0x1)
    	EPFNOSUPPORT    = Errno(0x60)
    	EPIPE           = Errno(0x20)
    	EPROTO          = Errno(0x47)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 70.9K bytes
    - Viewed (0)
  2. src/syscall/zerrors_linux_s390x.go

    	ENOTRECOVERABLE = Errno(0x83)
    	ENOTSOCK        = Errno(0x58)
    	ENOTSUP         = Errno(0x5f)
    	ENOTTY          = Errno(0x19)
    	ENOTUNIQ        = Errno(0x4c)
    	ENXIO           = Errno(0x6)
    	EOPNOTSUPP      = Errno(0x5f)
    	EOVERFLOW       = Errno(0x4b)
    	EOWNERDEAD      = Errno(0x82)
    	EPERM           = Errno(0x1)
    	EPFNOSUPPORT    = Errno(0x60)
    	EPIPE           = Errno(0x20)
    	EPROTO          = Errno(0x47)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 73.3K bytes
    - Viewed (0)
  3. src/syscall/zerrors_linux_arm64.go

    	ENOTRECOVERABLE = Errno(0x83)
    	ENOTSOCK        = Errno(0x58)
    	ENOTSUP         = Errno(0x5f)
    	ENOTTY          = Errno(0x19)
    	ENOTUNIQ        = Errno(0x4c)
    	ENXIO           = Errno(0x6)
    	EOPNOTSUPP      = Errno(0x5f)
    	EOVERFLOW       = Errno(0x4b)
    	EOWNERDEAD      = Errno(0x82)
    	EPERM           = Errno(0x1)
    	EPFNOSUPPORT    = Errno(0x60)
    	EPIPE           = Errno(0x20)
    	EPROTO          = Errno(0x47)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 68.6K bytes
    - Viewed (0)
  4. src/syscall/zerrors_linux_ppc64le.go

    	ENOTRECOVERABLE = Errno(0x83)
    	ENOTSOCK        = Errno(0x58)
    	ENOTSUP         = Errno(0x5f)
    	ENOTTY          = Errno(0x19)
    	ENOTUNIQ        = Errno(0x4c)
    	ENXIO           = Errno(0x6)
    	EOPNOTSUPP      = Errno(0x5f)
    	EOVERFLOW       = Errno(0x4b)
    	EOWNERDEAD      = Errno(0x82)
    	EPERM           = Errno(0x1)
    	EPFNOSUPPORT    = Errno(0x60)
    	EPIPE           = Errno(0x20)
    	EPROTO          = Errno(0x47)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 71.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    		if err == ENOSYS {
    			// fchmodat2 isn't available. If the flags are known to be valid,
    			// return EOPNOTSUPP to indicate that fchmodat doesn't support them.
    			if flags&^(AT_SYMLINK_NOFOLLOW|AT_EMPTY_PATH) != 0 {
    				return EINVAL
    			} else if flags&(AT_SYMLINK_NOFOLLOW|AT_EMPTY_PATH) != 0 {
    				return EOPNOTSUPP
    			}
    		}
    		return err
    	}
    	return fchmodat(dirfd, path, mode)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  6. src/syscall/zerrors_linux_loong64.go

    	ENOTRECOVERABLE = Errno(0x83)
    	ENOTSOCK        = Errno(0x58)
    	ENOTSUP         = Errno(0x5f)
    	ENOTTY          = Errno(0x19)
    	ENOTUNIQ        = Errno(0x4c)
    	ENXIO           = Errno(0x6)
    	EOPNOTSUPP      = Errno(0x5f)
    	EOVERFLOW       = Errno(0x4b)
    	EOWNERDEAD      = Errno(0x82)
    	EPERM           = Errno(0x1)
    	EPFNOSUPPORT    = Errno(0x60)
    	EPIPE           = Errno(0x20)
    	EPROTO          = Errno(0x47)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 82.5K bytes
    - Viewed (0)
  7. src/syscall/syscall_windows.go

    			e == ERROR_PATH_NOT_FOUND ||
    			e == ENOENT
    	case errorspkg.ErrUnsupported:
    		return e == _ERROR_NOT_SUPPORTED ||
    			e == _ERROR_CALL_NOT_IMPLEMENTED ||
    			e == ENOSYS ||
    			e == ENOTSUP ||
    			e == EOPNOTSUPP ||
    			e == EWINDOWS
    	}
    	return false
    }
    
    func (e Errno) Temporary() bool {
    	return e == EINTR || e == EMFILE || e.Timeout()
    }
    
    func (e Errno) Timeout() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
Back to top