- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 67 for errno (0.1 seconds)
-
api/go1.14.txt
pkg syscall (freebsd-arm64-cgo), const EPROGMISMATCH = 75 pkg syscall (freebsd-arm64-cgo), const EPROGMISMATCH Errno pkg syscall (freebsd-arm64-cgo), const EPROGUNAVAIL = 74 pkg syscall (freebsd-arm64-cgo), const EPROGUNAVAIL Errno pkg syscall (freebsd-arm64-cgo), const EPROTO = 92 pkg syscall (freebsd-arm64-cgo), const EPROTO Errno pkg syscall (freebsd-arm64-cgo), const EPROTONOSUPPORT = 43
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Fri Feb 17 20:31:46 GMT 2023 - 508.9K bytes - Click Count (0) -
src/cmd/cgo/ast.go
} if context == ctxAssign2 { context = ctxExpr } if context == ctxEmbedType { error_(sel.Pos(), "cannot embed C type") } goname := sel.Sel.Name if goname == "errno" { error_(sel.Pos(), "cannot refer to errno directly; see documentation") return } if goname == "_CMalloc" { error_(sel.Pos(), "cannot refer to C._CMalloc; use C.malloc") return } if goname == "malloc" {Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Jan 08 17:58:59 GMT 2026 - 14.4K bytes - Click Count (0) -
cmd/xl-storage_test.go
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 66K bytes - Click Count (0) -
api/go1.20.txt
pkg syscall (freebsd-riscv64), const EPROGMISMATCH = 75 #53466 pkg syscall (freebsd-riscv64), const EPROGMISMATCH Errno #53466 pkg syscall (freebsd-riscv64), const EPROGUNAVAIL = 74 #53466 pkg syscall (freebsd-riscv64), const EPROGUNAVAIL Errno #53466 pkg syscall (freebsd-riscv64), const EPROTO = 92 #53466 pkg syscall (freebsd-riscv64), const EPROTO Errno #53466
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Fri Feb 17 21:23:32 GMT 2023 - 602.6K bytes - Click Count (0) -
api/go1.4.txt
pkg syscall (windows-386), const ERROR_PRIVILEGE_NOT_HELD = 1314 pkg syscall (windows-386), const ERROR_PRIVILEGE_NOT_HELD Errno pkg syscall (windows-amd64), const ERROR_PRIVILEGE_NOT_HELD = 1314 pkg syscall (windows-amd64), const ERROR_PRIVILEGE_NOT_HELD Errno # CL 86160044 os: Implement symlink support for Windows, Michael Fraenkel <******@****.***>
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Fri Dec 12 03:01:01 GMT 2014 - 34K bytes - Click Count (0) -
src/cmd/cgo/doc.go
assignment context to retrieve both the return value (if any) and the C errno variable as an error (use _ to skip the result value if the function returns void). For example: n, err = C.sqrt(-1) _, err := C.voidFunc() var n, err = C.sqrt(1) Note that the C errno value may be non-zero, and thus the err result may be
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Mon Dec 08 22:37:14 GMT 2025 - 43.9K bytes - Click Count (0) -
configure.py
"""Force symlink, equivalent of 'ln -sf'. Args: target: items to link to. link_name: name of the link. """ try: os.symlink(target, link_name) except OSError as e: if e.errno == errno.EEXIST: os.remove(link_name) os.symlink(target, link_name) else: raise e def write_to_bazelrc(line): with open(_TF_BAZELRC, 'a') as f: f.write(line + '\n')
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Fri Dec 19 16:32:04 GMT 2025 - 48.3K bytes - Click Count (0) -
cmd/xl-storage-errors_test.go
t.Fatalf("Unexpected error expecting %s", syscall.ENOTEMPTY) } } else { pathErr = &os.PathError{Err: syscall.Errno(0x91)} ok = isSysErrNotEmpty(pathErr) if !ok { t.Fatal("Unexpected error expecting 0x91") } } if runtime.GOOS == globalWindowsOSName { pathErr = &os.PathError{Err: syscall.Errno(0x03)} ok = isSysErrPathNotFound(pathErr) if !ok { t.Fatal("Unexpected error expecting 0x03") } }
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Apr 23 18:58:53 GMT 2021 - 1.7K bytes - Click Count (0) -
api/go1.16.txt
pkg syscall (darwin-arm64), const EAUTH Errno pkg syscall (darwin-arm64), const EBADARCH = 86 pkg syscall (darwin-arm64), const EBADARCH Errno pkg syscall (darwin-arm64), const EBADEXEC = 85 pkg syscall (darwin-arm64), const EBADEXEC Errno pkg syscall (darwin-arm64), const EBADF = 9 pkg syscall (darwin-arm64), const EBADMACHO = 88 pkg syscall (darwin-arm64), const EBADMACHO Errno pkg syscall (darwin-arm64), const EBADMSG = 94
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Fri Dec 02 16:30:41 GMT 2022 - 479.2K bytes - Click Count (0) -
internal/lock/lock_windows.go
lockFileExclusiveLock = 2 lockFileFailImmediately = 1 // see https://msdn.microsoft.com/en-us/library/windows/desktop/ms681382(v=vs.85).aspx errLockViolation syscall.Errno = 0x21 ) // lockedOpenFile is an internal function. func lockedOpenFile(path string, flag int, perm os.FileMode, lockType uint32) (*LockedFile, error) { f, err := Open(path, flag, perm) if err != nil {
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 7.9K bytes - Click Count (0)