Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for STABLE_CONFIGURATION_CACHE (0.69 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/service/scopes/BuildScopeServices.java

                services,
                listenerManager,
                isolatableFactory,
                sharedResourceLeaseRegistry,
                featureFlags.isEnabled(FeaturePreviews.Feature.STABLE_CONFIGURATION_CACHE)
                    ? new BuildServiceProviderNagger(services.get(WorkExecutionTracker.class))
                    : BuildServiceProvider.Listener.EMPTY
            );
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            """
    
            expect:
            succeeds("hello")
        }
    
        private void enableStableConfigurationCache() {
            settingsFile '''
                enableFeaturePreview 'STABLE_CONFIGURATION_CACHE'
            '''
        }
    
        private void adhocTaskUsingUndeclaredService(Integer maxParallelUsages) {
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    include::sample[dir="snippets/configurationCache/stableFeatureFlag/kotlin",files="settings.gradle.kts[]"]
    include::sample[dir="snippets/configurationCache/stableFeatureFlag/groovy",files="settings.gradle[]"]
    ====
    
    The `STABLE_CONFIGURATION_CACHE` feature flag enables the following:
    
    Undeclared shared build service usage::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    With the configuration cache promotion to a stable feature in Gradle 8.1, this error is detected regardless of the feature preview status.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top