Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for notRequested (0.14 sec)

  1. 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)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ProjectDependencyResolveIntegrationTest.groovy

                root(":b", "test:b:") {
                    project(":a", 'test:a:') {
                        notRequested()
                        byReason('can provide a dependency reason for project dependencies too')
                        variant('runtime')
                        module('org.other:externalA:1.2') {
                            notRequested()
                            byReason('also check dependency reasons')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyResolveIntegrationTest.groovy

                    edge('org:foo', 'org:foo:1.0') {
                        configuration('alice')
                        byConstraint()
                        module('org:bar:1.0') {
                            notRequested()
                            byAncestor()
                            byConstraint()
                            configuration('extra')
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 13:59:13 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/PublishedRichVersionConstraintsIntegrationTest.groovy

                    edge("org:foo:{strictly [1.0,1.2]}", "org:foo:1.2")
                    edge('org:bar:1.0', 'org:bar:1.0') {
                        edge("org:foo:{strictly [1.1,1.3]}", "org:foo:1.2") {
                            notRequested()
                            byAncestor()
                            byReason("didn't match version 1.3")
                        }
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDynamicRevisionRemoteResolveIntegrationTest.groovy

            then:
            succeeds "checkDeps"
            resolve.expectGraph {
                root(":", ":test:") {
                    edge("org.test:projectA:1.+", "org.test:projectA:1.2") {
                        notRequested()
                        byReason("didn't match version 2.1")
                    }
                }
            }
    
            when:
            server.resetExpectations()
            projectA21.ivy.expectGet()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 41.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module("org:a:1.0") {
                        edge("org:leaf:[2,6]", "org:leaf:5") {
                            notRequested()
                            byReason("didn't match versions 10, 9, 8, 7")
                            byReason("didn't match versions 10, 9, 8, 7, 6")
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                    constraint("org.gradle.test:lib-ext:{strictly [1.0,1.1)}", "org.gradle.test:lib-ext:1.0")
                    edge("org.gradle.test:lib-core:1.+", "org.gradle.test:lib-core:1.0") {
                        notRequested()
                        byReasons(["rejected version 1.1", "constraint"])
                    }
                    edge("org.gradle.test:lib-ext", "org.gradle.test:lib-ext:1.0") {
                        byConstraint()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveTestFixture.groovy

             * Marks that this node was selected by the given reason
             */
            NodeBuilder byReason(String reason) {
                reasons << reason
                this
            }
    
            NodeBuilder notRequested() {
                reasons.remove('requested')
                this
            }
    
            NodeBuilder maybeRequested() {
                ignoreRequested = true
                ignoreReasons.add('requested')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  9. 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)
  10. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyInsightReportTask.java

                    return new AttributeMatchDetails(MatchType.INCOMPATIBLE, requested, requestedValue);
                }
            }
            return new AttributeMatchDetails(MatchType.NOT_REQUESTED, null, null);
        }
    
        private static final class RootDependencyRenderer implements NodeRenderer {
            private final DependencyInsightReportTask task;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
Back to top