Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for 20dp (0.14 sec)

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

       * | `http://host/`                   | `""`                |
       * | `http://username@host/`          | `""`                |
       * | `http://username:password@host/` | `"password"`        |
       * | `http://a%20b:c%20d@host/`       | `"c%20d"`           |
       */
      @get:JvmName("encodedPassword")
      val encodedPassword: String
        get() {
          if (password.isEmpty()) return ""
          val passwordStart = url.indexOf(':', scheme.length + 3) + 1
    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