Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 92 for ERANGE (0.24 sec)

  1. src/syscall/zerrors_linux_ppc64le.go

    	EPERM           = Errno(0x1)
    	EPFNOSUPPORT    = Errno(0x60)
    	EPIPE           = Errno(0x20)
    	EPROTO          = Errno(0x47)
    	EPROTONOSUPPORT = Errno(0x5d)
    	EPROTOTYPE      = Errno(0x5b)
    	ERANGE          = Errno(0x22)
    	EREMCHG         = Errno(0x4e)
    	EREMOTE         = Errno(0x42)
    	EREMOTEIO       = Errno(0x79)
    	ERESTART        = Errno(0x55)
    	ERFKILL         = Errno(0x84)
    	EROFS           = Errno(0x1e)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 71.8K bytes
    - Viewed (0)
  2. src/syscall/zerrors_linux_loong64.go

    	EPERM           = Errno(0x1)
    	EPFNOSUPPORT    = Errno(0x60)
    	EPIPE           = Errno(0x20)
    	EPROTO          = Errno(0x47)
    	EPROTONOSUPPORT = Errno(0x5d)
    	EPROTOTYPE      = Errno(0x5b)
    	ERANGE          = Errno(0x22)
    	EREMCHG         = Errno(0x4e)
    	EREMOTE         = Errno(0x42)
    	EREMOTEIO       = Errno(0x79)
    	ERESTART        = Errno(0x55)
    	ERFKILL         = Errno(0x84)
    	EROFS           = Errno(0x1e)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 82.5K bytes
    - Viewed (0)
  3. src/regexp/testdata/testregex.c

    	REG_ECOLLATE,	"ECOLLATE",
    	REG_ECTYPE,	"ECTYPE",
    	REG_EESCAPE,	"EESCAPE",
    	REG_ESUBREG,	"ESUBREG",
    	REG_EBRACK,	"EBRACK",
    	REG_EPAREN,	"EPAREN",
    	REG_EBRACE,	"EBRACE",
    	REG_BADBR,	"BADBR",
    	REG_ERANGE,	"ERANGE",
    	REG_ESPACE,	"ESPACE",
    	REG_BADRPT,	"BADRPT",
    	REG_ENEWLINE,	"ENEWLINE",
    	REG_ENULL,	"ENULL",
    	REG_ECOUNT,	"ECOUNT",
    	REG_BADESC,	"BADESC",
    	REG_EMEM,	"EMEM",
    	REG_EHUNG,	"EHUNG",
    	REG_EBUS,	"EBUS",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	ENOTBLK     = syscall.Errno(0xf)
    	ENOTDIR     = syscall.Errno(0x14)
    	ENOTTY      = syscall.Errno(0x19)
    	ENXIO       = syscall.Errno(0x6)
    	EPERM       = syscall.Errno(0x1)
    	EPIPE       = syscall.Errno(0x20)
    	ERANGE      = syscall.Errno(0x22)
    	EROFS       = syscall.Errno(0x1e)
    	ESPIPE      = syscall.Errno(0x1d)
    	ESRCH       = syscall.Errno(0x3)
    	ETXTBSY     = syscall.Errno(0x1a)
    	EWOULDBLOCK = syscall.Errno(0xb)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    func GetsockoptString(fd, level, opt int) (string, error) {
    	buf := make([]byte, 256)
    	vallen := _Socklen(len(buf))
    	err := getsockopt(fd, level, opt, unsafe.Pointer(&buf[0]), &vallen)
    	if err != nil {
    		if err == ERANGE {
    			buf = make([]byte, vallen)
    			err = getsockopt(fd, level, opt, unsafe.Pointer(&buf[0]), &vallen)
    		}
    		if err != nil {
    			return "", err
    		}
    	}
    	return ByteSliceToString(buf[:vallen]), nil
    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. api/go1.1.txt

    pkg syscall (darwin-386), const EPROTO = 100
    pkg syscall (darwin-386), const EPROTONOSUPPORT = 43
    pkg syscall (darwin-386), const EPROTOTYPE = 41
    pkg syscall (darwin-386), const EPWROFF = 82
    pkg syscall (darwin-386), const ERANGE = 34
    pkg syscall (darwin-386), const EREMOTE = 71
    pkg syscall (darwin-386), const EROFS = 30
    pkg syscall (darwin-386), const ERPCMISMATCH = 73
    pkg syscall (darwin-386), const ESHLIBVERS = 87
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
  7. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const EPROTO Errno
    pkg syscall (netbsd-arm64-cgo), const EPROTONOSUPPORT = 43
    pkg syscall (netbsd-arm64-cgo), const EPROTOTYPE = 41
    pkg syscall (netbsd-arm64-cgo), const ERANGE = 34
    pkg syscall (netbsd-arm64-cgo), const EREMOTE = 71
    pkg syscall (netbsd-arm64-cgo), const EROFS = 30
    pkg syscall (netbsd-arm64-cgo), const ERPCMISMATCH = 73
    pkg syscall (netbsd-arm64-cgo), const ERPCMISMATCH Errno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
  8. api/go1.14.txt

    pkg syscall (freebsd-arm64), const EPROTO Errno
    pkg syscall (freebsd-arm64), const EPROTONOSUPPORT = 43
    pkg syscall (freebsd-arm64), const EPROTOTYPE = 41
    pkg syscall (freebsd-arm64), const ERANGE = 34
    pkg syscall (freebsd-arm64), const EREMOTE = 71
    pkg syscall (freebsd-arm64), const EROFS = 30
    pkg syscall (freebsd-arm64), const ERPCMISMATCH = 73
    pkg syscall (freebsd-arm64), const ERPCMISMATCH Errno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  9. api/go1.16.txt

    pkg syscall (darwin-arm64), const EPWROFF = 82
    pkg syscall (darwin-arm64), const EPWROFF Errno
    pkg syscall (darwin-arm64), const EQFULL = 106
    pkg syscall (darwin-arm64), const EQFULL Errno
    pkg syscall (darwin-arm64), const ERANGE = 34
    pkg syscall (darwin-arm64), const EREMOTE = 71
    pkg syscall (darwin-arm64), const EROFS = 30
    pkg syscall (darwin-arm64), const ERPCMISMATCH = 73
    pkg syscall (darwin-arm64), const ERPCMISMATCH Errno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  10. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const EPROTO Errno #53466
    pkg syscall (freebsd-riscv64), const EPROTONOSUPPORT = 43 #53466
    pkg syscall (freebsd-riscv64), const EPROTOTYPE = 41 #53466
    pkg syscall (freebsd-riscv64), const ERANGE = 34 #53466
    pkg syscall (freebsd-riscv64), const EREMOTE = 71 #53466
    pkg syscall (freebsd-riscv64), const EROFS = 30 #53466
    pkg syscall (freebsd-riscv64), const ERPCMISMATCH = 73 #53466
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 21:23:32 UTC 2023
    - 602.6K bytes
    - Viewed (0)
Back to top