Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 3,352 for Retries (0.19 sec)

  1. cmd/bucket-replication-metrics.go

    type InQueueStats struct {
    	nowBytes   int64 `json:"-"`
    	nowCount   int64 `json:"-"`
    	histCounts metrics.Histogram
    	histBytes  metrics.Histogram
    }
    
    func newInQueueStats(r metrics.Registry, lbl string) InQueueStats {
    	histCounts := metrics.NewHistogram(metrics.NewUniformSample(100))
    	histBytes := metrics.NewHistogram(metrics.NewUniformSample(100))
    
    	r.Register("replication.queue.counts."+lbl, histCounts)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  2. src/net/resolverdialfunc_test.go

    				t.Logf("Header: %+v for %q (type=%v, class=%v)", h,
    					q.Name.String(), q.Type, q.Class)
    			},
    			// TODO: add test without HandleA* hooks specified at all, that Go
    			// doesn't issue retries; map to something terminal.
    			HandleA: func(w AWriter, name string) error {
    				w.AddIP([4]byte{1, 2, 3, 4})
    				w.AddIP([4]byte{5, 6, 7, 8})
    				return nil
    			},
    			HandleAAAA: func(w AAAAWriter, name string) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. src/crypto/tls/ech.go

    				return false
    			}
    		}
    	}
    	return true
    }
    
    // ECHRejectionError is the error type returned when ECH is rejected by a remote
    // server. If the server offered a ECHConfigList to use for retries, the
    // RetryConfigList field will contain this list.
    //
    // The client may treat an ECHRejectionError with an empty set of RetryConfigs
    // as a secure signal from the server.
    type ECHRejectionError struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. cmd/data-usage-cache.go

    // dataUsageCacheV2 contains a cache of data usage entries version 2.
    type dataUsageCacheV2 struct {
    	Info  dataUsageCacheInfo
    	Cache map[string]dataUsageEntryV2
    }
    
    // dataUsageCacheV3 contains a cache of data usage entries version 3.
    type dataUsageCacheV3 struct {
    	Info  dataUsageCacheInfo
    	Cache map[string]dataUsageEntryV3
    }
    
    // dataUsageCacheV4 contains a cache of data usage entries version 4.
    type dataUsageCacheV4 struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 14:49:50 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  5. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                              type: string
                          type: object
                        retries:
                          description: Retry policy for HTTP requests.
                          properties:
                            attempts:
                              description: Number of retries to be allowed for a given
                                request.
                              format: int32
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  6. pkg/controller/nodelifecycle/scheduler/rate_limited_queue.go

    import (
    	"container/heap"
    	"sync"
    	"time"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/client-go/util/flowcontrol"
    	"k8s.io/klog/v2"
    )
    
    const (
    	// NodeHealthUpdateRetry controls the number of retries of writing
    	// node health update.
    	NodeHealthUpdateRetry = 5
    	// NodeEvictionPeriod controls how often NodeController will try to
    	// evict Pods from non-responsive Nodes.
    	NodeEvictionPeriod = 100 * time.Millisecond
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 07:50:01 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/SocketConnection.java

                BufferCaster.cast(buffer).flip();
                int count = writeWithNonBlockingRetry();
                if (count == 0) {
                    // buffer was still full after non-blocking retries, now block
                    waitForWriteBufferToDrain();
                }
                buffer.compact();
            }
    
            @SuppressWarnings("ThreadPriorityCheck")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. pilot/cmd/pilot-agent/options/options.go

    		"timeout per a HTTP request for pulling a Wasm module via http/https").Get()
    
    	wasmHTTPRequestMaxRetries = env.Register("WASM_HTTP_REQUEST_MAX_RETRIES", wasm.DefaultHTTPRequestMaxRetries,
    		"maximum number of HTTP/HTTPS request retries for pulling a Wasm module via http/https").Get()
    
    	enableWDSEnv = env.Register("PEER_METADATA_DISCOVERY", false,
    		"If set to true, enable the peer metadata discovery extension in Envoy").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 19:21:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/FastFallbackTest.kt

       *
       * https://github.com/square/okhttp/pull/7190
       */
      @Test
      fun preferCallConnectionOverDeferredConnection() {
        // Make sure we have enough connection options to permit retries.
        dnsResults =
          listOf(
            localhostIpv4,
            localhostIpv6,
            TestUtil.UNREACHABLE_ADDRESS_IPV4.address,
          )
        serverIpv4.protocols = listOf(Protocol.H2_PRIOR_KNOWLEDGE)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. src/runtime/metrics_test.go

    	// will not run during the idle period.
    	debug.FreeOSMemory()
    
    	for retries := 0; retries < maxFailures; retries++ {
    		// Read 1.
    		runtime.GC() // Update /cpu/classes metrics.
    		metrics.Read(m1)
    
    		// Sleep.
    		time.Sleep(dur)
    
    		// Read 2.
    		runtime.GC() // Update /cpu/classes metrics.
    		metrics.Read(m2)
    
    		dt := m2[0].Value.Float64() - m1[0].Value.Float64()
    		if dt >= minIdleCPUSeconds {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
Back to top