Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 128 for Percent (0.22 sec)

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

    	}
    }
    
    func configureSampling(hcmTracing *hcm.HttpConnectionManager_Tracing, providerPercentage float64) {
    	hcmTracing.ClientSampling = &xdstype.Percent{
    		Value: 100.0,
    	}
    	hcmTracing.OverallSampling = &xdstype.Percent{
    		Value: 100.0,
    	}
    	hcmTracing.RandomSampling = &xdstype.Percent{
    		Value: providerPercentage,
    	}
    }
    
    func proxyConfigSamplingValue(config *meshconfig.ProxyConfig) float64 {
    	// PILOT_TRACE_SAMPLING
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/tracing_test.go

    	t := &hcm.HttpConnectionManager_Tracing{
    		ClientSampling: &xdstype.Percent{
    			Value: 100.0,
    		},
    		OverallSampling: &xdstype.Percent{
    			Value: 100.0,
    		},
    		RandomSampling: &xdstype.Percent{
    			Value: randomSampling,
    		},
    		CustomTags: tags,
    	}
    	if maxLen != 0 {
    		t.MaxPathTagLength = wrapperspb.UInt32(maxLen)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 20:47:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_traffic_policy.go

    	// end points when load balancer is in panic mode.
    	if features.SendUnhealthyEndpoints.Load() {
    		c.CommonLbConfig.HealthyPanicThreshold = &xdstype.Percent{Value: 0}
    	}
    	localityLbSetting := loadbalancer.GetLocalityLbSetting(meshConfig.GetLocalityLbSetting(), lb.GetLocalityLbSetting())
    	if localityLbSetting != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/types.go

    	// imageGCHighThresholdPercent is the percent of disk usage after which
    	// image garbage collection is always run. The percent is calculated as
    	// this field value out of 100.
    	ImageGCHighThresholdPercent int32
    	// imageGCLowThresholdPercent is the percent of disk usage before which
    	// image garbage collection is never run. Lowest disk usage to garbage
    	// collect to. The percent is calculated as this field value out of 100.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

      }
    
      // percentText returns text that displays v in appropriate units alongside its
      // percentange.
      function percentText(v) {
        function percent(v, total) {
          return Number(((100.0 * v) / total).toFixed(1)) + '%';
        }
        return unitText(v) + " (" + percent(v, stacks.Total) + ")";
      }
    
      // unitText returns a formatted string to display for value.
      function unitText(value) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/wrapper-main/src/executable/resources/META-INF/LICENSE

          "control" means (i) the power, direct or indirect, to cause the
          direction or management of such entity, whether by contract or
          otherwise, or (ii) ownership of fifty percent (50%) or more of the
          outstanding shares, or (iii) beneficial ownership of such entity.
    
          "You" (or "Your") shall mean an individual or Legal Entity
          exercising permissions granted by this License.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/staticinit/sched.go

    func (s *Schedule) append(n ir.Node) {
    	s.Out = append(s.Out, n)
    }
    
    // StaticInit adds an initialization statement n to the schedule.
    func (s *Schedule) StaticInit(n ir.Node) {
    	if !s.tryStaticInit(n) {
    		if base.Flag.Percent != 0 {
    			ir.Dump("StaticInit failed", n)
    		}
    		s.append(n)
    	}
    }
    
    // varToMapInit holds book-keeping state for global map initialization;
    // it records the init function created by the compiler to host the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  8. src/fmt/scan.go

    }
    
    const (
    	floatVerbs = "beEfFgGv"
    
    	hugeWid = 1 << 30
    
    	intBits     = 32 << (^uint(0) >> 63)
    	uintptrBits = 32 << (^uintptr(0) >> 63)
    )
    
    // scanPercent scans a literal percent character.
    func (s *ss) scanPercent() {
    	s.SkipSpace()
    	s.notEOF()
    	if !s.accept("%") {
    		s.errorString("missing literal %")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  9. src/net/url/url.go

    			// in the host component %-encoding can only be used
    			// for non-ASCII bytes.
    			// But https://tools.ietf.org/html/rfc6874#section-2
    			// introduces %25 being allowed to escape a percent sign
    			// in IPv6 scoped-address literals. Yay.
    			if mode == encodeHost && unhex(s[i+1]) < 8 && s[i:i+3] != "%25" {
    				return "", EscapeError(s[i : i+3])
    			}
    			if mode == encodeZone {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  10. LICENSES/vendor/k8s.io/gengo/v2/LICENSE

          "control" means (i) the power, direct or indirect, to cause the
          direction or management of such entity, whether by contract or
          otherwise, or (ii) ownership of fifty percent (50%) or more of the
          outstanding shares, or (iii) beneficial ownership of such entity.
    
          "You" (or "Your") shall mean an individual or Legal Entity
          exercising permissions granted by this License.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:39 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top