Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 41 for latencies (0.31 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)
  7. pkg/kubelet/kubelet.go

    	// Mutex to serialize new pod admission and existing pod resizing
    	podResizeMutex sync.Mutex
    
    	// OpenTelemetry Tracer
    	tracer trace.Tracer
    
    	// Track node startup latencies
    	nodeStartupLatencyTracker util.NodeStartupLatencyTracker
    }
    
    // ListPodStats is delegated to StatsProvider, which implements stats.Provider interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.26.md

    - A new `pod_status_sync_duration_seconds`...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.7.md

    * The Prometheus metrics for the kube-apiserver for tracking incoming API requests and latencies now return the subresource label for correctly attributing the type of API call. ([#46354](https://github.com/kubernetes/kubernetes/pull/46354), [@smarterclayton](https://github.com/smarterclayton))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.12.md

    - A kubelet parameter and config option has been added to change the CFS quota period from the default 100ms to some other value between 1µs and 1s. This was done to improve response latencies for workloads running in clusters with guaranteed and burstable QoS classes. ([#63437](https://github.com/kubernetes/kubernetes/pull/63437), [@szuecs](https://github.com/szuecs)) Courtesy of SIG API Machinery, SIG Apps, SIG Architecture, SIG CLI,,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
Back to top