Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Point (0.17 sec)

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

        ): Int {
          return try {
            // Canonicalize the port string to skip '\n' etc.
            val portString = input.canonicalize(pos = pos, limit = limit, encodeSet = "")
            val i = portString.toInt()
            if (i in 1..65535) i else -1
          } catch (_: NumberFormatException) {
            -1 // Invalid port.
          }
        }
      }
    
      companion object {
    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