Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Schaab (0.29 sec)

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

              b: String,
            ): Int {
              var i = 4
              val limit = minOf(a.length, b.length)
              while (i < limit) {
                val charA = a[i]
                val charB = b[i]
                if (charA != charB) return if (charA < charB) -1 else 1
                i++
              }
              val lengthA = a.length
              val lengthB = b.length
              if (lengthA != lengthB) return if (lengthA < lengthB) -1 else 1
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 39.9K bytes
    - Viewed (1)
Back to top