Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fromUnion (0.17 sec)

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

                    Set<ExcludeSpec> remainderRight = Sets.newHashSet(rightComponents);
                    remainderRight.removeAll(common);
    
                    ExcludeSpec unionLeft = factory.fromUnion(remainderLeft);
                    ExcludeSpec unionRight = factory.fromUnion(remainderRight);
                    ExcludeSpec beta = factory.allOf(unionLeft, unionRight);
                    return factory.anyOf(alpha, beta);
                } else {
    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/ExcludeFactory.java

        ModuleIdSetExclude moduleIdSet(Set<ModuleIdentifier> modules);
    
        GroupSetExclude groupSet(Set<String> groups);
    
        ModuleSetExclude moduleSet(Set<String> modules);
    
        default ExcludeSpec fromUnion(Set<ExcludeSpec> remainder) {
            if (remainder.isEmpty()) {
                // It's an intersection, and this method is always called on the remainder
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 17:19:13 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top