Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 640 for Fmask (0.2 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_riscv64.go

    }
    
    type RtMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Index   uint16
    	_       uint16
    	Flags   int32
    	Addrs   int32
    	Pid     int32
    	Seq     int32
    	Errno   int32
    	Fmask   int32
    	Inits   uint64
    	Rmx     RtMetrics
    }
    
    type RtMetrics struct {
    	Locks    uint64
    	Mtu      uint64
    	Hopcount uint64
    	Expire   uint64
    	Recvpipe uint64
    	Sendpipe uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  2. internal/pubsub/mask.go

    	"math"
    	"math/bits"
    )
    
    // Mask allows filtering by a bitset mask.
    type Mask uint64
    
    const (
    	// MaskAll is the mask for all entries.
    	MaskAll Mask = math.MaxUint64
    )
    
    // MaskFromMaskable extracts mask from an interface.
    func MaskFromMaskable(m Maskable) Mask {
    	return Mask(m.Mask())
    }
    
    // Contains returns whether *all* flags in other is present in t.
    func (t Mask) Contains(other Mask) bool {
    	return t&other == other
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jul 05 21:45:49 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  3. cmd/xl-storage_unix_test.go

    	"path"
    	"syscall"
    	"testing"
    )
    
    // Based on `man getumask` a vaporware GNU extension to glibc.
    // returns file mode creation mask.
    func getUmask() int {
    	mask := syscall.Umask(0)
    	syscall.Umask(mask)
    	return mask
    }
    
    // Tests if the directory and file creations happen with proper umask.
    func TestIsValidUmaskVol(t *testing.T) {
    	tmpPath := t.TempDir()
    	testCases := []struct {
    		volName       string
    		expectedUmask int
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 25 19:37:26 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/inline/inlheur/scoring.go

    				score, tmask = adjustScore(mayadj, score, tmask)
    			}
    			if pflag&ParamFeedsIndirectCall != 0 {
    				score, tmask = adjustScore(mustadj, score, tmask)
    			}
    		}
    	}
    
    	cs.Score, cs.ScoreMask = score, tmask
    }
    
    func adjustScore(typ scoreAdjustTyp, score int, mask scoreAdjustTyp) (int, scoreAdjustTyp) {
    
    	if isMust(typ) {
    		if mask&typ != 0 {
    			return score, mask
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  5. src/crypto/subtle/constant_time.go

    // takes any other value.
    func ConstantTimeCopy(v int, x, y []byte) {
    	if len(x) != len(y) {
    		panic("subtle: slices have different lengths")
    	}
    
    	xmask := byte(v - 1)
    	ymask := byte(^(v - 1))
    	for i := 0; i < len(x); i++ {
    		x[i] = x[i]&xmask | y[i]&ymask
    	}
    }
    
    // ConstantTimeLessOrEq returns 1 if x <= y and 0 otherwise.
    // Its behavior is undefined if x or y are negative or > 2**31 - 1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 01:54:27 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  6. src/cmd/go/go_unix_test.go

    	// Do not use tg.parallel; avoid other tests seeing umask manipulation.
    	mask := syscall.Umask(0077) // prohibit low bits
    	defer syscall.Umask(mask)
    
    	tg := testgo(t)
    	defer tg.cleanup()
    	tg.tempFile("x.go", `package main; func main() {}`)
    
    	// We have set a umask, but if the parent directory happens to have a default
    	// ACL, the umask may be ignored. To prevent spurious failures from an ACL,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 19 16:17:55 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. src/syscall/const_plan9.go

    )
    
    // Bind flags
    const (
    	MORDER  = 0x0003 // mask for bits defining order of mounting
    	MREPL   = 0x0000 // mount replaces object
    	MBEFORE = 0x0001 // mount goes before others in union directory
    	MAFTER  = 0x0002 // mount goes after others in union directory
    	MCREATE = 0x0004 // permit creation in mounted directory
    	MCACHE  = 0x0010 // cache some data
    	MMASK   = 0x0017 // all bits on
    )
    
    // Rfork flags
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 14:05:53 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. src/syscall/syscall_js.go

    	}
    	return groups, nil
    }
    
    func Getpid() int {
    	return jsProcess.Get("pid").Int()
    }
    
    func Getppid() int {
    	return jsProcess.Get("ppid").Int()
    }
    
    func Umask(mask int) (oldmask int) {
    	return jsProcess.Call("umask", mask).Int()
    }
    
    func Gettimeofday(tv *Timeval) error { return ENOSYS }
    
    func Kill(pid int, signum Signal) error { return ENOSYS }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. src/runtime/signal_unix.go

    // After this is called the thread can receive signals.
    func minitSignalMask() {
    	nmask := getg().m.sigmask
    	for i := range sigtable {
    		if !blockableSig(uint32(i)) {
    			sigdelset(&nmask, i)
    		}
    	}
    	sigprocmask(_SIG_SETMASK, &nmask, nil)
    }
    
    // unminitSignals is called from dropm, via unminit, to undo the
    // effect of calling minit on a non-Go thread.
    //
    //go:nosplit
    func unminitSignals() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  10. src/syscall/syscall_solaris.go

    type WaitStatus uint32
    
    const (
    	mask  = 0x7F
    	core  = 0x80
    	shift = 8
    
    	exited  = 0
    	stopped = 0x7F
    )
    
    func (w WaitStatus) Exited() bool { return w&mask == exited }
    
    func (w WaitStatus) ExitStatus() int {
    	if w&mask != exited {
    		return -1
    	}
    	return int(w >> shift)
    }
    
    func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != 0 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top