Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for Intersections (0.58 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/admission.go

    	if len(enablePlugins.Intersection(disablePlugins).List()) > 0 {
    		errs = append(errs, fmt.Errorf("%v in enable-admission-plugins and disable-admission-plugins "+
    			"overlapped", enablePlugins.Intersection(disablePlugins).List()))
    	}
    
    	// Verify RecommendedPluginOrder.
    	recommendPlugins := sets.NewString(a.RecommendedPluginOrder...)
    	intersections := registeredPlugins.Intersection(recommendPlugins)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 12 08:49:42 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolDeclarationOverridesProvider.kt

                return callableSymbol.getAllOverriddenSymbols()
            }
            (callableSymbol.firSymbol as? FirIntersectionCallableSymbol)?.let { intersectionSymbol ->
                return intersectionSymbol.intersections.flatMap {
                    getAllOverriddenSymbols(analysisSession.firSymbolBuilder.callableBuilder.buildCallableSymbol(it))
                }
            }
    
            val overriddenElement = mutableSetOf<FirCallableSymbol<*>>()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. cmd/net.go

    	}
    
    	nonInterIPV4s := mustGetLocalIP4().Intersection(hostIPs)
    	if nonInterIPV4s.IsEmpty() {
    		hostIPs = hostIPs.ApplyFunc(func(ip string) string {
    			if net.ParseIP(ip).IsLoopback() {
    				// Any loopback IP which is not 127.0.0.1
    				// convert it to check for intersections.
    				return "127.0.0.1"
    			}
    			return ip
    		})
    		nonInterIPV4s = mustGetLocalIP4().Intersection(hostIPs)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ImmutableRangeSet.java

            && ranges.get(ceilingIndex).isConnected(otherRange)
            && !ranges.get(ceilingIndex).intersection(otherRange).isEmpty()) {
          return true;
        }
        return ceilingIndex > 0
            && ranges.get(ceilingIndex - 1).isConnected(otherRange)
            && !ranges.get(ceilingIndex - 1).intersection(otherRange).isEmpty();
      }
    
      @Override
      public boolean encloses(Range<C> otherRange) {
        int index =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/isolation.yaml.golden

    kind: VirtualService
    metadata:
      annotations:
        internal.istio.io/parents: HTTPRoute/attaches-to-abc-foo-example-com-with-hostname-intersection.gateway-conformance-infra
        internal.istio.io/route-semantics: gateway
      creationTimestamp: null
      name: attaches-to-abc-foo-example-com-with-hostname-intersection-0-istio-autogenerated-k8s-gateway
      namespace: gateway-conformance-infra
    spec:
      gateways:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/deployment/builder.go

    				for name := range data.RawTemplates {
    					t.Insert(name)
    				}
    				// either intersection has not been set or we intersect these templates
    				// with the current set.
    				if intersection.IsEmpty() {
    					intersection = t
    				} else {
    					intersection = intersection.Intersection(t)
    				}
    			}
    		}
    		for name := range intersection {
    			out[c.Name()].Insert(name)
    		}
    	}
    
    	return out, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/isolation.yaml

          allowedRoutes:
            namespaces:
              from: All
    ---
    apiVersion: gateway.networking.k8s.io/v1
    kind: HTTPRoute
    metadata:
      name: attaches-to-empty-hostname-with-hostname-intersection
      namespace: gateway-conformance-infra
    spec:
      parentRefs:
        - name: isolation
          namespace: gateway-conformance-infra
          sectionName: empty-hostname
      hostnames:
        - "bar.com"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/isolation.status.yaml.golden

          kind: GRPCRoute
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      creationTimestamp: null
      name: attaches-to-abc-foo-example-com-with-hostname-intersection
      namespace: gateway-conformance-infra
    spec: null
    status:
      parents:
      - conditions:
        - lastTransitionTime: fake
          message: Route was valid
          reason: Accepted
          status: "True"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/sets/set.go

    	result := s1.Clone()
    	for key := range s2 {
    		result.Insert(key)
    	}
    	return result
    }
    
    // Intersection returns a new set which includes the item in BOTH s1 and s2
    // For example:
    // s1 = {a1, a2}
    // s2 = {a2, a3}
    // s1.Intersection(s2) = {a2}
    func (s1 Set[T]) Intersection(s2 Set[T]) Set[T] {
    	var walk, other Set[T]
    	result := New[T]()
    	if s1.Len() < s2.Len() {
    		walk = s1
    		other = s2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 19:51:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/TreeRangeMap.java

          if (subRange.contains(key)) {
            Entry<Range<K>, V> entry = TreeRangeMap.this.getEntry(key);
            if (entry != null) {
              return Maps.immutableEntry(entry.getKey().intersection(subRange), entry.getValue());
            }
          }
          return null;
        }
    
        @Override
        public Range<K> span() {
          Cut<K> lowerBound;
          Entry<Cut<K>, RangeMapEntry<K, V>> lowerEntry =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 04 14:31:50 UTC 2024
    - 25.7K bytes
    - Viewed (0)
Back to top