- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 102 for SyscallN (0.15 sec)
-
api/except.txt
pkg syscall (freebsd-arm), const BIOCGRTIMEOUT = 1074545262 pkg syscall (freebsd-arm), const BIOCSRTIMEOUT = 2148287085 pkg syscall (freebsd-arm), const ELAST = 94 pkg syscall (freebsd-arm), const ImplementsGetwd = false pkg syscall (freebsd-arm), const O_CLOEXEC = 0 pkg syscall (freebsd-arm), const SIOCAIFADDR = 2151967019 pkg syscall (freebsd-arm), const SIOCGIFSTATUS = 3274991931
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Sun Jun 16 23:08:08 UTC 2024 - 34.8K bytes - Viewed (0) -
api/go1.9.txt
pkg syscall (freebsd-386), func Pipe2([]int, int) error pkg syscall (freebsd-386), type Credential struct, NoSetGroups bool pkg syscall (freebsd-amd64-cgo), func Pipe2([]int, int) error pkg syscall (freebsd-amd64-cgo), type Credential struct, NoSetGroups bool pkg syscall (freebsd-amd64), func Pipe2([]int, int) error pkg syscall (freebsd-amd64), type Credential struct, NoSetGroups bool pkg syscall (freebsd-arm-cgo), func Pipe2([]int, int) error
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Oct 04 20:20:20 UTC 2021 - 10.7K bytes - Viewed (0) -
internal/lock/lock_nix.go
fallthrough case syscall.O_RDWR | syscall.O_CREAT: lockType |= syscall.LOCK_EX default: return nil, &os.PathError{ Op: "open", Path: path, Err: syscall.EINVAL, } } f, err := os.OpenFile(path, flag|syscall.O_SYNC, perm) if err != nil { return nil, err } if err = syscall.Flock(int(f.Fd()), lockType); err != nil { f.Close() if err == syscall.EWOULDBLOCK { err = ErrAlreadyLocked
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 19 01:35:22 UTC 2021 - 2.8K bytes - Viewed (0) -
cmd/xl-storage-errors.go
package cmd import ( "errors" "os" "runtime" "syscall" ) // No space left on device error func isSysErrNoSpace(err error) bool { return errors.Is(err, syscall.ENOSPC) } // Invalid argument, unsupported flags such as O_DIRECT func isSysErrInvalidArg(err error) bool { return errors.Is(err, syscall.EINVAL) } // Input/output error func isSysErrIO(err error) bool {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Mar 06 16:56:29 UTC 2023 - 3.8K bytes - Viewed (0) -
lib/wasm/wasm_exec.js
this._ids.delete(v); this._idPool.push(id); } }, // func stringVal(value string) ref "syscall/js.stringVal": (sp) => { sp >>>= 0; storeValue(sp + 24, loadString(sp + 8)); }, // func valueGet(v ref, p string) ref "syscall/js.valueGet": (sp) => { sp >>>= 0; const result = Reflect.get(loadValue(sp + 8), loadString(sp + 16));
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Aug 30 19:15:21 UTC 2024 - 16.5K bytes - Viewed (0) -
api/go1.3.txt
pkg syscall (freebsd-386), const AF_INET6_SDP = 42 pkg syscall (freebsd-386), const AF_INET6_SDP ideal-int pkg syscall (freebsd-386), const AF_INET_SDP = 40 pkg syscall (freebsd-386), const AF_INET_SDP ideal-int pkg syscall (freebsd-386), const AF_MAX = 42 pkg syscall (freebsd-386), const DLT_MATCHING_MAX = 246 pkg syscall (freebsd-386), const DLT_MPEG_2_TS = 243 pkg syscall (freebsd-386), const DLT_MPEG_2_TS ideal-int
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Jun 02 02:45:00 UTC 2014 - 117K bytes - Viewed (0) -
api/go1.14.txt
pkg syscall (freebsd-arm64), const B50 = 50 pkg syscall (freebsd-arm64), const B50 ideal-int pkg syscall (freebsd-arm64), const B57600 = 57600 pkg syscall (freebsd-arm64), const B57600 ideal-int pkg syscall (freebsd-arm64), const B600 = 600 pkg syscall (freebsd-arm64), const B600 ideal-int pkg syscall (freebsd-arm64), const B7200 = 7200 pkg syscall (freebsd-arm64), const B7200 ideal-int
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Feb 17 20:31:46 UTC 2023 - 508.9K bytes - Viewed (0) -
api/go1.16.txt
pkg syscall (darwin-amd64), func SetBpfDatalink //deprecated pkg syscall (darwin-amd64), func SetBpfHeadercmpl //deprecated pkg syscall (darwin-amd64), func SetBpfImmediate //deprecated pkg syscall (darwin-amd64), func SetBpfInterface //deprecated pkg syscall (darwin-amd64), func SetBpfPromisc //deprecated pkg syscall (darwin-amd64), func SetBpfTimeout //deprecated pkg syscall (darwin-amd64), func StringSlicePtr //deprecated
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Dec 02 16:30:41 UTC 2022 - 479.2K bytes - Viewed (0) -
api/go1.4.txt
pkg syscall (windows-386), const DnsSectionAdditional = 3 pkg syscall (windows-386), const DnsSectionAdditional ideal-int pkg syscall (windows-386), const DnsSectionAnswer = 1 pkg syscall (windows-386), const DnsSectionAnswer ideal-int pkg syscall (windows-386), const DnsSectionAuthority = 2 pkg syscall (windows-386), const DnsSectionAuthority ideal-int pkg syscall (windows-386), const DnsSectionQuestion = 0
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Dec 12 03:01:01 UTC 2014 - 34K bytes - Viewed (0) -
internal/lock/lock_solaris.go
package lock import ( "os" "syscall" ) // lockedOpenFile is an internal function. func lockedOpenFile(path string, flag int, perm os.FileMode, rlockType int) (*LockedFile, error) { var lockType int16 switch flag { case syscall.O_RDONLY: lockType = syscall.F_RDLCK case syscall.O_WRONLY: fallthrough case syscall.O_RDWR: fallthrough case syscall.O_WRONLY | syscall.O_CREAT: fallthrough
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Jan 02 17:15:06 UTC 2022 - 2.8K bytes - Viewed (0)