Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for churn (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. manifests/charts/istio-control/istio-discovery/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
    - 21.1K bytes
    - Viewed (0)
  10. src/syscall/syscall_linux_test.go

    		{call: "Setresuid(0,0,0)", fn: func() error { return syscall.Setresuid(0, 0, 0) }, filter: "Uid:", expect: "\t0\t0\t0\t0"},
    	}
    
    	for i, v := range vs {
    		// Generate some thread churn as we execute the tests.
    		c := make(chan struct{})
    		go killAThread(c)
    		close(c)
    
    		if err := v.fn(); err != nil {
    			t.Errorf("[%d] %q failed: %v", i, v.call, err)
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top