Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 712 for Fmask (0.19 sec)

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

    type RtMsghdr struct {
    	Msglen   uint16
    	Version  uint8
    	Type     uint8
    	Hdrlen   uint16
    	Index    uint16
    	Tableid  uint16
    	Priority uint8
    	Mpls     uint8
    	Addrs    int32
    	Flags    int32
    	Fmask    int32
    	Pid      int32
    	Seq      int32
    	Errno    int32
    	Inits    uint32
    	Rmx      RtMetrics
    }
    
    type RtMetrics struct {
    	Pksent   uint64
    	Expire   int64
    	Locks    uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go

    type RtMsghdr struct {
    	Msglen   uint16
    	Version  uint8
    	Type     uint8
    	Hdrlen   uint16
    	Index    uint16
    	Tableid  uint16
    	Priority uint8
    	Mpls     uint8
    	Addrs    int32
    	Flags    int32
    	Fmask    int32
    	Pid      int32
    	Seq      int32
    	Errno    int32
    	Inits    uint32
    	Rmx      RtMetrics
    }
    
    type RtMetrics struct {
    	Pksent   uint64
    	Expire   int64
    	Locks    uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.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.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. test/iota.go

    	assert(q == 1.0, "q")
    	assert(r == 2.0, "r")
    
    	assert(s == "a", "s")
    	assert(t == "b", "t")
    
    	assert(abit == 1, "abit")
    	assert(amask == 0, "amask")
    	assert(bbit == 2, "bbit")
    	assert(bmask == 1, "bmask")
    	assert(cbit == 4, "cbit")
    	assert(cmask == 3, "cmask")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 07:47:26 UTC 2012
    - 1.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top