Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 584 for MASK (0.04 sec)

  1. 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)
  2. pkg/kubelet/cm/topologymanager/bitmask/bitmask_test.go

    		},
    		{
    			name:    "Mask 11 AND mask 10",
    			masks:   [][]int{{0, 1}, {1}},
    			andMask: "10",
    		},
    		{
    			name:    "Mask 01 AND mask 11",
    			masks:   [][]int{{0}, {0, 1}},
    			andMask: "01",
    		},
    		{
    			name:    "Mask 11 AND mask 11 AND mask 10",
    			masks:   [][]int{{0, 1}, {0, 1}, {1}},
    			andMask: "10",
    		},
    		{
    			name:    "Mask 01 AND mask 01 AND mask 10 AND mask 11",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:09 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/topologymanager/bitmask/bitmask.go

    // lower-numbered bits set wins out.
    func (s *bitMask) IsNarrowerThan(mask BitMask) bool {
    	if s.Count() == mask.Count() {
    		return s.IsLessThan(mask)
    	}
    	return s.Count() < mask.Count()
    }
    
    // IsLessThan checks which bitmask has more lower-numbered bits set.
    func (s *bitMask) IsLessThan(mask BitMask) bool {
    	return *s < *mask.(*bitMask)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:09 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  4. internal/pubsub/pubsub.go

    	sub := &Sub[T]{ch: subCh, types: Mask(mask.Mask()), filter: filter}
    	ps.subs = append(ps.subs, sub)
    
    	// We hold a lock, so we are safe to update
    	combined := Mask(atomic.LoadUint64(&ps.types))
    	combined.Merge(Mask(mask.Mask()))
    	atomic.StoreUint64(&ps.types, uint64(combined))
    
    	go func() {
    		<-doneCh
    
    		ps.Lock()
    		defer ps.Unlock()
    		var remainTypes Mask
    		for i, s := range ps.subs {
    			if s == sub {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 16:57:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. src/runtime/os_linux_mipsx.go

    //go:nosplit
    //go:nowritebarrierrec
    func sigaddset(mask *sigset, i int) {
    	(*mask)[(i-1)/32] |= 1 << ((uint32(i) - 1) & 31)
    }
    
    func sigdelset(mask *sigset, i int) {
    	(*mask)[(i-1)/32] &^= 1 << ((uint32(i) - 1) & 31)
    }
    
    //go:nosplit
    func sigfillset(mask *[4]uint32) {
    	(*mask)[0], (*mask)[1], (*mask)[2], (*mask)[3] = ^uint32(0), ^uint32(0), ^uint32(0), ^uint32(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 987 bytes
    - Viewed (0)
  6. pkg/controller/nodeipam/ipam/cidrset/cidr_set.go

    	clusterCIDR *net.IPNet
    	// clusterMaskSize is the mask size, in bits, assigned to the cluster
    	// caches the mask size to avoid the penalty of calling clusterCIDR.Mask.Size()
    	clusterMaskSize int
    	// nodeMask is the network mask assigned to the nodes
    	nodeMask net.IPMask
    	// nodeMaskSize is the mask size, in bits,assigned to the nodes
    	// caches the mask size to avoid the penalty of calling nodeMask.Size()
    	nodeMaskSize int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 11 08:53:03 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/CompactHashing.java

      static int getHashPrefix(int value, int mask) {
        return value & ~mask;
      }
    
      /** Returns the index, or 0 if the entry is "null". */
      static int getNext(int entry, int mask) {
        return entry & mask;
      }
    
      /** Returns a new value combining the prefix and suffix using the given mask. */
      static int maskCombine(int prefix, int suffix, int mask) {
        return (prefix & ~mask) | (suffix & mask);
      }
    
      static int remove(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 02 21:41:22 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/sigprocmask.c

    #include <time.h>
    #include <unistd.h>
    
    extern void IntoGoAndBack();
    
    int CheckBlocked() {
    	sigset_t mask;
    	sigprocmask(SIG_BLOCK, NULL, &mask);
    	return sigismember(&mask, SIGIO);
    }
    
    static void* sigthreadfunc(void* unused) {
    	sigset_t mask;
    	sigemptyset(&mask);
    	sigaddset(&mask, SIGIO);
    	sigprocmask(SIG_BLOCK, &mask, NULL);
    	IntoGoAndBack();
    	return NULL;
    }
    
    int RunSigThread() {
    	int tries;
    	pthread_t thread;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. src/runtime/os_linux_mips64x.go

    //go:nosplit
    //go:nowritebarrierrec
    func sigaddset(mask *sigset, i int) {
    	(*mask)[(i-1)/64] |= 1 << ((uint32(i) - 1) & 63)
    }
    
    func sigdelset(mask *sigset, i int) {
    	(*mask)[(i-1)/64] &^= 1 << ((uint32(i) - 1) & 63)
    }
    
    //go:nosplit
    func sigfillset(mask *[2]uint64) {
    	(*mask)[0], (*mask)[1] = ^uint64(0), ^uint64(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 996 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/inline/inlheur/testdata/props/calls.go

    // {"Flags":0,"ParamFlags":[96,0],"ResultFlags":null}
    // callsite: calls.go:103:9|0 flagstr "" flagval 0 score 2 mask 0 maskstr ""
    // callsite: calls.go:112:9|1 flagstr "" flagval 0 score 2 mask 0 maskstr ""
    // callsite: calls.go:115:9|2 flagstr "" flagval 0 score 2 mask 0 maskstr ""
    // callsite: calls.go:119:12|3 flagstr "CallSiteOnPanicPath" flagval 2 score 102 mask 1 maskstr "panicPathAdj"
    // <endcallsites>
    // <endfuncpreamble>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top