Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for EOPNOTSUPP (0.08 sec)

  1. src/syscall/zerrors_solaris_amd64.go

    	ENOTRECOVERABLE = Errno(0x3b)
    	ENOTSOCK        = Errno(0x5f)
    	ENOTSUP         = Errno(0x30)
    	ENOTTY          = Errno(0x19)
    	ENOTUNIQ        = Errno(0x50)
    	ENXIO           = Errno(0x6)
    	EOPNOTSUPP      = Errno(0x7a)
    	EOVERFLOW       = Errno(0x4f)
    	EOWNERDEAD      = Errno(0x3a)
    	EPERM           = Errno(0x1)
    	EPFNOSUPPORT    = Errno(0x7b)
    	EPIPE           = Errno(0x20)
    	EPROTO          = Errno(0x47)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  2. 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)
  3. 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