Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for Quantity (0.19 sec)

  1. common-protos/k8s.io/api/autoscaling/v1/generated.proto

      // Mutually exclusive with TargetAverageValue.
      // +optional
      optional k8s.io.apimachinery.pkg.api.resource.Quantity targetValue = 3;
    
      // targetAverageValue is the target per-pod value of global metric (as a quantity).
      // Mutually exclusive with TargetValue.
      // +optional
      optional k8s.io.apimachinery.pkg.api.resource.Quantity targetAverageValue = 4;
    }
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 22K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/autoscaling/v2beta1/generated.proto

      // Mutually exclusive with TargetAverageValue.
      // +optional
      optional k8s.io.apimachinery.pkg.api.resource.Quantity targetValue = 3;
    
      // targetAverageValue is the target per-pod value of global metric (as a quantity).
      // Mutually exclusive with TargetValue.
      // +optional
      optional k8s.io.apimachinery.pkg.api.resource.Quantity targetAverageValue = 4;
    }
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 21.2K bytes
    - Viewed (0)
  3. common-protos/k8s.io/apimachinery/pkg/api/resource/generated.proto

    option go_package = "k8s.io/apimachinery/pkg/api/resource";
    
    // Quantity is a fixed-point representation of a number.
    // It provides convenient marshaling/unmarshaling in JSON and YAML,
    // in addition to String() and AsInt64() accessors.
    //
    // The serialization format is:
    //
    // ```
    // <quantity>        ::= <signedNumber><suffix>
    //
    // 	(Note that <suffix> may be empty, from the "" case in <decimalSI>.)
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/autoscaling/v2/generated.proto

      optional string type = 1;
    
      // value is the target value of the metric (as a quantity).
      // +optional
      optional k8s.io.apimachinery.pkg.api.resource.Quantity value = 2;
    
      // averageValue is the target value of the average of the
      // metric across all relevant pods (as a quantity)
      // +optional
      optional k8s.io.apimachinery.pkg.api.resource.Quantity averageValue = 3;
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 21.3K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/autoscaling/v2beta2/generated.proto

      optional string type = 1;
    
      // value is the target value of the metric (as a quantity).
      // +optional
      optional k8s.io.apimachinery.pkg.api.resource.Quantity value = 2;
    
      // averageValue is the target value of the average of the
      // metric across all relevant pods (as a quantity)
      // +optional
      optional k8s.io.apimachinery.pkg.api.resource.Quantity averageValue = 3;
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 21K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/node/v1beta1/generated.proto

    message Overhead {
      // podFixed represents the fixed resource overhead associated with running a pod.
      // +optional
      map<string, k8s.io.apimachinery.pkg.api.resource.Quantity> podFixed = 1;
    }
    
    // RuntimeClass defines a class of container runtime supported in the cluster.
    // The RuntimeClass is used to determine which container runtime is used to run
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 4.4K bytes
    - Viewed (0)
  7. internal/s3select/sql/funceval.go

    }
    
    func handleDateAdd(r Record, d *DateAddFunc, tableAlias string) (*Value, error) {
    	q, err := d.Quantity.evalNode(r, tableAlias)
    	if err != nil {
    		return nil, err
    	}
    	inferTypeForArithOp(q)
    	qty, ok := q.ToFloat()
    	if !ok {
    		return nil, fmt.Errorf("QUANTITY must be a numeric argument to %s()", sqlFnDateAdd)
    	}
    
    	ts, err := d.Timestamp.evalNode(r, tableAlias)
    	if err != nil {
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Jun 01 21:59:40 GMT 2021
    - 13.2K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/storage/v1alpha1/generated.proto

      // The available capacity, in bytes, of the storage that can be used
      // to provision volumes. If not set, that information is currently
      // unavailable.
      //
      // +optional
      optional k8s.io.apimachinery.pkg.api.resource.Quantity capacity = 4;
    
      // maximumVolumeSize is the value reported by the CSI driver in its GetCapacityResponse
      // for a GetCapacityRequest with topology and parameters that match the
      // previous fields.
      //
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 9.4K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/node/v1/generated.proto

    message Overhead {
      // podFixed represents the fixed resource overhead associated with running a pod.
      // +optional
      map<string, k8s.io.apimachinery.pkg.api.resource.Quantity> podFixed = 1;
    }
    
    // RuntimeClass defines a class of container runtime supported in the cluster.
    // The RuntimeClass is used to determine which container runtime is used to run
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 4.4K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/node/v1alpha1/generated.proto

    message Overhead {
      // podFixed represents the fixed resource overhead associated with running a pod.
      // +optional
      map<string, k8s.io.apimachinery.pkg.api.resource.Quantity> podFixed = 1;
    }
    
    // RuntimeClass defines a class of container runtime supported in the cluster.
    // The RuntimeClass is used to determine which container runtime is used to run
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 5K bytes
    - Viewed (0)
Back to top