Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for enableFeaturePreview (0.39 sec)

  1. settings.gradle.kts

    unassigned {
        subproject("internal-build-reports")
    }
    
    rootProject.name = "gradle"
    
    FeaturePreviews.Feature.values().forEach { feature ->
        if (feature.isActive) {
            enableFeaturePreview(feature.name)
        }
    }
    
    fun remoteBuildCacheEnabled(settings: Settings) = settings.buildCache.remote?.isEnabled == true
    
    fun getBuildJavaHome() = System.getProperty("java.home")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildServiceIntegrationTest.groovy

            withCountingServicePlugin(true, propertyAnnotations)
            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