- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 24 for errno (0.02 sec)
-
api/go1.23.txt
pkg syscall (openbsd-amd64-cgo), const EOWNERDEAD = 94 #67998 pkg syscall (openbsd-amd64-cgo), const EOWNERDEAD Errno #67998 pkg syscall (openbsd-amd64-cgo), const EPROTO = 95 #67998 pkg syscall (windows-386), const WSAENOPROTOOPT = 10042 #62254 pkg syscall (windows-386), const WSAENOPROTOOPT Errno #62254 pkg syscall (windows-amd64), const WSAENOPROTOOPT = 10042 #62254
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Jun 25 17:08:08 UTC 2024 - 10.1K bytes - Viewed (0) -
api/go1.18.txt
pkg syscall (windows-386), func Syscall6 //deprecated pkg syscall (windows-386), func Syscall9 //deprecated pkg syscall (windows-386), func SyscallN(uintptr, ...uintptr) (uintptr, uintptr, Errno) pkg syscall (windows-amd64), func Syscall //deprecated pkg syscall (windows-amd64), func Syscall12 //deprecated pkg syscall (windows-amd64), func Syscall15 //deprecated pkg syscall (windows-amd64), func Syscall18 //deprecated
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Feb 17 20:31:46 UTC 2023 - 13K bytes - Viewed (0) -
api/go1.9.txt
pkg syscall (openbsd-amd64), type Credential struct, NoSetGroups bool pkg syscall (windows-386), const WSAECONNABORTED = 10053 pkg syscall (windows-386), const WSAECONNABORTED Errno pkg syscall (windows-amd64), const WSAECONNABORTED = 10053 pkg syscall (windows-amd64), const WSAECONNABORTED Errno pkg syscall, type Conn interface { SyscallConn } pkg syscall, type Conn interface, SyscallConn() (RawConn, error)
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Oct 04 20:20:20 UTC 2021 - 10.7K bytes - Viewed (0) -
api/go1.12.txt
pkg syscall (windows-386), func Syscall18(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) pkg syscall (windows-386), type RawSockaddrAny struct, Pad [100]int8 pkg syscall (windows-386), type RawSockaddrUnix struct, Family uint16 pkg syscall (windows-386), type RawSockaddrUnix struct, Path [108]int8
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 02 21:21:53 UTC 2019 - 13.5K bytes - Viewed (0) -
api/go1.8.txt
pkg syscall (openbsd-amd64-cgo), const SYS_KILL = 122 pkg syscall (windows-386), const ERROR_DIR_NOT_EMPTY = 145 pkg syscall (windows-386), const ERROR_DIR_NOT_EMPTY Errno pkg syscall (windows-amd64), const ERROR_DIR_NOT_EMPTY = 145 pkg syscall (windows-amd64), const ERROR_DIR_NOT_EMPTY Errno pkg testing, func CoverMode() string pkg testing, func MainStart(testDeps, []InternalTest, []InternalBenchmark, []InternalExample) *M
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Dec 21 05:25:57 UTC 2016 - 16.3K bytes - Viewed (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" {
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Oct 14 15:47:06 UTC 2024 - 14.3K bytes - Viewed (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')
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Wed Apr 30 15:18:54 UTC 2025 - 48.3K bytes - Viewed (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
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Dec 11 23:57:34 UTC 2024 - 44K bytes - Viewed (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 <******@****.***>
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Dec 12 03:01:01 UTC 2014 - 34K bytes - Viewed (0) -
ci/official/containers/ml_build_arm64/builder.devtoolset/stringop_trunc.patch
int fd = __opensock (); if (fd < 0) return 0; - strncpy (ifr.ifr_name, ifname, sizeof (ifr.ifr_name)); if (__ioctl (fd, SIOCGIFINDEX, &ifr) < 0) { int saved_errno = errno; diff --git a/timezone/zic.c b/timezone/zic.c index a5202a1..772d081 100644 --- a/timezone/zic.c +++ b/timezone/zic.c @@ -1609,7 +1609,7 @@ writezone(const char *const name, const char *const string) }
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Nov 11 19:25:56 UTC 2024 - 42.9K bytes - Viewed (0)