Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for Intersections (0.31 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. src/internal/types/testdata/examples/constraints.go

    // appear in the interface doesn't matter since intersection is a symmetric
    // operation.
    
    type myInt1 int
    type myInt2 int
    
    func _[T interface{ myInt1|myInt2; ~int }]() T { return T(0) }
    func _[T interface{ ~int; myInt1|myInt2 }]() T { return T(0) }
    
    // Here the intersections are empty - there's no type that's in the type set of T.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/Intersection.java

     *
     * @implSpec Remember that the order of the exclude specs must not be significant.
     */
    @NonNullApi
    public interface Intersection<L extends ExcludeSpec, R extends ExcludeSpec> {
        /**
         * Tests if this intersection applies to 2 given exclude specs (in any order).
         *
         * An intersection should apply if the given exclude specs are of the expected generic types on this interface,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 21:03:05 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. 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)
  7. staging/src/k8s.io/apimachinery/pkg/util/sets/set_test.go

    		},
    	}
    
    	for _, test := range tests {
    		intersection := test.s1.Intersection(test.s2)
    		if intersection.Len() != test.expected.Len() {
    			t.Errorf("Expected intersection.Len()=%d but got %d", test.expected.Len(), intersection.Len())
    		}
    
    		if !intersection.Equal(test.expected) {
    			t.Errorf("Expected intersection.Equal(expected) but not true.  intersection:%v expected:%v", intersection.List(), test.expected.List())
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 8K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestFramework.java

        }
    
        private void validateOptions() {
            Set<String> intersection = Sets.newHashSet(options.getIncludeCategories());
            intersection.retainAll(options.getExcludeCategories());
            if (!intersection.isEmpty()) {
                if (intersection.size() == 1) {
                    LOGGER.warn("The category '" + intersection.iterator().next() + "' is both included and excluded.  " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestFramework.java

        }
    
        private void validateOptions() {
            Set<String> intersection = Sets.newHashSet(options.getIncludeTags());
            intersection.retainAll(options.getExcludeTags());
            if (!intersection.isEmpty()) {
                if (intersection.size() == 1) {
                    LOGGER.warn("The tag '" + intersection.iterator().next() + "' is both included and excluded.  " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/sets/set_generic_test.go

    	}
    
    	for _, test := range tests {
    		intersection := test.s1.Intersection(test.s2)
    		if intersection.Len() != test.expected.Len() {
    			t.Errorf("Expected intersection.Len()=%d but got %d", test.expected.Len(), intersection.Len())
    		}
    
    		if !intersection.Equal(test.expected) {
    			t.Errorf("Expected intersection.Equal(expected) but not true.  intersection:%v expected:%v", sets.List(intersection), sets.List(intersection))
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 09:03:44 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top