Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getEffectiveTldPlusOne (0.1 sec)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt

       * | `http://127.0.0.1`            | null                 |
       */
      fun topPrivateDomain(): String? =
        if (host.canParseAsIpAddress()) {
          null
        } else {
          PublicSuffixDatabase.get().getEffectiveTldPlusOne(host)
        }
    
      @JvmName("-deprecated_url")
      @Deprecated(
        message = "moved to toUrl()",
        replaceWith = ReplaceWith(expression = "toUrl()"),
        level = DeprecationLevel.ERROR,
      )
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 63.5K bytes
    - Viewed (0)
Back to top