Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AnySet (0.18 sec)

  1. pkg/kubelet/cm/devicemanager/topology_hints.go

    			if !mask.AnySet(m.getNUMANodeIds(m.allDevices[resource][d].Topology)) {
    				return
    			}
    			numMatching++
    		}
    
    		// Finally, check to see if enough available devices remain on the
    		// current NUMA node combination to satisfy the device request.
    		for d := range available {
    			if mask.AnySet(m.getNUMANodeIds(m.allDevices[resource][d].Topology)) {
    				numMatching++
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. pilot/pkg/simulation/traffic.go

    	match func(fc *listener.FilterChainMatch) bool,
    ) []*listener.FilterChain {
    	res := []*listener.FilterChain{}
    	anySet := false
    	for _, c := range chains {
    		if !empty(c.GetFilterChainMatch()) {
    			anySet = true
    			break
    		}
    	}
    	if !anySet {
    		log.Debugf("%v: none set, skipping", desc)
    		return chains
    	}
    	for i, c := range chains {
    		if match(c.GetFilterChainMatch()) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top