Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 63 for Intersections (0.22 sec)

  1. pkg/scheduler/framework/plugins/volumebinding/binder.go

    			} else {
    				// for subsequent finding of eligible nodes for the local PersistentVolume,
    				// take the intersection of the nodes with the existing eligible nodes
    				// for cases if PV1 has node affinity to node1 and PV2 has node affinity to node2,
    				// then the eligible node list should be empty.
    				eligibleNodes = eligibleNodes.Intersection(sets.New(nodeNames...))
    			}
    		}
    	}
    
    	if len(errs) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    	// More than one predecessor
    
    	if updating {
    		// After the first approximation, i.e., when updating, results
    		// can only get smaller, because initially backedge
    		// predecessors do not participate in the intersection.  This
    		// means that for the update, given the prior approximation of
    		// startState, there is no need to re-intersect with unchanged
    		// blocks.  Therefore remove unchanged blocks from the
    		// predecessor list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

            ImmutableSet<Attribute<?>> firstKeys = firstAttributes.keySet();
            ImmutableSet<Attribute<?>> secondKeys = secondAttributes.keySet();
            for (Attribute<?> attribute : Sets.intersection(firstKeys, secondKeys)) {
                CompatibilityRule<Object> rule = consumerSchema.compatibilityRules(attribute);
                Object v1 = firstAttributes.getAttribute(attribute);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/CollectionUtils.java

            }
            List<T> list = new ArrayList<T>();
            for (T thing : things) {
                list.add(thing);
            }
            return list;
        }
    
    
        public static <T> List<T> intersection(Collection<? extends Collection<T>> availableValuesByDescriptor) {
            List<T> result = new ArrayList<T>();
            Iterator<? extends Collection<T>> iterator = availableValuesByDescriptor.iterator();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                }
            }
        }
    
        def "chooses highest version that is included in both ranges, with the highest version in the intersection missing"() {
            given:
            (1..10).findAll {
                // We skip v6, as we test what happens when the top version of the intersection is missing
                it != 6
            }.each {
                mavenRepo.module("org", "leaf", "$it").publish()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/devicemanager/manager_test.go

    	as.True(initCont2Devices.IsSuperset(initCont1Devices))
    	as.True(initCont2Devices.IsSuperset(normalCont1Devices))
    	as.True(initCont2Devices.IsSuperset(normalCont2Devices))
    	as.Equal(0, normalCont1Devices.Intersection(normalCont2Devices).Len())
    }
    
    func TestRestartableInitContainerDeviceAllocation(t *testing.T) {
    	// Requesting to create a pod that requests resourceName1 in restartable
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  7. pkg/volume/util/util.go

    			if matchExpr.Key == v1.LabelHostname && matchExpr.Operator == v1.NodeSelectorOpIn {
    				if nodes == nil {
    					nodes = sets.New(matchExpr.Values...)
    				} else {
    					nodes = nodes.Intersection(sets.New(matchExpr.Values...))
    				}
    			}
    		}
    		result = result.Union(nodes)
    	}
    
    	return sets.List(result)
    }
    
    // GetPodVolumeNames returns names of volumes that are used in a pod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  8. ChangeLog.md

    - [`KT-66120`](https://youtrack.jetbrains.com/issue/KT-66120) IrFakeOverrideBuilder: wrong return type in intersection with 3 classes
    - [`KT-65939`](https://youtrack.jetbrains.com/issue/KT-65939) IrFakeOverrideBuilder - nullability annotation is lost in intersection without annotation
    - [`KT-59473`](https://youtrack.jetbrains.com/issue/KT-59473) K2: build firebase-kotlin-sdk
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  9. cmd/endpoint.go

    						}
    						hostIPCache[host] = hostIPSet
    					}
    				}
    				if IPSet, ok := pathIPMap[endpoint.Path]; ok {
    					if !IPSet.Intersection(hostIPSet).IsEmpty() {
    						return nil, setupType,
    							config.ErrInvalidErasureEndpoints(nil).Msg(fmt.Sprintf("same path '%s' can not be served by different port on same address", endpoint.Path))
    					}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/interface.go

    	r := PreFilterResult{}
    	if p.AllNodes() {
    		r.NodeNames = in.NodeNames.Clone()
    		return &r
    	}
    	if in.AllNodes() {
    		r.NodeNames = p.NodeNames.Clone()
    		return &r
    	}
    
    	r.NodeNames = p.NodeNames.Intersection(in.NodeNames)
    	return &r
    }
    
    type NominatingMode int
    
    const (
    	ModeNoop NominatingMode = iota
    	ModeOverride
    )
    
    type NominatingInfo struct {
    	NominatedNodeName string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
Back to top