Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for turkey (0.12 sec)

  1. android/guava/src/com/google/common/util/concurrent/Futures.java

          if (wrapper.getCause() instanceof Error) {
            throw new ExecutionError((Error) wrapper.getCause());
          }
          /*
           * It's an Exception. (Or it's a non-Error, non-Exception Throwable. From my survey of such
           * classes, I believe that most users intended to extend Exception, so we'll treat it like an
           * Exception.)
           */
          throw new UncheckedExecutionException(wrapper.getCause());
        }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 64.3K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/internal/cache/DiskLruCacheTest.kt

      fun keyWithCarriageReturnNotPermitted(parameters: Pair<FileSystem, Boolean>) {
        setUp(parameters.first, parameters.second)
        assertFailsWith<IllegalArgumentException> {
          cache.edit("my\rkey")
        }
      }
    
      @ParameterizedTest
      @ArgumentsSource(FileSystemParamProvider::class)
      fun createNewEntryWithTooFewValuesFails(parameters: Pair<FileSystem, Boolean>) {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 75.7K bytes
    - Viewed (0)
Back to top