Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for makecache (0.17 sec)

  1. okhttp/src/test/java/okhttp3/EventListenerTest.kt

          .containsExactly("CallStart", "CacheHit", "CallEnd")
      }
    
      private fun enableCache(): Cache? {
        cache = makeCache()
        client = client.newBuilder().cache(cache).build()
        return cache
      }
    
      private fun makeCache(): Cache {
        val cacheDir = File.createTempFile("cache-", ".dir")
        cacheDir.delete()
        return Cache(cacheDir, (1024 * 1024).toLong())
      }
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 56.9K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.13.md

       * -viper-config can be used to select a file with full path, with or without file suffix
       * the csiImageVersion/Registry flags were renamed to storage.csi.imageVersion/Registry
    * Move FakeCache to pkg/scheduler/internal/cache/fake. ([#69318](https://github.com/kubernetes/kubernetes/pull/69318), [@wgliang](https://github.com/wgliang))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu May 05 13:44:43 GMT 2022
    - 273.1K bytes
    - Viewed (0)
Back to top