Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for IsClosed (0.29 sec)

  1. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

      @ArgumentsSource(FileSystemParamProvider::class)
      fun isClosed_uninitializedCache(parameters: Pair<FileSystem, Boolean>) {
        setUp(parameters.first, parameters.second)
        // Create an uninitialized cache.
        cache =
          DiskLruCache(filesystem, cacheDir, appVersion, 2, Int.MAX_VALUE.toLong(), taskRunner).also {
            toClose.add(it)
          }
        assertThat(cache.isClosed()).isFalse()
        cache.close()
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Apr 15 14:55:09 GMT 2024
    - 75.8K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

      static void assertClosed(TestCloseable closeable1, TestCloseable... moreCloseables)
          throws IOException {
        for (TestCloseable closeable : asList(closeable1, moreCloseables)) {
          assertWithMessage("%s.isClosed()", closeable).that(closeable.awaitClosed()).isTrue();
        }
      }
    
      private ClosingFuture<Object> failedClosingFuture() {
        return ClosingFuture.from(immediateFailedFuture(exception));
      }
    
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:15:24 GMT 2024
    - 75.3K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

      static void assertClosed(TestCloseable closeable1, TestCloseable... moreCloseables)
          throws IOException {
        for (TestCloseable closeable : asList(closeable1, moreCloseables)) {
          assertWithMessage("%s.isClosed()", closeable).that(closeable.awaitClosed()).isTrue();
        }
      }
    
      private ClosingFuture<Object> failedClosingFuture() {
        return ClosingFuture.from(immediateFailedFuture(exception));
      }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:15:24 GMT 2024
    - 74.7K bytes
    - Viewed (0)
  4. okhttp/api/okhttp.api

    	public final fun directoryPath ()Lokio/Path;
    	public final fun evictAll ()V
    	public fun flush ()V
    	public final fun hitCount ()I
    	public final fun initialize ()V
    	public final fun isClosed ()Z
    	public static final fun key (Lokhttp3/HttpUrl;)Ljava/lang/String;
    	public final fun maxSize ()J
    	public final fun networkCount ()I
    	public final fun requestCount ()I
    	public final fun size ()J
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Apr 15 13:41:01 GMT 2024
    - 70.2K bytes
    - Viewed (0)
Back to top