Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for configCache (0.5 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheMissingScriptIntegrationTest.groovy

        def "picking up formerly-missing #missingScriptsSpec"() {
            given:
            def configCache = newConfigurationCacheFixture()
            def fixture = missingScriptsSpec.setUpFixtureFor(this)
    
            and:
            fixture.createInitialBuildLayout()
    
            when:
            configurationCacheRun 'ok'
    
            then:
            configCache.assertStateStored()
    
            when:
            fixture.addMissingScript()
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFlowScopeIntegrationTest.groovy

            given:
            def configCache = newConfigurationCacheFixture()
    
            and:
            withLavaLampPluginFor target, parameter, injectionStyle
    
            when: 'task runs successfully'
            configurationCacheRun 'help'
    
            then: 'flow action reacts to build result'
            configCache.assertStateStored(true)
            outputContains '(green)'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskInputFilePropertiesIntegrationTest.groovy

                task customTask(type: CustomTask) {
                    input = dependencyTask
                }
            """
    
            expect:
            fails "customTask"
            if(GradleContextualExecuter.configCache){
                failure.assertThatDescription(containsString("Task `:customTask` of type `CustomTask`: cannot serialize object of type 'org.gradle.api.DefaultTask', " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/build.gradle

            systemProperty("org.gradle.integtest.samples.checkLoadingFromConfigurationCache", "true")
            systemProperty("org.gradle.integtest.executer", "configCache")
    
            filter {
                // Configuration cache samples enable configuration cache explicitly. We're not going to run them with the configuration cache executer.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            def lib1Message = "Transforming lib1.jar with MakeGreen"
            def lib2Message = "Transforming lib2.jar with MakeGreen"
    
            then:
            if (!GradleContextualExecuter.configCache) {
                // Only runs once, as the transform execution in-memory cache is not discarded prior to execution time
                output.count(lib1Message) == 1
                output.count(lib2Message) == 1
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
Back to top