Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for Percent (0.21 sec)

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

    				Sampling:         0,
    			},
    			out: &hcm.HttpConnectionManager_Tracing{
    				MaxPathTagLength: nil,
    				ClientSampling: &xdstype.Percent{
    					Value: 100.0,
    				},
    				RandomSampling: &xdstype.Percent{
    					Value: 80.0,
    				},
    				OverallSampling: &xdstype.Percent{
    					Value: 100.0,
    				},
    				CustomTags: customTracingTags(),
    			},
    		},
    		{
    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. pilot/pkg/networking/core/route/route.go

    	default:
    		// Default to 100 percent if percent is not given.
    		return &core.RuntimeFractionalPercent{
    			DefaultValue: translateIntegerToFractionalPercent(100),
    		}
    	}
    }
    
    // MirrorPercentByPolicy computes the mirror percent to be used based on HTTPMirrorPolicy.
    func MirrorPercentByPolicy(mirror *networking.HTTPMirrorPolicy) *core.RuntimeFractionalPercent {
    	switch {
    	case mirror.Percentage != nil:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

      }
    
      @Test
      fun usernameCharacters() {
        if (!isJvm) return // TODO: this test is broken on non-JVM platforms.
        UrlComponentEncodingTester.newInstance()
          .override(
            Encoding.PERCENT,
            '['.code,
            ']'.code,
            '{'.code,
            '}'.code,
            '|'.code,
            '^'.code,
            '\''.code,
            ';'.code,
            '='.code,
            '@'.code,
          )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     *
     * ### Percent encoding
     *
     * Percent encoding replaces a character (like `\ud83c\udf69`) with its UTF-8 hex bytes (like
     * `%F0%9F%8D%A9`). This approach works for whitespace characters, control characters, non-ASCII
     * characters, and characters that already have another meaning in a particular context.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  5. src/net/url/url_test.go

    	{
    		"http://[fe80::1%25%65%6e%301-._~]/", // percent-encoded+unreserved zone identifier
    		&URL{
    			Scheme: "http",
    			Host:   "[fe80::1%en01-._~]",
    			Path:   "/",
    		},
    		"http://[fe80::1%25en01-._~]/",
    	},
    	// host and port subcomponents; IPv6 address with zone identifier in RFC 6874
    	{
    		"http://[fe80::1%25%65%6e%301-._~]:8080/", // percent-encoded+unreserved zone identifier
    		&URL{
    			Scheme: "http",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // `updateStrategy.rollingUpdate.maxUnavailable` here:
      // https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/daemon-set-v1/#DaemonSetSpec).
      // May be specified as a number of pods or as a percent of the total number
      // of pods at the start of the update.
      IntOrString rollingMaxUnavailable = 23;
    }
    
    message CNIUsageConfig {
      // Controls whether CNI should be used.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  7. pkg/apis/autoscaling/validation/validation_test.go

    					Value:         7,
    					PeriodSeconds: 8,
    				}},
    			},
    		},
    		msg: `spec.behavior.scaleUp.policies[0].type: Unsupported value: "hm": supported values: "Percent", "Pods"`,
    	}, {
    		behavior: autoscaling.HorizontalPodAutoscalerBehavior{
    			ScaleUp: &autoscaling.HPAScalingRules{
    				Policies: []autoscaling.HPAScalingPolicy{{
    					Type:  autoscaling.PodsScalingPolicy,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  8. pilot/pkg/model/virtualservice_test.go

    			*r = networking.Destination{}
    		},
    		func(r *wrapperspb.UInt32Value, c fuzz.Continue) {
    			*r = wrapperspb.UInt32Value{}
    		},
    		func(r *networking.Percent, c fuzz.Continue) {
    			*r = networking.Percent{}
    		},
    		func(r *networking.CorsPolicy, c fuzz.Continue) {
    			*r = networking.CorsPolicy{}
    		},
    		func(r *networking.Headers, c fuzz.Continue) {
    			*r = networking.Headers{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue.go

    		o.metricsRecorder = recorder
    	}
    }
    
    // WithPluginMetricsSamplePercent sets the percentage of plugin metrics to be sampled.
    func WithPluginMetricsSamplePercent(percent int) Option {
    	return func(o *priorityQueueOptions) {
    		o.pluginMetricsSamplePercent = percent
    	}
    }
    
    var defaultPriorityQueueOptions = priorityQueueOptions{
    	clock:                             clock.RealClock{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    			schema: objectTypePtr(map[string]schema.Structural{
    				"something": withNullable(true, intOrStringType()),
    			}),
    			expectCost: map[string]int64{
    				"!has(self.something)": 2,
    			},
    		},
    		{name: "percent comparison using intOrString",
    			obj: map[string]interface{}{
    				"min":       "50%",
    				"current":   5,
    				"available": 10,
    			},
    			schema: objectTypePtr(map[string]schema.Structural{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
Back to top