Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for dumpling (0.12 sec)

  1. pilot/pkg/networking/core/listener_test.go

    		tproxy           *model.Proxy
    		envPilotSampling float64
    	}{
    		{
    			name:             "random-sampling-env",
    			tproxy:           getProxy(),
    			envPilotSampling: 80.0,
    			in: &meshconfig.Tracing{
    				Tracer:           nil,
    				CustomTags:       nil,
    				MaxPathTagLength: 0,
    				Sampling:         0,
    			},
    			out: &hcm.HttpConnectionManager_Tracing{
    				MaxPathTagLength: nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier.go

    			}
    		}
    
    		// If Cluster policy is in use, create the chain and create rules jumping
    		// from clusterPolicyChain to the clusterEndpoints
    		if usesClusterPolicyChain {
    			proxier.writeServiceToEndpointRules(tx, svcPortNameString, svcInfo, clusterPolicyChain, clusterEndpoints)
    		}
    
    		// If Local policy is in use, create rules jumping from localPolicyChain
    		// to the localEndpoints
    		if usesLocalPolicyChain {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  3. src/runtime/mprof.go

    		return false
    	}
    	return true
    }
    
    // saveblockevent records a profile event of the type specified by which.
    // cycles is the quantity associated with this event and rate is the sampling rate,
    // used to adjust the cycles value in the manner determined by the profile type.
    // skip is the number of frames to omit from the traceback associated with the event.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. cmd/xl-storage-format-v2.go

    	// Newer versions cannot be read by older software.
    	// This will prevent downgrades to incompatible versions.
    	xlVersionMajor = 1
    
    	// Non breaking changes.
    	// Bumping this is informational, but should be done
    	// if any change is made to the data stored, bumping this
    	// will allow to detect the exact version later.
    	xlVersionMinor = 3
    )
    
    func init() {
    	binary.LittleEndian.PutUint16(xlVersionCurrent[0:2], xlVersionMajor)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. pkg/proxy/iptables/proxier.go

    				"-m", "comment", "--comment", fmt.Sprintf(`"other traffic to %s will be dropped by KUBE-PROXY-FIREWALL"`, svcPortNameString),
    			)
    		}
    
    		// If Cluster policy is in use, create the chain and create rules jumping
    		// from clusterPolicyChain to the clusterEndpoints
    		if usesClusterPolicyChain {
    			natChains.Write(utiliptables.MakeChainLine(clusterPolicyChain))
    			activeNATChains.Insert(clusterPolicyChain)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/test.go

    		// We expect the test binary to terminate itself (and dump stacks) after
    		// exactly testTimeout. We give it up to one WaitDelay or one minute,
    		// whichever is longer, to finish dumping stacks before we send it an
    		// external signal: if the process has a lot of goroutines, dumping stacks
    		// after the timeout can take a while.
    		//
    		// After the signal is delivered, the test process may have up to one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.proto

      //
      // This can be set either to image name if hub is also set, or can be set to the full hub:name string.
      //
      // Examples: custom-pilot, docker.io/someuser:custom-pilot
      string image = 6;
    
      // Trace sampling fraction.
      //
      // Used to set the fraction of time that traces are sampled. Higher values are more accurate but add CPU overhead.
      //
      // Allowed values: 0.0 to 1.0
      double traceSampling = 8;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.31.md

    - This PR adds tracing support to the kubelet's read-only endpoint, which currently does not have tracing. It makes use the WithPublicEndpoint option to prevent callers from influencing sampling decisions. ([#121770](https://github.com/kubernetes/kubernetes/pull/121770), [@frzifus](https://github.com/frzifus)) [SIG Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  9. src/runtime/traceback.go

    // On return, u.frame contains:
    //   - fp is the stack pointer of the caller.
    //   - lr is the program counter that called fn.
    //   - varp, argp, and continpc are populated for the current frame.
    //
    // If fn is a stack-jumping function, resolveInternal can change the entire
    // frame state to follow that stack jump.
    //
    // This is internal to unwinder.
    func (u *unwinder) resolveInternal(innermost, isSyscall bool) {
    	frame := &u.frame
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. src/runtime/pprof/pprof_test.go

    					if seenNow {
    						t.Fatalf("unexpected recursive time.now")
    					}
    					seenNow = true
    				}
    			}
    		}
    	}
    }
    
    func TestProfilerStackDepth(t *testing.T) {
    	// Disable sampling, otherwise it's difficult to assert anything.
    	oldMemRate := runtime.MemProfileRate
    	runtime.MemProfileRate = 1
    	runtime.SetBlockProfileRate(1)
    	oldMutexRate := runtime.SetMutexProfileFraction(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
Back to top