Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for readDecimalLong (0.06 sec)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cache.kt

            .toString()
            .encodeUtf8()
            .md5()
            .hex()
    
        @Throws(IOException::class)
        internal fun readInt(source: BufferedSource): Int {
          try {
            val result = source.readDecimalLong()
            val line = source.readUtf8LineStrict()
            if (result < 0L || result > Integer.MAX_VALUE || line.isNotEmpty()) {
              throw IOException("expected an int but was \"$result$line\"")
            }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 26.9K bytes
    - Viewed (0)
Back to top