Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for enableFeaturePreview (0.51 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/FeaturePreviewsFixture.groovy

    class FeaturePreviewsFixture {
    
        static void enableGroovyCompilationAvoidance(File settings) {
            settings << """
    enableFeaturePreview('GROOVY_COMPILATION_AVOIDANCE')
    """
        }
    
        static void enableTypeSafeProjectAccessors(File settings) {
            settings << """
                enableFeaturePreview('TYPESAFE_PROJECT_ACCESSORS')
    """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1007 bytes
    - Viewed (0)
  2. 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)
  3. platforms/documentation/docs/src/snippets/groovy/incrementalCompilation/kotlin/settings.gradle.kts

    rootProject.name = "incremental-compilation"
    include("app")
    include("library")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 132 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/declaringDependencies-typeSafeProjectDependencies/groovy/settings.gradle

    rootProject.name = 'declaring-project-dependencies'
    include 'utils', 'api', 'web-service'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 141 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/groovy/compilationAvoidance/groovy/settings.gradle

    rootProject.name = 'compilation-avoidance'
    include("ast-transformation")
    include("ast-transformation-consumer")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 165 bytes
    - Viewed (0)
  6. 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
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. 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)
  8. platforms/documentation/docs/src/snippets/groovy/incrementalCompilation/groovy/settings.gradle

    rootProject.name = 'incremental-compilation'
    include("library")
    include("app")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 132 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/groovy/compilationAvoidance/kotlin/settings.gradle.kts

    rootProject.name = "compilation-avoidance"
    include("ast-transformation")
    include("ast-transformation-consumer")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 165 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/declaringDependencies-typeSafeProjectDependencies/kotlin/settings.gradle.kts

    rootProject.name = "declaring-project-dependencies"
    include("utils", "api", "web-service")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 143 bytes
    - Viewed (0)
Back to top