- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 214 for openbsd (0.44 sec)
-
api/go1.12.txt
pkg syscall (openbsd-386), const S_IRWXG = 56 pkg syscall (openbsd-386), const S_IRWXG ideal-int 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
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 02 21:21:53 UTC 2019 - 13.5K bytes - Viewed (0) -
buildscripts/checkdeps.sh
exit 1 ;; esac } assert_is_supported_os() { case "${KNAME}" in Linux | FreeBSD | OpenBSD | NetBSD | DragonFly | SunOS) return ;; Darwin) osx_host_version=$(env sw_vers -productVersion) if ! check_minimum_version "${OSX_VERSION}" "${osx_host_version}"; then
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Jun 08 16:12:05 UTC 2025 - 3.4K bytes - Viewed (0) -
cmd/os-dirent_fileino.go
//go:build freebsd || openbsd || netbsd // +build freebsd openbsd netbsd // Copyright (c) 2015-2021 MinIO, Inc. // // This file is part of MinIO Object Storage stack // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. //
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Aug 19 01:35:22 UTC 2021 - 950 bytes - Viewed (0) -
src/archive/tar/stat_actime1.go
// Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // 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) -
buildscripts/cross-compile.sh
## List of architectures and OS to test coss compilation. SUPPORTED_OSARCH="linux/ppc64le linux/mips64 linux/amd64 linux/arm64 linux/s390x darwin/arm64 darwin/amd64 freebsd/amd64 windows/amd64 linux/arm linux/386 netbsd/amd64 linux/mips openbsd/amd64 linux/riscv64" } function _build() { local osarch=$1 IFS=/ read -r -a arr <<<"$osarch" os="${arr[0]}" arch="${arr[1]}" package=$(go list -f '{{.ImportPath}}')
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Jun 08 16:12:05 UTC 2025 - 972 bytes - Viewed (0) -
api/go1.5.txt
pkg syscall (openbsd-386), type SysProcAttr struct, Ctty int pkg syscall (openbsd-386), type SysProcAttr struct, Foreground bool pkg syscall (openbsd-386), type SysProcAttr struct, Pgid int pkg syscall (openbsd-386-cgo), type SysProcAttr struct, Ctty int pkg syscall (openbsd-386-cgo), type SysProcAttr struct, Foreground bool pkg syscall (openbsd-386-cgo), type SysProcAttr struct, Pgid int
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Jul 30 21:14:09 UTC 2015 - 46.6K bytes - Viewed (0) -
api/go1.16.txt
pkg syscall (openbsd-386), func SetBpfHeadercmpl //deprecated pkg syscall (openbsd-386), func SetBpfImmediate //deprecated pkg syscall (openbsd-386), func SetBpfInterface //deprecated pkg syscall (openbsd-386), func SetBpfPromisc //deprecated pkg syscall (openbsd-386), func SetBpfTimeout //deprecated pkg syscall (openbsd-386), 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.8.txt
pkg syscall (linux-arm-cgo), func TimevalToNsec(Timeval) int64 pkg syscall (linux-arm), func TimevalToNsec(Timeval) int64 pkg syscall (openbsd-386), const SYS_KILL = 122 pkg syscall (openbsd-386-cgo), const SYS_KILL = 122 pkg syscall (openbsd-amd64), const SYS_KILL = 122 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
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/archive/tar/stat_unix.go
major := uint32((dev & 0x000fff00) >> 8) minor := uint32((dev & 0x000000ff) >> 0) minor |= uint32((dev & 0xfff00000) >> 12) h.Devmajor, h.Devminor = int64(major), int64(minor) case "openbsd": // Copied from golang.org/x/sys/unix/dev_openbsd.go. major := uint32((dev & 0x0000ff00) >> 8) minor := uint32((dev & 0x000000ff) >> 0) minor |= uint32((dev & 0xffff0000) >> 8)
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Mar 15 16:01:50 UTC 2024 - 3.2K bytes - Viewed (0) -
cmd/os_unix.go
//go:build (linux && !appengine) || darwin || freebsd || netbsd || openbsd // +build linux,!appengine darwin freebsd netbsd openbsd // Copyright (c) 2015-2021 MinIO, Inc. // // This file is part of MinIO Object Storage stack // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 3 of the License, or
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Feb 18 16:25:55 UTC 2025 - 9.3K bytes - Viewed (0)