Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for fun (0.11 sec)

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

       */
      fun newBuilder(link: String): Builder? {
        return try {
          Builder().parse(this, link)
        } catch (_: IllegalArgumentException) {
          null
        }
      }
    
      override fun equals(other: Any?): Boolean {
        return other is HttpUrl && other.url == url
      }
    
      override fun hashCode(): Int = url.hashCode()
    
      override fun toString(): String = url
    
      /**
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Tue Jan 09 12:33:05 GMT 2024
    - 63.5K bytes
    - Viewed (1)
Back to top