Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for exceptionRule (0.09 sec)

  1. okhttp/src/test/java/okhttp3/internal/publicsuffix/PublicSuffixDatabaseTest.kt

        assertThat(publicSuffixDatabase.getEffectiveTldPlusOne("ccc")).isNull()
        assertThat(publicSuffixDatabase.getEffectiveTldPlusOne("eee")).isNull()
      }
    
      @Test fun exceptionRule() {
        val exception =
          Buffer()
            .writeUtf8("my.square.jp\n")
        val buffer =
          Buffer()
            .writeUtf8("*.jp\n")
            .writeUtf8("*.square.jp\n")
            .writeUtf8("example.com\n")
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/MoreFiles.java

        if (!(exception instanceof NoSuchFileException)) {
          return null;
        }
        NoSuchFileException noSuchFileException = (NoSuchFileException) exception;
        String exceptionFile = noSuchFileException.getFile();
        if (exceptionFile == null) {
          /*
           * It's not clear whether this happens in practice, especially with the filesystem
           * implementations that are built into java.nio.
           */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 16:07:00 UTC 2024
    - 35K bytes
    - Viewed (0)
  3. guava/src/com/google/common/io/MoreFiles.java

        if (!(exception instanceof NoSuchFileException)) {
          return null;
        }
        NoSuchFileException noSuchFileException = (NoSuchFileException) exception;
        String exceptionFile = noSuchFileException.getFile();
        if (exceptionFile == null) {
          /*
           * It's not clear whether this happens in practice, especially with the filesystem
           * implementations that are built into java.nio.
           */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 16:07:00 UTC 2024
    - 34.5K bytes
    - Viewed (0)
Back to top