Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for notRequested (0.41 sec)

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

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

                        constraint('org:foo:{strictly 1.0}', 'org:foo:1.0')
                    }
                    edge('org:bar', 'org:bar:1.0') {
                        edge('org:foo:2.0', 'org:foo:1.0') {
                            notRequested()
                            byConstraint()
                            byAncestor()
                        }
                    }
                }
            }
        }
    
        void "can deal with platform upgrades"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/StrictVersionConstraintsIntegrationTest.groovy

            }
            run ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(':', ':test:') {
                    constraint('org:foo:{strictly 1.0}', 'org:foo:1.0') {
                        notRequested()
                        byConstraint()
                        byAncestor()
                    }
                    module('org:bar:1.0') {
                        edge('org:foo:2.0', 'org:foo:1.0')
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  4. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/integtests/resolve/consistency/JavaProjectResolutionConsistencyIntegrationTest.groovy

                root(':', ':test:') {
                    module('org:foo:1.0') {
                        byConsistentResolution('compileClasspath')
                        module("org:transitive:1.0") {
                            notRequested()
                            byConsistentResolution('compileClasspath')
                            byAncestor()
                        }
                    }
                    module('org:bar:1.0') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/AbstractRichVersionConstraintsIntegrationTest.groovy

                    constraint("org:foo:{prefer 1.0.0}", "org:foo:1.1.0")
                    constraint("org:foo:{prefer 1.1.0}", "org:foo:1.1.0")
                    edge("org:foo:[1.0.0,2.0.0)", "org:foo:1.1.0") {
                        notRequested()
                        byConstraint()
                        byReason("didn't match version 2.0.0")
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 15:37:32 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/consistency/ProjectLocalDependencyResolutionConsistencyIntegrationTest.groovy

                            byAncestor()
                            notRequested()
                            module("org:transitive:1.0") {
                                byConsistentResolution('compileClasspath')
                                byAncestor()
                                notRequested()
                            }
                        }
                    }
                    module('org:bar:1.0') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/StrictVersionsInPlatformCentricDevelopmentIntegrationTest.groovy

                            forced()
                        }
                        edge('org:foo:3.1', 'org:foo:3.0') {
                            if (platformType != ENFORCED_PLATFORM) {
                                notRequested()
                                byAncestor()
                            } else {
                                forced()
                            }
                        }
                    }
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/AbstractDependencyMetadataRulesIntegrationTest.groovy

                            module("org.test:moduleB:1.0") {
                                notRequested()
                                byReason('can set a custom reason in a rule')
                                edge("org.test:moduleC:1.0", "org.test:moduleC:1.1") {
                                    notRequested()
                                    byAncestor()
                                    byConstraint("1.0 is buggy")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 36.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/StrictVersionConstraintsFeatureInteractionIntegrationTest.groovy

                root(':', ':test:') {
                    constraint('org:foo:{strictly 1.0}', 'org:foo:1.0')
                    module('org:bar:1.0') {
                        edge('org:foo:2.0', 'org:foo:1.0') {
                            notRequested()
                            byAncestor()
                            byConstraint()
                        }
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 15K bytes
    - Viewed (0)
  10. 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)
Back to top