Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 366 for wren (0.22 sec)

  1. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

        }
    
        def "finalizer dependency runs even when finalizer does not run when dependency is also an entry task"() {
            given:
            Task finalizerDepDep = task("finalizerDepDep", type: Async)
            Task finalizerDep = task("finalizerDep", type: Async, dependsOn: [finalizerDepDep])
            Task finalizer = task("finalizer", type: Async, dependsOn: [finalizerDep])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

                    }
                }
            }
    
            when:
            run 'checkDeps'
    
            then:
            outputContains("Providing metadata for group:projectB:2.2")
            outputContains("Providing metadata for group:projectB:1.1")
    
            when:
            // stop the daemon to make sure that when we run the build again
            // it's fetched from the persistent cache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            setupBuildWithArtifactTransformOfProjectDependencies()
    
            when:
            configurationCacheRun(":resolve")
    
            then:
            assertTransformed("a.jar", "b.jar")
            outputContains("result = [a.jar.green, b.jar.green]")
    
            when:
            configurationCacheRun(":resolve")
    
            then: // everything is up-to-date
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            registry.addProvider(new StringProvider())
    
            when:
            registry.get(String)
    
            then:
            ServiceCreationException e = thrown()
            e.message == "Cannot create service of type String using method DefaultServiceRegistryTest\$StringProvider.createString() as required service of type Runnable for parameter #1 is not available."
    
            when:
            registry.get(Number)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

                }
            """
    
            when:
            fails ':a:checkDebug'
    
            then:
            failure.assertHasCause "Selected configuration 'someConf' on 'project :b' but it can't be used as a project dependency because it isn't intended for consumption by other components."
    
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

        def "does not nag when service is used by task without a corresponding usesService call and feature preview is NOT enabled"() {
            given:
            serviceImplementation()
            adhocTaskUsingUndeclaredService(1)
    
            when:
            succeeds 'broken'
    
            then:
            outputDoesNotContain "'Task#usesService'"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

                }
    """
    
            when:
            fails "checkDeps"
    
            then:
            failure.assertHasDescription("A problem occurred evaluating root project 'root'.")
            failure.assertHasCause("Must specify version for target of dependency substitution")
        }
    
        void "reasonable error message when attempting to create an invalid selector"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            }
    
            when:
            configurationCacheFails 'broken'
    
            then:
            def reportDir1 = reportDir()
            reportDir1?.isDirectory()
    
            when:
            configurationCacheFails 'alsoBroken'
    
            then:
            def reportDir2 = reportDir()
            reportDir2?.isDirectory()
            reportDir2 != reportDir1
    
            when:
            configurationCacheFails 'broken'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                        files.files
                    }
                }
            """
    
            when:
            fails 'checkDeps'
    
            then:
            failure.assertThatCause(containsString("Could not find any version that matches org:leaf:[11,15]."))
        }
    
        def "upgrades version when ranges are disjoint unless failOnVersionConflict is set"() {
            given:
            (1..10).each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                        assert dep.versionConstraint.requiredVersion == '1.0'
                    }
                }
            """
    
            when:
            run 'verifyExtension'
    
            then:
            operations.hasOperation("Executing generation of dependency accessors for libs")
    
            when: "no change in settings"
            run 'verifyExtension'
    
            then: "extension is not regenerated"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
Back to top