Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for skipAll (0.2 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/http/HttpHeaders.kt

        // It's a series of parameter names and values.
        val parameters = mutableMapOf<String?, String>()
        eqCount += skipAll('='.code.toByte())
        while (true) {
          if (peek == null) {
            peek = readToken()
            if (skipCommasAndWhitespace()) break // We peeked a scheme name followed by ','.
            eqCount = skipAll('='.code.toByte())
          }
          if (eqCount == 0) break // We peeked a scheme name.
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 7.2K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/http1/Http1ExchangeCodec.kt

    import okhttp3.internal.http.RequestLine
    import okhttp3.internal.http.StatusLine
    import okhttp3.internal.http.promisesBody
    import okhttp3.internal.http.receiveHeaders
    import okhttp3.internal.skipAll
    import okio.Buffer
    import okio.BufferedSink
    import okio.BufferedSource
    import okio.ForwardingTimeout
    import okio.Sink
    import okio.Source
    import okio.Timeout
    
    /**
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 16.2K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/-UtilJvm.kt

    /**
     * Reads until this is exhausted or the deadline has been reached. This is careful to not extend the
     * deadline if one exists already.
     */
    @Throws(IOException::class)
    internal fun Source.skipAll(
      duration: Int,
      timeUnit: TimeUnit,
    ): Boolean {
      val nowNs = System.nanoTime()
      val originalDurationNs =
        if (timeout().hasDeadline()) {
          timeout().deadlineNanoTime() - nowNs
        } else {
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Tue Jan 09 12:33:05 GMT 2024
    - 10.5K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/-UtilCommon.kt

    /** Run [block] until it either throws an [IOException] or completes. */
    internal inline fun ignoreIoExceptions(block: () -> Unit) {
      try {
        block()
      } catch (_: IOException) {
      }
    }
    
    internal fun Buffer.skipAll(b: Byte): Int {
      var count = 0
      while (!exhausted() && this[0] == b) {
        count++
        readByte()
      }
      return count
    }
    
    /**
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 11K bytes
    - Viewed (0)
  5. api/go1.20.txt

    pkg go/ast, type RangeStmt struct, Range token.Pos #50429
    pkg go/token, method (*FileSet) RemoveFile(*File) #53200
    pkg go/types, func Satisfies(Type, *Interface) bool #56548
    pkg io/fs, var SkipAll error #47209
    pkg io, func NewOffsetWriter(WriterAt, int64) *OffsetWriter #45899
    pkg io, method (*OffsetWriter) Seek(int64, int) (int64, error) #45899
    pkg io, method (*OffsetWriter) WriteAt([]uint8, int64) (int, error) #45899
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  6. licenses/github.com/hashicorp/go-multierror/LICENSE

       distributions of the Covered Software under this License. Except to the
       extent prohibited by statute or regulation, such description must be
       sufficiently detailed for a recipient of ordinary skill to be able to
       understand it.
    
    5. Termination
    
    5.1. The rights granted under this License will terminate automatically if You
         fail to comply with any of its terms. However, if You become compliant,
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  7. licenses/github.com/hashicorp/golang-lru/v2/LICENSE

       text file included with all distributions of the Covered Software under
       this License. Except to the extent prohibited by statute or regulation,
       such description must be sufficiently detailed for a recipient of ordinary
       skill to be able to understand it.
    
    5. Termination
    
    5.1. The rights granted under this License will terminate automatically if You
         fail to comply with any of its terms. However, if You become compliant,
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Feb 03 20:21:32 GMT 2023
    - 15.6K bytes
    - Viewed (0)
  8. licenses/github.com/hashicorp/errwrap/LICENSE

       distributions of the Covered Software under this License. Except to the
       extent prohibited by statute or regulation, such description must be
       sufficiently detailed for a recipient of ordinary skill to be able to
       understand it.
    
    5. Termination
    
    5.1. The rights granted under this License will terminate automatically if You
         fail to comply with any of its terms. However, if You become compliant,
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  9. licenses/github.com/hashicorp/hcl/LICENSE

       distributions of the Covered Software under this License. Except to the
       extent prohibited by statute or regulation, such description must be
       sufficiently detailed for a recipient of ordinary skill to be able to
       understand it.
    
    5. Termination
    
    5.1. The rights granted under this License will terminate automatically if You
         fail to comply with any of its terms. However, if You become compliant,
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  10. licenses/github.com/hashicorp/go-version/LICENSE

       distributions of the Covered Software under this License. Except to the
       extent prohibited by statute or regulation, such description must be
       sufficiently detailed for a recipient of ordinary skill to be able to
       understand it.
    
    5. Termination
    
    5.1. The rights granted under this License will terminate automatically if You
         fail to comply with any of its terms. However, if You become compliant,
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
Back to top