Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for latencies (0.16 sec)

  1. src/runtime/runtime2.go

    	// latencies, defined as the time taken by stopTheWorldWithSema to get
    	// all Ps to stop. stwStoppingTimeGC covers all GC-related STWs,
    	// stwStoppingTimeOther covers the others.
    	stwStoppingTimeGC    timeHistogram
    	stwStoppingTimeOther timeHistogram
    
    	// stwTotalTimeGC/Other are distributions of stop-the-world total
    	// latencies, defined as the total time from stopTheWorldWithSema to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  2. pilot/pkg/xds/ads.go

    	// configuration. This is an additional safety check inaddition to adding
    	// cachesSynced logic to readiness probe to handle cases where kube-proxy
    	// ip tables update latencies.
    	// See https://github.com/istio/istio/issues/25495.
    	if !s.IsServerReady() {
    		return status.Error(codes.Unavailable, "server is not ready to serve discovery information")
    	}
    
    	ctx := stream.Context()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. pilot/pkg/xds/delta.go

    	// configuration. This is an additional safety check inaddition to adding
    	// cachesSynced logic to readiness probe to handle cases where kube-proxy
    	// ip tables update latencies.
    	// See https://github.com/istio/istio/issues/25495.
    	if !s.IsServerReady() {
    		return errors.New("server is not ready to serve discovery information")
    	}
    
    	ctx := stream.Context()
    	peerAddr := "0.0.0.0"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    			Help:      "Response latency distribution in seconds for each verb, dry run value, group, version, resource, subresource, scope and component.",
    			// This metric is used for verifying api call latencies SLO,
    			// as well as tracking regressions in this aspects.
    			// Thus we customize buckets significantly, to empower both usecases.
    			Buckets: []float64{0.005, 0.025, 0.05, 0.1, 0.2, 0.4, 0.6, 0.8, 1.0, 1.25, 1.5, 2, 3,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
  5. src/runtime/mgcsweep.go

    		// at the end of every batch. Furthermore, it only yields its time if there
    		// isn't spare idle time available on other cores. If there's available idle
    		// time, helping to sweep can reduce allocation latencies by getting ahead of
    		// the proportional sweeper and having spans ready to go for allocation.
    		const sweepBatchSize = 10
    		nSwept := 0
    		for sweepone() != ^uintptr(0) {
    			nSwept++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    ```
    
    Failing to specify the region-specific endpoint for buckets requiring V4 signatures means:
    
    * 3 round-trips to AWS, as opposed to one, for every file upload and download.
    * Depending on location - increased network latencies and slower builds.
    * Increased likelihood of transmission failures.
    --
    
    [[sub:s3_cross_account]]
    ==== AWS S3 Cross Account Access
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
Back to top