Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for retainedFilesInCurrentBuild (0.26 sec)

  1. testing/soak/src/integTest/groovy/org/gradle/vfs/FileSystemWatchingSoakTest.groovy

            }
            boolean overflowDetected = detectOverflow(daemon, 0)
            // This needs to happen here, since retainedFilesInCurrentBuild looks at the log of the last executed build.
            int expectedNumberOfRetainedFiles = vfsLogs.retainedFilesInCurrentBuild - numberOfChangedSourcesFilesPerBatch
            then:
            succeeds("assemble")
            daemons.daemon.logFile == daemon.logFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/LoggingFileSystemWatchingIntegrationTest.groovy

            withWatchFs().run("assemble")
            waitForChangesToBePickedUp()
            def vfsLogs = enableVerboseVfsLogs()
            withWatchFs().run("assemble")
            then:
            vfsLogs.retainedFilesInCurrentBuild >= 4
            // Make sure the daemon is already idle before making the file changes
            daemon.becomesIdle()
    
            when:
            sourceFile.text = "public class MyClass { private void doStuff() {} }"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top