Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for churn (0.06 sec)

  1. releasenotes/notes/endpoint-before-pod.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issue:
    - 25112
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 170 bytes
    - Viewed (0)
  2. releasenotes/notes/backpressure.yaml

    kind: feature
    area: networking
    issue:
    - https://github.com/istio/istio/issues/25685
    releaseNotes:
    - |
      **Added** support for backpressure on XDS pushes to avoid overloading Envoy during periods of high configuration
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 27 23:24:27 UTC 2020
    - 376 bytes
    - Viewed (0)
  3. hack/tools/.gitignore

    /vendor/
    # avoid constant churn as this file is not kept in sync with the root
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 17:52:36 UTC 2024
    - 91 bytes
    - Viewed (0)
  4. releasenotes/notes/validating-webhook-reconcile-change.yaml

    kind: bug-fix
    area: traffic-management
    issue:
    - 32210
    releaseNotes:
    - |
      **Fixed** reconciliation logic in the validation webhook controller to rate-limit
      the retries in the loop. This should drastically reduce churn (and generated logs)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 23 19:06:28 UTC 2021
    - 302 bytes
    - Viewed (0)
  5. src/runtime/pprof/pprof_test.go

    			ready.Add(1)
    			var count int64
    			var churn func(i int)
    			churn = func(i int) {
    				SetGoroutineLabels(WithLabels(ctx, Labels("churn-i", fmt.Sprint(i))))
    				atomic.AddInt64(&count, 1)
    				if i == 0 {
    					ready.Done()
    				}
    				if ctx.Err() == nil {
    					go churn(i + 1)
    				}
    			}
    			go func() {
    				churn(0)
    			}()
    			ready.Wait()
    
    			fn(b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  6. hack/verify-golangci-lint.sh

            echo 'because the linter warns about them. Often they are harmless and not'
            echo 'worth the cost associated with a PR (time required to review, code churn).'
            echo 'Instead, propose to fix certain linter issues in an issue first and'
            echo 'discuss there with maintainers. PRs are welcome if they address a real'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

       * ThreadLocal; however, ThreadLocal is not well optimized for the case where the ThreadLocal is
       * non-static, and is initialized/removed frequently - this causes churn in the Thread specific
       * hashmaps. Using a static ThreadLocal to avoid that overhead would mean that different
       * ExecutionSequencer objects interfere with each other, which would be undesirable, in addition
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/values.yaml

        configSource:
          subscribedResources: []
        # The following is used to limit how long a sidecar can be connected
        # to a pilot. It balances out load across pilot instances at the cost of
        # increasing system churn.
        keepaliveMaxServerConnectionAge: 30m
        # Additional labels to apply to the deployment.
        deploymentLabels: {}
        ## Mesh config settings
    
        # Install the mesh config map, generated from values.yaml.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_traffic_policy.go

    		// defines the maximum number of parallel retries a given Envoy will allow to the upstream cluster. Envoy defaults
    		// this value to 3, however that has shown to be insufficient during periods of pod churn (e.g. rolling updates),
    		// where multiple endpoints in a cluster are terminated. In these scenarios the circuit breaker can kick
    		// in before Pilot is able to deliver an updated endpoint list to Envoy, leading to client-facing 503s.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/value.go

    // unlike copyIntoWithXPos this does not check for v.Pos being a statement.
    func (v *Value) copyInto(b *Block) *Value {
    	c := b.NewValue0(v.Pos.WithNotStmt(), v.Op, v.Type) // Lose the position, this causes line number churn otherwise.
    	c.Aux = v.Aux
    	c.AuxInt = v.AuxInt
    	c.AddArgs(v.Args...)
    	for _, a := range v.Args {
    		if a.Type.IsMemory() {
    			v.Fatalf("can't move a value with a memory arg %s", v.LongString())
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top