Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Edwards (0.18 sec)

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

      }
    
      @Test
      fun topPrivateDomain() {
        assertThat("https://google.com".toHttpUrl().topPrivateDomain())
          .isEqualTo("google.com")
        assertThat("https://adwords.google.co.uk".toHttpUrl().topPrivateDomain())
          .isEqualTo("google.co.uk")
        assertThat("https://栃.栃木.jp".toHttpUrl().topPrivateDomain())
          .isEqualTo("xn--ewv.xn--4pvxs.jp")
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 11.9K bytes
    - Viewed (0)
  2. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // Impertrix Solutions : <https://impertrixcdn.com>
    // Submitted by Zhixiang Zhao <******@****.***>
    impertrixcdn.com
    impertrix.com
    
    // Incsub, LLC: https://incsub.com/
    // Submitted by Aaron Edwards <******@****.***>
    smushcdn.com
    wphostedmail.com
    wpmucdn.com
    tempurl.host
    wpmudev.host
    
    // Individual Network Berlin e.V. : https://www.in-berlin.de/
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  3. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskLogger.kt

    ) {
      fine("${queue.name} ${String.format("%-22s", message)}: ${task.name}")
    }
    
    /**
     * Returns a duration in the nearest whole-number units like "999 µs" or "  1 s ". This rounds 0.5
     * units away from 0 and 0.499 towards 0. The smallest unit this returns is "µs"; the largest unit
     * it returns is "s". For values in [-499..499] this returns "  0 µs".
     *
     * The returned string attempts to be column-aligned to 6 characters. For negative and large values
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  4. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    218C..218F    ; disallowed                             # NA   <reserved-218C>..<reserved-218F>
    2190..21EA    ; valid                  ;      ; NV8    # 1.1  LEFTWARDS ARROW..UPWARDS WHITE ARROW FROM BAR
    21EB..21F3    ; valid                  ;      ; NV8    # 3.0  UPWARDS WHITE ARROW ON PEDESTAL..UP DOWN WHITE ARROW
    21F4..21FF    ; valid                  ;      ; NV8    # 3.2  RIGHT ARROW WITH SMALL CIRCLE..LEFT RIGHT OPEN-HEADED ARROW
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Feb 10 11:25:47 GMT 2024
    - 854.1K bytes
    - Viewed (2)
  5. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

       *
       * | URL                           | `topPrivateDomain()` |
       * | :---------------------------- | :------------------- |
       * | `http://google.com`           | `"google.com"`       |
       * | `http://adwords.google.co.uk` | `"google.co.uk"`     |
       * | `http://square`               | null                 |
       * | `http://co.uk`                | null                 |
       * | `http://localhost`            | null                 |
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Tue Jan 09 12:33:05 GMT 2024
    - 63.5K bytes
    - Viewed (1)
Back to top