Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for STABLE_CONFIGURATION_CACHE (0.48 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DeprecatedFeaturesListener.kt

    package org.gradle.internal.cc.impl
    
    import org.gradle.api.internal.BuildScopeListenerRegistrationListener
    import org.gradle.api.internal.FeaturePreviews
    import org.gradle.api.internal.FeaturePreviews.Feature.STABLE_CONFIGURATION_CACHE
    import org.gradle.api.internal.TaskInternal
    import org.gradle.api.internal.tasks.execution.TaskExecutionAccessListener
    import org.gradle.execution.ExecutionAccessListener
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskActionIntegrationTest.groovy

        @UnsupportedWithConfigurationCache(because = "tests unsupported behaviour")
        def "nags when task action uses Task.project and feature preview is enabled"() {
            settingsFile """
                enableFeaturePreview 'STABLE_CONFIGURATION_CACHE'
            """
            buildFile """
                task broken {
                    doLast {
                        project
                    }
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/configurationCache/stableFeatureFlag/groovy/settings.gradle

    enableFeaturePreview "STABLE_CONFIGURATION_CACHE"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 50 bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/events/BuildExecutionEventsIntegrationTest.groovy

        @UnsupportedWithConfigurationCache(because = "tests listener behaviour")
        def "nags when #type is registered via #path and feature preview is enabled"() {
            settingsFile """
                enableFeaturePreview 'STABLE_CONFIGURATION_CACHE'
            """
            buildFile """
                def taskExecutionListener = new TaskExecutionListener() {
                    void beforeExecute(Task task) { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/configurationCache/stableFeatureFlag/kotlin/settings.gradle.kts

    enableFeaturePreview("STABLE_CONFIGURATION_CACHE")...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 51 bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFeatureFlagsIntegrationTest.groovy

                task check {}
            """
    
            when:
            configurationCacheRunLenient "check"
    
            then:
            configurationCache.assertStateStored()
    
            when:
            configurationCacheRunLenient "-D${FeaturePreviews.Feature.STABLE_CONFIGURATION_CACHE.systemPropertyName}=true", "check"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/FeaturePreviews.java

         */
        public enum Feature implements FeatureFlag {
            GROOVY_COMPILATION_AVOIDANCE(true, null),
            TYPESAFE_PROJECT_ACCESSORS(true, null),
            STABLE_CONFIGURATION_CACHE(true, "org.gradle.configuration-cache.stable");
    
            public static Feature withName(String name) {
                try {
                    return valueOf(name);
                } catch (IllegalArgumentException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 14 08:15:13 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestEventsIntegrationTest.groovy

        def "nags when #type is registered via gradle.addListener() and feature preview is enabled"() {
            settingsFile """
                enableFeaturePreview 'STABLE_CONFIGURATION_CACHE'
            """
            buildFile """
                def testListener = new TestListener() {
                    void beforeSuite(TestDescriptor suite) {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheStableConfigurationCacheIntegrationTest.groovy

    class ConfigurationCacheStableConfigurationCacheIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        def setup() {
            settingsFile '''
                enableFeaturePreview 'STABLE_CONFIGURATION_CACHE'
            '''
        }
    
        def 'external processes at configuration time are reported as problems'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildServiceIntegrationTest.groovy

            file('settings.gradle') << """
                pluginManagement {
                    includeBuild 'counting-service-plugin'
                }
                enableFeaturePreview 'STABLE_CONFIGURATION_CACHE'
            """
            file('build.gradle') << """
                plugins { id 'counting-service-plugin' version '1.0' }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 11:47:23 UTC 2024
    - 29.1K bytes
    - Viewed (0)
Back to top