Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NormalizingExcludeFactory (0.56 sec)

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

     * It shouldn't be too slow, or the whole chain will pay the price.
     */
    public class NormalizingExcludeFactory extends DelegatingExcludeFactory {
        private final Intersections intersections;
        private final Unions unions;
    
        public NormalizingExcludeFactory(ExcludeFactory delegate) {
            super(delegate);
            this.intersections = new Intersections(this);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/IntersectionsTest.groovy

        }
    
        def "intersection of #one with #other = #expected using normalizing factory"() {
            given:
            factory = new NormalizingExcludeFactory(factory)
    
            expect:
            factory.allOf(one, other) == expected
            factory.allOf(other, one) == expected
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/NormalizingExcludeFactoryTest.groovy

    import spock.lang.Shared
    import spock.lang.Specification
    import spock.lang.Unroll
    
    class NormalizingExcludeFactoryTest extends Specification implements ExcludeTestSupport {
    
        def setup() {
            factory = new NormalizingExcludeFactory(factory)
        }
    
        @Shared
        private DefaultIvyArtifactName artifactName = new DefaultIvyArtifactName("a", "b", "c")
    
        @Unroll("#left ∪ #right = #expected")
        def "union of two elements"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K bytes
    - Viewed (0)
Back to top