Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Scharf (0.13 sec)

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

          pos: Int,
          limit: Int,
        ): Int {
          if (limit - pos < 2) return -1
    
          val c0 = input[pos]
          if ((c0 < 'a' || c0 > 'z') && (c0 < 'A' || c0 > 'Z')) return -1 // Not a scheme start char.
    
          characters@ for (i in pos + 1 until limit) {
            return when (input[i]) {
              // Scheme character. Keep going.
              in 'a'..'z', in 'A'..'Z', in '0'..'9', '+', '-', '.' -> continue@characters
    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