Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 61 for mask1b (0.16 sec)

  1. android/guava/src/com/google/common/collect/CompactHashMap.java

        int hash = smearedHash(key);
        int mask = hashTableMask();
        int tableIndex = hash & mask;
        int next = CompactHashing.tableGet(requireTable(), tableIndex);
        if (next == UNSET) { // uninitialized bucket
          if (newSize > mask) {
            // Resize and add new entry
            mask = resizeTable(mask, CompactHashing.newCapacity(mask), hash, newEntryIndex);
          } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/CompactHashMap.java

        int hash = smearedHash(key);
        int mask = hashTableMask();
        int tableIndex = hash & mask;
        int next = CompactHashing.tableGet(requireTable(), tableIndex);
        if (next == UNSET) { // uninitialized bucket
          if (newSize > mask) {
            // Resize and add new entry
            mask = resizeTable(mask, CompactHashing.newCapacity(mask), hash, newEntryIndex);
          } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/library/cost_test.go

    			expectEsimatedCost: func(c checker.CostEstimate) checker.CostEstimate { return c },
    			expectRuntimeCost:  func(c uint64) uint64 { return c },
    		},
    		{
    			ops: []string{".ip()", ".prefixLength()", ".masked()"},
    			// For most other operations, the cost is expected to be the base + 1.
    			expectEsimatedCost: func(c checker.CostEstimate) checker.CostEstimate {
    				return checker.CostEstimate{Min: c.Min + 1, Max: c.Max + 1}
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  4. src/runtime/mgcsweep.go

    //
    // Every potential sweeper must call begin() before they look
    // for work, and end() after they've finished sweeping.
    type activeSweep struct {
    	// state is divided into two parts.
    	//
    	// The top bit (masked by sweepDrainedMask) is a boolean
    	// value indicating whether all the sweep work has been
    	// drained from the queue.
    	//
    	// The rest of the bits are a counter, indicating the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/link.go

    			break
    		}
    	}
    }
    
    func (a *Attribute) ABI() ABI { return ABI(a.load() / attrABIBase) }
    func (a *Attribute) SetABI(abi ABI) {
    	const mask = 1 // Only one ABI bit for now.
    	for {
    		v0 := a.load()
    		v := (v0 &^ (mask * attrABIBase)) | Attribute(abi)*attrABIBase
    		if atomic.CompareAndSwapUint32((*uint32)(a), uint32(v0), uint32(v)) {
    			break
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    turn t==="-webkit-"&&(r=r.replace("border","box-image")),r}};wl.names=["mask-border","mask-border-source","mask-border-slice","mask-border-width","mask-border-outset","mask-border-repeat","mask-box-image","mask-box-image-source","mask-box-image-slice","mask-box-image-width","mask-box-image-outset","mask-box-image-repeat"];ly.exports=wl});var cy=v((U4,fy)=>{l();var UA=M(),Ne=class extends UA{insert(e,t,r){let n=e.prop==="mask-composite",a;n?a=e.value.split(","):a=e.value.match(Ne.regexp)||[],a=a....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  7. internal/grid/connection.go

    		bts[1] = 127
    		binary.BigEndian.PutUint64(bts[2:10], uint64(f.Header.Length))
    		n = 10
    
    	default:
    		return ws.ErrHeaderLengthUnexpected
    	}
    
    	if f.Header.Masked {
    		bts[1] |= bit0
    		n += copy(bts[n:], f.Header.Mask[:])
    	}
    
    	if _, err := w.Write(bts[:n]); err != nil {
    		return err
    	}
    
    	_, err := w.Write(f.Payload)
    	return err
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener.go

    			if err != nil {
    				continue
    			}
    			if prefix.Addr().String() == constants.UnspecifiedIP {
    				continue
    			}
    
    			if s == "*" {
    				continue
    			}
    			res.Insert(prefix.Masked().String())
    		}
    		return res
    	}
    	return cidrSet(a.destinationCIDRs).Equals(cidrSet(b.destinationCIDRs))
    }
    
    func (chain *filterChainOpts) toFilterChainMatch() *listener.FilterChainMatch {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. cmd/kubelet/app/server.go

    			}
    
    			// make the kubelet's config safe for logging
    			config := kubeletServer.KubeletConfiguration.DeepCopy()
    			for k := range config.StaticPodURLHeader {
    				config.StaticPodURLHeader[k] = []string{"<masked>"}
    			}
    			// log the kubelet's config for inspection
    			klog.V(5).InfoS("KubeletConfiguration", "configuration", klog.Format(config))
    
    			// set up signal context for kubelet shutdown
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/asm9.go

    			v = 0
    		} else if v > 32 {
    			v = 32
    		}
    		var mask [2]uint8
    		switch p.As {
    		case AROTLW:
    			mask[0], mask[1] = 0, 31
    		case ASRW, ASRWCC:
    			mask[0], mask[1] = uint8(v), 31
    			v = 32 - v
    		default:
    			mask[0], mask[1] = 0, uint8(31-v)
    		}
    		o1 = OP_RLW(OP_RLWINM, uint32(p.To.Reg), uint32(r), uint32(v), uint32(mask[0]), uint32(mask[1]))
    		if p.As == ASLWCC || p.As == ASRWCC {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
Back to top