Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for cacheOpened (0.37 sec)

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

            given:
            cacheOpened()
    
            when:
            cache.put("key", "value")
    
            then:
            1 * fileAccess.writeFile(!null) >> { Runnable action -> action.run() }
            1 * backingCache.put("key", "value")
            0 * _._
        }
    
        def "holds write lock while removing entry from cache"() {
            given:
            cacheOpened()
    
            when:
            cache.remove("key")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top