- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 132 for sysctls (0.06 sec)
-
.github/workflows/go-cross.yml
- name: Build on ${{ matrix.os }} if: matrix.os == 'ubuntu-latest' env: CGO_ENABLED: 0 GO111MODULE: on run: | sudo sysctl net.ipv6.conf.all.disable_ipv6=0 sudo sysctl net.ipv6.conf.default.disable_ipv6=0
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed May 22 23:07:14 UTC 2024 - 957 bytes - Viewed (0) -
internal/lock/lock_windows.go
fallthrough case syscall.O_WRONLY | syscall.O_CREAT: access = syscall.GENERIC_READ | syscall.GENERIC_WRITE case syscall.O_WRONLY | syscall.O_CREAT | syscall.O_APPEND: access = syscall.FILE_APPEND_DATA default: return nil, fmt.Errorf("Unsupported flag (%d)", flag) } var createflag uint32 switch { case flag&syscall.O_CREAT == syscall.O_CREAT: createflag = syscall.OPEN_ALWAYS default:
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Oct 18 18:08:15 UTC 2023 - 7.9K 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) -
.github/workflows/go-healing.yml
GO111MODULE: on MINIO_KMS_SECRET_KEY: "my-minio-key:oyArl7zlPECEduNbB1KXgdzDn2Bdpvvw0l8VO51HQnY=" MINIO_KMS_AUTO_ENCRYPTION: on run: | sudo sysctl net.ipv6.conf.all.disable_ipv6=0 sudo sysctl net.ipv6.conf.default.disable_ipv6=0 make verify-healing make verify-healing-inconsistent-versions make verify-healing-with-root-disks
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed May 22 23:07:14 UTC 2024 - 1.2K bytes - Viewed (0) -
cni/pkg/install/testdata/list-with-istio.conflist
"10.1.0.1" ] }, "ipam": { "gateway": "10.1.0.1", "subnet": "10.1.0.0/16", "type": "host-local" }, "type": "bridge" }, { "sysctl": { "net.core.somaxconn": "500" }, "type": "tuning" }, { "kubernetes": { "cni_bin_dir": "/path/cni/bin", "kubeconfig": "/path/to/kubeconfig" },
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue May 21 18:32:01 UTC 2024 - 724 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.11.txt
pkg syscall (openbsd-386), const SOCK_NONBLOCK = 16384 pkg syscall (openbsd-386), const SOCK_NONBLOCK ideal-int pkg syscall (openbsd-386), const SYS_ACCEPT4 = 93 pkg syscall (openbsd-386), const SYS_ACCEPT4 ideal-int pkg syscall (openbsd-386), const SYS_PIPE2 = 101 pkg syscall (openbsd-386), const SYS_PIPE2 ideal-int pkg syscall (openbsd-386), func Accept4(int, int) (int, Sockaddr, error) pkg syscall (openbsd-386), func Pipe2([]int, int) error
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Aug 22 03:48:56 UTC 2018 - 25K bytes - Viewed (0) -
internal/http/dial_others.go
package http import ( "context" "net" "syscall" "time" ) // TODO: if possible implement for non-linux platforms, not a priority at the moment // //nolint:unused func setTCPParametersFn(opts TCPOptions) func(network, address string, c syscall.RawConn) error { return func(network, address string, c syscall.RawConn) error { return nil } }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Apr 24 04:08:47 UTC 2024 - 1.6K bytes - Viewed (0) -
internal/disk/stat_freebsd.go
// along with this program. If not, see <http://www.gnu.org/licenses/>. package disk import ( "errors" "fmt" "syscall" ) // GetInfo returns total and free bytes available in a directory, e.g. `/`. func GetInfo(path string, _ bool) (info Info, err error) { s := syscall.Statfs_t{} err = syscall.Statfs(path, &s) if err != nil { return Info{}, err } reservedBlocks := s.Bfree - uint64(s.Bavail) info = Info{
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Feb 26 19:34:50 UTC 2024 - 1.7K bytes - Viewed (0)