Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 205 for EINVAL (0.12 sec)

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

    	{17, "EEXIST", "file exists"},
    	{18, "EXDEV", "invalid cross-device link"},
    	{19, "ENODEV", "no such device"},
    	{20, "ENOTDIR", "not a directory"},
    	{21, "EISDIR", "is a directory"},
    	{22, "EINVAL", "invalid argument"},
    	{23, "ENFILE", "too many open files in system"},
    	{24, "EMFILE", "too many open files"},
    	{25, "ENOTTY", "inappropriate ioctl for device"},
    	{26, "ETXTBSY", "text file busy"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_riscv64.go

    	EIDRM           = syscall.Errno(0x52)
    	EILSEQ          = syscall.Errno(0x56)
    	EINPROGRESS     = syscall.Errno(0x24)
    	EINTEGRITY      = syscall.Errno(0x61)
    	EINTR           = syscall.Errno(0x4)
    	EINVAL          = syscall.Errno(0x16)
    	EIO             = syscall.Errno(0x5)
    	EISCONN         = syscall.Errno(0x38)
    	EISDIR          = syscall.Errno(0x15)
    	ELAST           = syscall.Errno(0x61)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 83.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go

    	EIDRM           = syscall.Errno(0x52)
    	EILSEQ          = syscall.Errno(0x56)
    	EINPROGRESS     = syscall.Errno(0x24)
    	EINTEGRITY      = syscall.Errno(0x61)
    	EINTR           = syscall.Errno(0x4)
    	EINVAL          = syscall.Errno(0x16)
    	EIO             = syscall.Errno(0x5)
    	EISCONN         = syscall.Errno(0x38)
    	EISDIR          = syscall.Errno(0x15)
    	ELAST           = syscall.Errno(0x61)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go

    	EIDRM           = syscall.Errno(0x52)
    	EILSEQ          = syscall.Errno(0x56)
    	EINPROGRESS     = syscall.Errno(0x24)
    	EINTEGRITY      = syscall.Errno(0x61)
    	EINTR           = syscall.Errno(0x4)
    	EINVAL          = syscall.Errno(0x16)
    	EIO             = syscall.Errno(0x5)
    	EISCONN         = syscall.Errno(0x38)
    	EISDIR          = syscall.Errno(0x15)
    	ELAST           = syscall.Errno(0x61)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	{17, "EEXIST", "file exists"},
    	{18, "EXDEV", "invalid cross-device link"},
    	{19, "ENODEV", "no such device"},
    	{20, "ENOTDIR", "not a directory"},
    	{21, "EISDIR", "is a directory"},
    	{22, "EINVAL", "invalid argument"},
    	{23, "ENFILE", "too many open files in system"},
    	{24, "EMFILE", "too many open files"},
    	{25, "ENOTTY", "inappropriate ioctl for device"},
    	{26, "ETXTBSY", "text file busy"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go

    	{17, "EEXIST", "file exists"},
    	{18, "EXDEV", "invalid cross-device link"},
    	{19, "ENODEV", "no such device"},
    	{20, "ENOTDIR", "not a directory"},
    	{21, "EISDIR", "is a directory"},
    	{22, "EINVAL", "invalid argument"},
    	{23, "ENFILE", "too many open files in system"},
    	{24, "EMFILE", "too many open files"},
    	{25, "ENOTTY", "inappropriate ioctl for device"},
    	{26, "ETXTBSY", "text file busy"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go

    	{17, "EEXIST", "file exists"},
    	{18, "EXDEV", "invalid cross-device link"},
    	{19, "ENODEV", "no such device"},
    	{20, "ENOTDIR", "not a directory"},
    	{21, "EISDIR", "is a directory"},
    	{22, "EINVAL", "invalid argument"},
    	{23, "ENFILE", "too many open files in system"},
    	{24, "EMFILE", "too many open files"},
    	{25, "ENOTTY", "inappropriate ioctl for device"},
    	{26, "ETXTBSY", "text file busy"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  8. src/internal/poll/fd_unix.go

    	if syscall.F_DUPFD_CLOEXEC != 0 && !dupCloexecUnsupported.Load() {
    		r0, err := unix.Fcntl(fd, syscall.F_DUPFD_CLOEXEC, 0)
    		if err == nil {
    			return r0, "", nil
    		}
    		switch err {
    		case syscall.EINVAL, syscall.ENOSYS:
    			// Old kernel, or js/wasm (which returns
    			// ENOSYS). Fall back to the portable way from
    			// now on.
    			dupCloexecUnsupported.Store(true)
    		default:
    			return -1, "fcntl", err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 04:09:44 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go

    	{17, "EEXIST", "file exists"},
    	{18, "EXDEV", "invalid cross-device link"},
    	{19, "ENODEV", "no such device"},
    	{20, "ENOTDIR", "not a directory"},
    	{21, "EISDIR", "is a directory"},
    	{22, "EINVAL", "invalid argument"},
    	{23, "ENFILE", "too many open files in system"},
    	{24, "EMFILE", "too many open files"},
    	{25, "ENOTTY", "inappropriate ioctl for device"},
    	{26, "ETXTBSY", "text file busy"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go

    	{17, "EEXIST", "file exists"},
    	{18, "EXDEV", "invalid cross-device link"},
    	{19, "ENODEV", "no such device"},
    	{20, "ENOTDIR", "not a directory"},
    	{21, "EISDIR", "is a directory"},
    	{22, "EINVAL", "invalid argument"},
    	{23, "ENFILE", "too many open files in system"},
    	{24, "EMFILE", "too many open files"},
    	{25, "ENOTTY", "inappropriate ioctl for device"},
    	{26, "ETXTBSY", "text file busy"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top