Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 503 for Percent (0.32 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. src/html/template/content_test.go

    		{
    			`<img srcset="{{.}}">`,
    			[]string{
    				`#ZgotmplZ`,
    				`#ZgotmplZ`,
    				// Commas are not escaped.
    				`Hello,#ZgotmplZ`,
    				// Leading spaces are not percent escapes.
    				` dir=%22ltr%22`,
    				// Spaces after commas are not percent escaped.
    				`#ZgotmplZ, World!%22%29;`,
    				`Hello,#ZgotmplZ`,
    				`greeting=H%69%2c&amp;addressee=%28World%29`,
    				// Metadata is not escaped.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 13.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    eturn this.selSlides}},{name:"dragstart",handler:function(t){t.preventDefault()}}],methods:{start:function(){var t=this;this.drag=this.pos,this._transitioner?(this.percent=this._transitioner.percent(),this.drag+=this._transitioner.getDistance()*this.percent*this.dir,this._transitioner.cancel(),this._transitioner.translate(this.percent),this.dragging=!0,this.stack=[]):this.prevIndex=this.index;var e="touchmove"!=gt?Ut(document,gt,this.move,{passive:!1}):et;this.unbindMove=function(){e(),t.unbindM...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  5. src/encoding/json/stream_test.go

    			break
    		}
    	}
    }
    
    func TestEncoderErrorAndReuseEncodeState(t *testing.T) {
    	// Disable the GC temporarily to prevent encodeState's in Pool being cleaned away during the test.
    	percent := debug.SetGCPercent(-1)
    	defer debug.SetGCPercent(percent)
    
    	// Trigger an error in Marshal with cyclic data.
    	type Dummy struct {
    		Name string
    		Next *Dummy
    	}
    	dummy := Dummy{Name: "Dummy"}
    	dummy.Next = &dummy
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 16:00:37 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/html/template/url.go

    		// so can be safely encoded.
    		case '!', '#', '$', '&', '*', '+', ',', '/', ':', ';', '=', '?', '@', '[', ']':
    			if norm {
    				continue
    			}
    		// Unreserved according to RFC 3986 sec 2.3
    		// "For consistency, percent-encoded octets in the ranges of
    		// ALPHA (%41-%5A and %61-%7A), DIGIT (%30-%39), hyphen (%2D),
    		// period (%2E), underscore (%5F), or tilde (%7E) should not be
    		// created by URI producers
    		case '-', '.', '_', '~':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  9. 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)
  10. pilot/pkg/networking/grpcgen/grpcecho_test.go

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: echo-delay
    spec:
      hosts:
      - echo-app.default.svc.cluster.local
      http:
      - fault:
          delay:
            percent: 100
            fixedDelay: 100ms
        route:
        - destination:
            host: echo-app.default.svc.cluster.local
    `,
    	}, echoCfg{version: "v1"})
    	c := tt.dialEcho("xds:///echo-app.default.svc.cluster.local:7071")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top