/
/
opt
/
golang
/
1.22.0
/
src
/
cmd
/
go
/
internal
/
toolchain
Server: in-mum-web1112.main-hosting.eu (62.72.28.111)
You: 216.73.216.137
PHP 8.3.16
Dir:
/opt/golang/1.22.0/src/cmd/go/internal/toolchain
Edit:
/opt/golang/1.22.0/src/cmd/go/internal/toolchain/umask_unix.go
// Copyright 2023 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 darwin || freebsd || linux || netbsd || openbsd package toolchain import ( "io/fs" "syscall" ) // sysWriteBits determines which bits to OR into the mode to make a directory writable. // It must be called when there are no other file system operations happening. func sysWriteBits() fs.FileMode { // Read current umask. There's no way to read it without also setting it, // so set it conservatively and then restore the original one. m := syscall.Umask(0o777) syscall.Umask(m) // restore bits if m&0o22 == 0o22 { // group and world are unwritable by default return 0o700 } if m&0o2 == 0o2 { // group is writable by default, but not world return 0o770 } return 0o777 // everything is writable by default }
Ukuran: 896 B