Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 96 for volerr (0.12 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go

    	AT_SYMLINK_NOFOLLOW = 0x2
    	AT_SYMLINK_FOLLOW   = 0x4
    	AT_REMOVEDIR        = 0x8
    )
    
    type PollFd struct {
    	Fd      int32
    	Events  int16
    	Revents int16
    }
    
    const (
    	POLLERR    = 0x8
    	POLLHUP    = 0x10
    	POLLIN     = 0x1
    	POLLNVAL   = 0x20
    	POLLOUT    = 0x4
    	POLLPRI    = 0x2
    	POLLRDBAND = 0x80
    	POLLRDNORM = 0x40
    	POLLWRBAND = 0x100
    	POLLWRNORM = 0x4
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. pkg/apis/admissionregistration/validation/validation.go

    	if celErr, ok := err.(*cel.Error); ok {
    		switch celErr.Type {
    		case cel.ErrorTypeRequired:
    			return field.Required(fldPath, celErr.Detail)
    		case cel.ErrorTypeInvalid:
    			return field.Invalid(fldPath, expression.GetExpression(), celErr.Detail)
    		case cel.ErrorTypeInternal:
    			return field.InternalError(fldPath, celErr)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go

    }
    
    type Winsize struct {
    	Row    uint16
    	Col    uint16
    	Xpixel uint16
    	Ypixel uint16
    }
    
    type PollFd struct {
    	Fd      int32
    	Events  int16
    	Revents int16
    }
    
    const (
    	POLLERR    = 0x8
    	POLLHUP    = 0x10
    	POLLIN     = 0x1
    	POLLNVAL   = 0x20
    	POLLOUT    = 0x4
    	POLLPRI    = 0x2
    	POLLRDBAND = 0x80
    	POLLRDNORM = 0x40
    	POLLWRBAND = 0x100
    	POLLWRNORM = 0x4
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go

    	AT_REMOVEDIR        = 0x2
    	AT_EACCESS          = 0x4
    	AT_SYMLINK_FOLLOW   = 0x8
    )
    
    type PollFd struct {
    	Fd      int32
    	Events  int16
    	Revents int16
    }
    
    const (
    	POLLERR    = 0x8
    	POLLHUP    = 0x10
    	POLLIN     = 0x1
    	POLLNVAL   = 0x20
    	POLLOUT    = 0x4
    	POLLPRI    = 0x2
    	POLLRDBAND = 0x80
    	POLLRDNORM = 0x40
    	POLLWRBAND = 0x100
    	POLLWRNORM = 0x4
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go

    	AT_SYMLINK_NOFOLLOW = 0x200
    	AT_SYMLINK_FOLLOW   = 0x400
    	AT_REMOVEDIR        = 0x800
    )
    
    type PollFd struct {
    	Fd      int32
    	Events  int16
    	Revents int16
    }
    
    const (
    	POLLERR    = 0x8
    	POLLHUP    = 0x10
    	POLLIN     = 0x1
    	POLLNVAL   = 0x20
    	POLLOUT    = 0x4
    	POLLPRI    = 0x2
    	POLLRDBAND = 0x80
    	POLLRDNORM = 0x40
    	POLLWRBAND = 0x100
    	POLLWRNORM = 0x4
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_riscv64.go

    	AT_SYMLINK_NOFOLLOW = 0x2
    	AT_SYMLINK_FOLLOW   = 0x4
    	AT_REMOVEDIR        = 0x8
    )
    
    type PollFd struct {
    	Fd      int32
    	Events  int16
    	Revents int16
    }
    
    const (
    	POLLERR    = 0x8
    	POLLHUP    = 0x10
    	POLLIN     = 0x1
    	POLLNVAL   = 0x20
    	POLLOUT    = 0x4
    	POLLPRI    = 0x2
    	POLLRDBAND = 0x80
    	POLLRDNORM = 0x40
    	POLLWRBAND = 0x100
    	POLLWRNORM = 0x4
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  7. src/os/file_unix.go

    	// epoll/kqueue; for example, disk files on
    	// Linux systems. We assume that any real error
    	// will show up in later I/O.
    	// We do restore the blocking behavior if it was set by us.
    	if pollErr := f.pfd.Init("file", pollable); pollErr != nil && clearNonBlock {
    		if err := syscall.SetNonblock(fd, false); err == nil {
    			f.nonblock = false
    		}
    	}
    
    	runtime.SetFinalizer(f.file, (*file).close)
    	return f
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go

    	AT_SYMLINK_NOFOLLOW = 0x200
    	AT_SYMLINK_FOLLOW   = 0x400
    	AT_REMOVEDIR        = 0x800
    )
    
    type PollFd struct {
    	Fd      int32
    	Events  int16
    	Revents int16
    }
    
    const (
    	POLLERR      = 0x8
    	POLLHUP      = 0x10
    	POLLIN       = 0x1
    	POLLINIGNEOF = 0x2000
    	POLLNVAL     = 0x20
    	POLLOUT      = 0x4
    	POLLPRI      = 0x2
    	POLLRDBAND   = 0x80
    	POLLRDNORM   = 0x40
    	POLLWRBAND   = 0x100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go

    	AT_SYMLINK_NOFOLLOW = 0x200
    	AT_SYMLINK_FOLLOW   = 0x400
    	AT_REMOVEDIR        = 0x800
    )
    
    type PollFd struct {
    	Fd      int32
    	Events  int16
    	Revents int16
    }
    
    const (
    	POLLERR      = 0x8
    	POLLHUP      = 0x10
    	POLLIN       = 0x1
    	POLLINIGNEOF = 0x2000
    	POLLNVAL     = 0x20
    	POLLOUT      = 0x4
    	POLLPRI      = 0x2
    	POLLRDBAND   = 0x80
    	POLLRDNORM   = 0x40
    	POLLWRBAND   = 0x100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go

    	AT_SYMLINK_NOFOLLOW = 0x2
    	AT_SYMLINK_FOLLOW   = 0x4
    	AT_REMOVEDIR        = 0x8
    )
    
    type PollFd struct {
    	Fd      int32
    	Events  int16
    	Revents int16
    }
    
    const (
    	POLLERR    = 0x8
    	POLLHUP    = 0x10
    	POLLIN     = 0x1
    	POLLNVAL   = 0x20
    	POLLOUT    = 0x4
    	POLLPRI    = 0x2
    	POLLRDBAND = 0x80
    	POLLRDNORM = 0x40
    	POLLWRBAND = 0x100
    	POLLWRNORM = 0x4
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top