- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 75 for Syscall (0.08 sec)
-
api/go1.7.txt
pkg strings, method (*Reader) Reset(string) pkg syscall (linux-386), type SysProcAttr struct, Unshareflags uintptr pkg syscall (linux-386-cgo), type SysProcAttr struct, Unshareflags uintptr pkg syscall (linux-amd64), type SysProcAttr struct, Unshareflags uintptr pkg syscall (linux-amd64-cgo), type SysProcAttr struct, Unshareflags uintptr pkg syscall (linux-arm), type SysProcAttr struct, Unshareflags uintptr
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Jun 28 15:08:11 UTC 2016 - 13.6K bytes - Viewed (0) -
cmd/os_unix.go
} consumed = int(dirent.Reclen) if direntInode(dirent) == 0 { // File absent in directory. return } switch dirent.Type { case syscall.DT_REG: typ = 0 case syscall.DT_DIR: typ = os.ModeDir case syscall.DT_LNK: typ = os.ModeSymlink default: // Skip all other file types. Revisit if/when this code needs // to handle such files, MinIO is only interested in
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Feb 18 16:25:55 UTC 2025 - 9.3K 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 Sep 09 11:13:09 UTC 2025 - 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 Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Dec 02 16:30:41 UTC 2022 - 479.2K bytes - Viewed (0) -
api/go1.1.txt
pkg syscall (darwin-386), const B115200 ideal-int pkg syscall (darwin-386), const B1200 = 1200 pkg syscall (darwin-386), const B1200 ideal-int pkg syscall (darwin-386), const B134 = 134 pkg syscall (darwin-386), const B134 ideal-int pkg syscall (darwin-386), const B14400 = 14400 pkg syscall (darwin-386), const B14400 ideal-int pkg syscall (darwin-386), const B150 = 150 pkg syscall (darwin-386), const B150 ideal-int
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Mar 31 20:37:15 UTC 2022 - 2.6M bytes - Viewed (0) -
api/go1.12.txt
pkg syscall (openbsd-386), const S_IRWXO = 7 pkg syscall (openbsd-386), const S_IRWXO ideal-int pkg syscall (openbsd-386-cgo), const S_IRWXG = 56 pkg syscall (openbsd-386-cgo), const S_IRWXG ideal-int pkg syscall (openbsd-386-cgo), const S_IRWXO = 7 pkg syscall (openbsd-386-cgo), const S_IRWXO ideal-int pkg syscall (openbsd-amd64), const S_IRWXG = 56 pkg syscall (openbsd-amd64), const S_IRWXG ideal-int
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 02 21:21:53 UTC 2019 - 13.5K bytes - Viewed (0) -
src/archive/tar/stat_actime1.go
// license that can be found in the LICENSE file. //go:build aix || linux || dragonfly || openbsd || solaris package tar import ( "syscall" "time" ) func statAtime(st *syscall.Stat_t) time.Time { return time.Unix(st.Atim.Unix()) } func statCtime(st *syscall.Stat_t) time.Time { return time.Unix(st.Ctim.Unix())
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Oct 28 18:17:57 UTC 2021 - 431 bytes - Viewed (0) -
cmd/os_other.go
} if opts.count > 0 { remaining-- } } } return entries, nil } func globalSync() { // no-op not sure about plan9/solaris support for syscall support defer globalOSMetrics.time(osMetricSync)() syscall.Sync()
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Sep 13 15:14:36 UTC 2023 - 4K bytes - Viewed (0) -
cmd/os_windows.go
globAllP, err := syscall.UTF16PtrFromString(globAll) if err != nil { return nil, errInvalidArgument } data := &syscall.Win32finddata{} handle, err := syscall.FindFirstFile(globAllP, data) if err != nil { return nil, syscallErrToFileErr(dirPath, err) } defer syscall.FindClose(handle) count := opts.count for ; count != 0; err = syscall.FindNextFile(handle, data) {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Feb 18 16:25:55 UTC 2025 - 5K bytes - Viewed (0) -
cmd/os-rename_linux.go
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Feb 15 01:09:38 UTC 2024 - 999 bytes - Viewed (0)