Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for Towns (0.15 sec)

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

    @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 {
          Long.MAX_VALUE
        }
      timeout().deadlineNanoTime(nowNs + minOf(originalDurationNs, timeUnit.toNanos(duration.toLong())))
      return try {
        val skipBuffer = Buffer()
    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)
  2. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnection.kt

        ) {
          return false
        }
    
        val http2Connection = this.http2Connection
        if (http2Connection != null) {
          return http2Connection.isHealthy(nowNs)
        }
    
        val idleDurationNs = lock.withLock { nowNs - idleAtNs }
        if (idleDurationNs >= IDLE_CONNECTION_HEALTHY_NS && doExtensiveChecks) {
          return socket.isHealthy(source)
        }
    
        return true
      }
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Apr 20 17:03:43 GMT 2024
    - 15.4K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/http/ExchangeCodec.kt

    import okhttp3.internal.connection.RealCall
    import okio.Sink
    import okio.Source
    
    /** Encodes HTTP requests and decodes HTTP responses. */
    interface ExchangeCodec {
      /** The connection or CONNECT tunnel that owns this codec. */
      val carrier: Carrier
    
      /** Returns an output stream where the request body can be streamed. */
      @Throws(IOException::class)
      fun createRequestBody(
        request: Request,
        contentLength: Long,
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 3K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Connection.kt

            okHttpSettings.merge(settings)
          }
          writer.settings(settings)
        }
      }
    
      fun isHealthy(nowNs: Long): Boolean {
        this.withLock {
          if (isShutdown) return false
    
          // A degraded pong is overdue.
          if (degradedPongsReceived < degradedPingsSent && nowNs >= degradedPongDeadlineNs) return false
    
          return true
        }
      }
    
      /**
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Apr 20 17:03:43 GMT 2024
    - 32.6K bytes
    - Viewed (0)
  5. licenses/github.com/hashicorp/errwrap/LICENSE

    Mozilla Public License, version 2.0
    
    1. Definitions
    
    1.1. “Contributor”
    
         means each individual or legal entity that creates, contributes to the
         creation of, or owns Covered Software.
    
    1.2. “Contributor Version”
    
         means the combination of the Contributions of others (if any) used by a
         Contributor and that particular Contributor’s Contribution.
    
    1.3. “Contribution”
    
    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)
  6. licenses/github.com/hashicorp/hcl/LICENSE

    Mozilla Public License, version 2.0
    
    1. Definitions
    
    1.1. “Contributor”
    
         means each individual or legal entity that creates, contributes to the
         creation of, or owns Covered Software.
    
    1.2. “Contributor Version”
    
         means the combination of the Contributions of others (if any) used by a
         Contributor and that particular Contributor’s Contribution.
    
    1.3. “Contribution”
    
    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/go-multierror/LICENSE

    Mozilla Public License, version 2.0
    
    1. Definitions
    
    1.1. “Contributor”
    
         means each individual or legal entity that creates, contributes to the
         creation of, or owns Covered Software.
    
    1.2. “Contributor Version”
    
         means the combination of the Contributions of others (if any) used by a
         Contributor and that particular Contributor’s Contribution.
    
    1.3. “Contribution”
    
    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)
  8. cmd/erasure.go

    			bucketCh <- b
    		}
    	}
    	xioutil.SafeClose(bucketCh)
    
    	bucketResults := make(chan dataUsageEntryInfo, len(disks))
    
    	// Start async collector/saver.
    	// This goroutine owns the cache.
    	var saverWg sync.WaitGroup
    	saverWg.Add(1)
    	go func() {
    		// Add jitter to the update time so multiple sets don't sync up.
    		updateTime := 30*time.Second + time.Duration(float64(10*time.Second)*rand.Float64())
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Apr 15 10:02:39 GMT 2024
    - 16K bytes
    - Viewed (1)
  9. licenses/github.com/hashicorp/golang-lru/v2/LICENSE

    Copyright (c) 2014 HashiCorp, Inc.
    
    Mozilla Public License, version 2.0
    
    1. Definitions
    
    1.1. "Contributor"
    
         means each individual or legal entity that creates, contributes to the
         creation of, or owns Covered Software.
    
    1.2. "Contributor Version"
    
         means the combination of the Contributions of others (if any) used by a
         Contributor and that particular Contributor's Contribution.
    
    1.3. "Contribution"
    
    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)
  10. android/guava/src/com/google/common/reflect/Invokable.java

     * the case. However, most methods from those types are present with the same signature in this
     * class.
     *
     * @param <T> the type that owns this method or constructor.
     * @param <R> the return type of (or supertype thereof) the method or the declaring type of the
     *     constructor.
     * @author Ben Yu
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Dec 14 20:35:03 GMT 2023
    - 18.6K bytes
    - Viewed (0)
Back to top