Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for PeriodSeconds (0.24 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

                  initialDelaySeconds: {{ annotation .ObjectMeta `readiness.status.sidecar.istio.io/initialDelaySeconds` .Values.global.proxy.readinessInitialDelaySeconds }}
                  periodSeconds: {{ annotation .ObjectMeta `readiness.status.sidecar.istio.io/periodSeconds` .Values.global.proxy.readinessPeriodSeconds }}
                  timeoutSeconds: 3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/horizontal_test.go

    //   - 120s (guaranteed to have all events)
    func generateEventsUniformDistribution(rawEvents []int, periodSeconds int) []timestampedScaleEvent {
    	events := make([]timestampedScaleEvent, len(rawEvents))
    	segmentDuration := float64(periodSeconds) / float64(len(rawEvents))
    	for idx, event := range rawEvents {
    		segmentBoundary := time.Duration(float64(periodSeconds) - segmentDuration*float64(idx+1) + segmentDuration/float64(2))
    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. staging/src/k8s.io/api/autoscaling/v2/generated.pb.go

    				return fmt.Errorf("proto: wrong wireType = %d for field PeriodSeconds", wireType)
    			}
    			m.PeriodSeconds = 0
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return io.ErrUnexpectedEOF
    				}
    				b := dAtA[iNdEx]
    				iNdEx++
    				m.PeriodSeconds |= int32(b&0x7F) << shift
    				if b < 0x80 {
    					break
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 162.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/autoscaling/v2beta2/generated.pb.go

    				return fmt.Errorf("proto: wrong wireType = %d for field PeriodSeconds", wireType)
    			}
    			m.PeriodSeconds = 0
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return io.ErrUnexpectedEOF
    				}
    				b := dAtA[iNdEx]
    				iNdEx++
    				m.PeriodSeconds |= int32(b&0x7F) << shift
    				if b < 0x80 {
    					break
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 163K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

            "description": "HPAScalingPolicy is a single policy which must hold true for a specified past interval.",
            "properties": {
              "periodSeconds": {
                "default": 0,
                "description": "periodSeconds specifies the window of time for which the policy should hold true. PeriodSeconds must be greater than zero and less than or equal to 1800 (30 min).",
                "format": "int32",
                "type": "integer"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    ISTIO_META_REQUESTED_NETWORK_VIEW value: {{.|quote}} {{- end }} startupProbe: failureThreshold: 30 httpGet: path: /healthz/ready port: 15021 scheme: HTTP initialDelaySeconds: 1 periodSeconds: 1 successThreshold: 1 timeoutSeconds: 1 readinessProbe: failureThreshold: 4 httpGet: path: /healthz/ready port: 15021 scheme: HTTP initialDelaySeconds: 0 periodSeconds: 15 successThreshold: 1 timeoutSeconds: 1 volumeMounts: - name: workload-socket mountPath: /var/run/secrets/workload-spiffe-uds - name: credential-socket mountPath:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  7. pkg/config/validation/validation.go

    	})
    
    func validateReadinessProbe(probe *networking.ReadinessProbe) (errs error) {
    	if probe == nil {
    		return nil
    	}
    	if probe.PeriodSeconds < 0 {
    		errs = appendErrors(errs, fmt.Errorf("periodSeconds must be non-negative"))
    	}
    	if probe.InitialDelaySeconds < 0 {
    		errs = appendErrors(errs, fmt.Errorf("initialDelaySeconds must be non-negative"))
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "format": "int32",
              "type": "integer"
            },
            "periodSeconds": {
              "description": "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.",
              "format": "int32",
              "type": "integer"
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top