Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for notRequested (0.28 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDynamicRevisionMultiRepoResolveIntegrationTest.groovy

            run 'checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    edge("org.test:projectA:latest.milestone", "org.test:projectA:1.1") {
                        notRequested()
                        byReason("didn't match version 1.2")
                    }
                }
            }
    
            when:
            repo2.module('org.test', 'projectA', '1.3').withStatus("milestone").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenVersionRangeResolveIntegrationTest.groovy

                root(":", ":test:") {
                    edge("org.test:child:1.0", "org.test:child:1.0") {
                        edge("org.test:imported:[2.0,3.0)", "org.test:imported:2.1") {
                            notRequested()
                            byReason("didn't match version 3.0")
                            artifact(type: 'pom')
                            edge("org.test:dep:2.1", "org.test:dep:2.1")
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/dependencies/MatchType.java

     */
    
    package org.gradle.api.tasks.diagnostics.internal.dependencies;
    
    public enum MatchType {
        /**
         * The attribute was not requested by the configuration.
         */
        NOT_REQUESTED,
        /**
         * The attribute was requested by the configuration, but the actual value was <strong>incompatible</strong> with
         * the configuration's requested value.
         */
        INCOMPATIBLE,
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 22 19:19:36 UTC 2022
    - 1.3K bytes
    - Viewed (0)
Back to top