Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for maybeByConstraint (0.17 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/AbstractDependencyMetadataRulesIntegrationTest.groovy

            def expectedVariant = variantToTest
            resolve.expectGraph {
                root(':', ':test:') {
                    edge('org.test:moduleB', 'org.test:moduleB:1.0') {
                        maybeByConstraint()
                    }
                    module("org.test:moduleA:1.0:$expectedVariant") {
                        if (thing == "dependencies") {
                            edge('org.test:moduleB:1.0', 'org.test:moduleB:1.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 36.5K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BomSupportPluginsSmokeTest.groovy

                    edge("junit:junit", "junit:junit:4.12", junitDeps).byReason(reason2)
                }
                nodes.each {
                    if (directBomDependency) {
                        it.maybeByConstraint()
                    } else if (reason1 == "requested") {
                        it.maybeSelectedByRule()
                    }
                }
            }
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveTestFixture.groovy

                this
            }
    
            NodeBuilder maybeByConflictResolution() {
                ignoreReasonPrefixes.add("conflict resolution")
                this
            }
    
            NodeBuilder maybeByConstraint() {
                ignoreReasonPrefixes.add("constraint")
                this
            }
    
            NodeBuilder maybeSelectedByRule() {
                ignoreReasonPrefixes.add("selected by rule")
                this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 37.8K bytes
    - Viewed (0)
Back to top