Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,205 for okdown (0.26 sec)

  1. src/math/big/ftoa.go

    	for i, m := range d.mant {
    		l := lower.at(i)
    		u := upper.at(i)
    
    		// Okay to round down (truncate) if lower has a different digit
    		// or if lower is inclusive and is exactly the result of rounding
    		// down (i.e., and we have reached the final digit of lower).
    		okdown := l != m || inclusive && i+1 == len(lower.mant)
    
    		// Okay to round up if upper has a different digit and either upper
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  2. src/strconv/ftoa.go

    		}
    		u := byte('0') // upper digit
    		if ui < upper.nd {
    			u = upper.d[ui]
    		}
    
    		// Okay to round down (truncate) if lower has a different digit
    		// or if lower is inclusive and is exactly the result of rounding
    		// down (i.e., and we have reached the final digit of lower).
    		okdown := l != m || inclusive && li+1 == lower.nd
    
    		switch {
    		case upperdelta == 0 && m+1 < u:
    			// Example:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/autoscaling/v2beta2/generated.proto

      // considered while scaling up or scaling down.
      // StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour).
      // If not set, use the default values:
      // - For scale up: 0 (i.e. no stabilization is done).
      // - For scale down: 300 (i.e. the stabilization window is 300 seconds long).
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/autoscaling/v2/generated.proto

      // considered while scaling up or scaling down.
      // StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour).
      // If not set, use the default values:
      // - For scale up: 0 (i.e. no stabilization is done).
      // - For scale down: 300 (i.e. the stabilization window is 300 seconds long).
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/autoscaling/v2/types_swagger_doc_generated.go

    	"containerResource": "containerResource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod of the current...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/autoscaling/v2beta2/generated.proto

      // considered while scaling up or scaling down.
      // StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour).
      // If not set, use the default values:
      // - For scale up: 0 (i.e. no stabilization is done).
      // - For scale down: 300 (i.e. the stabilization window is 300 seconds long).
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. pkg/apis/autoscaling/types.go

    	// behavior configures the scaling behavior of the target
    	// in both Up and Down directions (scaleUp and scaleDown fields respectively).
    	// If not set, the default HPAScalingRules for scale up and scale down are used.
    	// +optional
    	Behavior *HorizontalPodAutoscalerBehavior
    }
    
    // HorizontalPodAutoscalerBehavior configures a scaling behavior for Up and Down direction
    // (scaleUp and scaleDown fields respectively).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/autoscaling/v2/generated.proto

      // considered while scaling up or scaling down.
      // StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour).
      // If not set, use the default values:
      // - For scale up: 0 (i.e. no stabilization is done).
      // - For scale down: 300 (i.e. the stabilization window is 300 seconds long).
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/autoscaling/v2beta2/types_swagger_doc_generated.go

    	"containerResource": "container resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod of the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/autoscaling/v2/types.go

    	Metrics []MetricSpec `json:"metrics,omitempty" protobuf:"bytes,4,rep,name=metrics"`
    
    	// behavior configures the scaling behavior of the target
    	// in both Up and Down directions (scaleUp and scaleDown fields respectively).
    	// If not set, the default HPAScalingRules for scale up and scale down are used.
    	// +optional
    	Behavior *HorizontalPodAutoscalerBehavior `json:"behavior,omitempty" protobuf:"bytes,5,opt,name=behavior"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.5K bytes
    - Viewed (0)
Back to top