Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 200 for Intersections (0.54 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/Intersections.java

            intersections.add(new IntersectAnyWithBaseSpec());
    
            intersections.add(new IntersectGroupWithGroup());
            intersections.add(new IntersectGroupWithModuleId());
            intersections.add(new IntersectGroupWithGroupSet());
            intersections.add(new IntersectGroupWithModuleIdSet());
            intersections.add(new IntersectGroupWithModule());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 21:03:05 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/NormalizingExcludeFactory.java

     */
    public class NormalizingExcludeFactory extends DelegatingExcludeFactory {
        private final Intersections intersections;
        private final Unions unions;
    
        public NormalizingExcludeFactory(ExcludeFactory delegate) {
            super(delegate);
            this.intersections = new Intersections(this);
            this.unions = new Unions(this);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.4K bytes
    - Viewed (0)
  3. 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)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/IntersectionsTest.groovy

    
    import spock.lang.Specification
    import spock.lang.Subject
    
    class IntersectionsTest extends Specification implements ExcludeTestSupport {
    
        @Subject
        private Intersections ops = new Intersections(factory)
    
        def "intersects identical specs"() {
            expect:
            ops.tryIntersect(spec, spec) == spec
    
            where:
            spec << [
                group("foo"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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: Mon Apr 01 16:15:01 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  10. 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)
Back to top