Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for markCacheForCleanup (0.22 sec)

  1. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultPersistentDirectoryStoreTest.groovy

            when:
            store.open()
            store.close()
    
            then:
            0 * _  // Does not call initialization or cleanup action.
            gcFile.assertIsFile()
    
            when:
            markCacheForCleanup(gcFile)
            def modificationTimeBefore = gcFile.lastModified()
            store.open()
            store.close()
    
            then:
            gcFile.lastModified() > modificationTimeBefore
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:40:49 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top