Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for Percent (0.44 sec)

  1. pkg/config/validation/validation_test.go

    			Percentage: &networking.Percent{
    				Value: 0.001,
    			},
    			ErrorType: &networking.HTTPFaultInjection_Abort_HttpStatus{
    				HttpStatus: 200,
    			},
    		}, valid: true},
    		{name: "invalid fractional percent", in: &networking.HTTPFaultInjection_Abort{
    			Percentage: &networking.Percent{
    				Value: -10.0,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/horizontal_test.go

    			autoscalingv2.HPAScalingPolicy{Type: autoscalingv2.PodsScalingPolicy, Value: pods, PeriodSeconds: podsPeriod})
    	}
    	if percent != 0 {
    		directionBehavior.Policies = append(directionBehavior.Policies,
    			autoscalingv2.HPAScalingPolicy{Type: autoscalingv2.PercentScalingPolicy, Value: percent, PeriodSeconds: percentPeriod})
    	}
    	return &directionBehavior
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  3. pkg/apis/apps/validation/validation_test.go

    			tweakMaxUnavailable(intstr.FromInt32(0)),
    		),
    		errs: field.ErrorList{
    			field.Invalid(field.NewPath("spec", "updateStrategy", "rollingUpdate", "maxUnavailable"), nil, ""),
    		},
    	}, {
    		name: "zero percent maxUnavailable",
    		set: mkStatefulSet(&validPodTemplate,
    			tweakReplicas(3),
    			tweakUpdateStrategyType(apps.RollingUpdateStatefulSetStrategyType),
    			tweakMaxUnavailable(intstr.FromString("0%")),
    		),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K 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/testdata/code.json.gz

    name":"fixed-nested-expected.png","kids":[],"cl_weight":0.002531645569620253,"touches":1,"min_t":1236222384,"max_t":1236222384,"mean_t":1236222384},{"name":"replaced-percent-height-expected.txt","kids":[],"cl_weight":0.002531645569620253,"touches":1,"min_t":1236222384,"max_t":1236222384,"mean_t":1236222384},{"name":"replaced-percent-height-expected.checksum","kids":[],"cl_weight":0.002531645569620253,"touches":1,"min_t":1236222384,"max_t":1236222384,"mean_t":1236222384},{"name":"013-expected.txt...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
  6. pkg/config/validation/validation.go

    	}
    	return nil
    }
    
    // ValidatePercent checks that percent is in range
    func ValidatePercent(val int32) error {
    	if val < 0 || val > 100 {
    		return fmt.Errorf("percentage %v is not in range 0..100", val)
    	}
    	return nil
    }
    
    // validatePercentage checks if the specified fractional percentage is valid.
    func validatePercentage(percentage *networking.Percent) error {
    	if percentage != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  7. src/net/http/server.go

    //     For example, in 1.22 the pattern "/%61" matches the path "/a" ("%61" being the URL escape sequence for "a"),
    //     but in 1.21 it would match only the path "/%2561" (where "%25" is the escape for the percent sign).
    //   - When matching patterns to paths, in 1.22 each segment of the path is unescaped; in 1.21, the entire path is unescaped.
    //     This change mostly affects how paths with %2F escapes adjacent to slashes are treated.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			}),
    			valid: []string{
    				"!has(self.something)",
    			},
    			errors: map[string]string{
    				"type(self.something) == int": "no such key",
    			},
    		},
    		{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: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    		// for coverage. There isn't any technical reason why
    		// *_test.go files couldn't be instrumented, but it probably
    		// doesn't make much sense to lump together coverage metrics
    		// (ex: percent stmts covered) of *_test.go files with
    		// non-test Go code.
    		if len(p.GoFiles)+len(p.CgoFiles) == 0 {
    			continue
    		}
    
    		// Silently ignore attempts to run coverage on sync/atomic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. src/main/webapp/js/admin/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
Back to top