Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for isConfigCache (0.17 sec)

  1. platforms/core-runtime/base-services/src/integTest/groovy/org/gradle/internal/operations/BuildOperationExecutorIntegrationTest.groovy

        def "produces sensible error when there are failures both enqueuing and running operations" () {
            if (JavaVersion.current().isJava9Compatible() && GradleContextualExecuter.isConfigCache()) {
                // For java.util.concurrent.CountDownLatch being serialized reflectively by configuration cache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 12:12:49 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeleteTaskIntegrationTest.groovy

            result.groupedOutput.task(":clean").outcome == "UP-TO-DATE"
    
            // A first CC build may produce build/reports, which renders `clean` out-of-date
            if (GradleContextualExecuter.isConfigCache()) {
                def build = testDirectory.file("build")
                assert build.listFiles().size() == 1 && build.file("reports").exists()
                build.deleteDir()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesDuringTheBuildFileSystemWatchingIntegrationTest.groovy

            outputFile.text == "changedAgain"
            assertExpectedProjectFilesInVfs(2)
        }
    
        private void assertExpectedProjectFilesInVfs(int expected) {
            if (GradleContextualExecuter.isConfigCache()) {
                // Cc watches also settings.gradle and build.gradle, so they are added to VFS.
                expected += 2
            }
            assert getProjectFilesInVfs() == expected
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/typesafe/TypeSafeProjectAccessorsIntegrationTest.groovy

            //run second time
            when:
            inDirectory 'project'
            run 'help'
            then:
            if (GradleContextualExecuter.isConfigCache()) {
                outputDoesNotContain 'Project accessors enabled, but root project name not explicitly set for \'project\'.'
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:11:20 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/scaninfo/DaemonScanInfoIntegrationSpec.groovy

            def latch = new CountDownLatch(1)
            """
        }
    
        private void openJpmsModulesForConfigurationCache() {
            if (JavaVersion.current().isJava9Compatible() && GradleContextualExecuter.isConfigCache()) {
                // For java.util.concurrent.CountDownLatch being serialized reflectively by configuration cache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top