Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for longestRunLength (0.23 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/-HostnamesCommon.kt

      var longestRunOffset = -1
      var longestRunLength = 0
      run {
        var i = 0
        while (i < address.size) {
          val currentRunOffset = i
          while (i < 16 && address[i].toInt() == 0 && address[i + 1].toInt() == 0) {
            i += 2
          }
          val currentRunLength = i - currentRunOffset
          if (currentRunLength > longestRunLength && currentRunLength >= 4) {
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 11.2K bytes
    - Viewed (0)
Back to top