Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for currentAverageUtilization (0.72 sec)

  1. staging/src/k8s.io/api/autoscaling/v2beta1/zz_generated.deepcopy.go

    func (in *ContainerResourceMetricStatus) DeepCopyInto(out *ContainerResourceMetricStatus) {
    	*out = *in
    	if in.CurrentAverageUtilization != nil {
    		in, out := &in.CurrentAverageUtilization, &out.CurrentAverageUtilization
    		*out = new(int32)
    		**out = **in
    	}
    	out.CurrentAverageValue = in.CurrentAverageValue.DeepCopy()
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 15.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/autoscaling/v1/zz_generated.deepcopy.go

    func (in *ContainerResourceMetricStatus) DeepCopyInto(out *ContainerResourceMetricStatus) {
    	*out = *in
    	if in.CurrentAverageUtilization != nil {
    		in, out := &in.CurrentAverageUtilization, &out.CurrentAverageUtilization
    		*out = new(int32)
    		**out = **in
    	}
    	out.CurrentAverageValue = in.CurrentAverageValue.DeepCopy()
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 16.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/autoscaling/v1/types.go

    	// currentAverageUtilization is the current value of the average of the
    	// resource metric across all relevant pods, represented as a percentage of
    	// the requested value of the resource for the pods.  It will only be
    	// present if `targetAverageValue` was set in the corresponding metric
    	// specification.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. pkg/apis/autoscaling/v1/conversion.go

    	out.Name = core.ResourceName(in.Name)
    	out.Container = in.Container
    	utilization := in.CurrentAverageUtilization
    	averageValue := &in.CurrentAverageValue
    	out.Current = autoscaling.MetricValueStatus{
    		AverageValue:       averageValue,
    		AverageUtilization: utilization,
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 16 03:29:22 UTC 2021
    - 21.2K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/autoscaling/v2beta1/generated.proto

      optional string name = 1;
    
      // currentAverageUtilization is the current value of the average of the
      // resource metric across all relevant pods, represented as a percentage of
      // the requested value of the resource for the pods.  It will only be
      // present if `targetAverageValue` was set in the corresponding metric
      // specification.
      // +optional
      optional int32 currentAverageUtilization = 2;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/autoscaling/v2beta1/types_swagger_doc_generated.go

    	"name":                      "name is the name of the resource in question.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/autoscaling/v1/types_swagger_doc_generated.go

    	"name":                      "name is the name of the resource in question.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/autoscaling/v2beta1/generated.proto

      optional string name = 1;
    
      // currentAverageUtilization is the current value of the average of the
      // resource metric across all relevant pods, represented as a percentage of
      // the requested value of the resource for the pods.  It will only be
      // present if `targetAverageValue` was set in the corresponding metric
      // specification.
      // +optional
      optional int32 currentAverageUtilization = 2;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/autoscaling/v1/generated.proto

      optional string name = 1;
    
      // currentAverageUtilization is the current value of the average of the
      // resource metric across all relevant pods, represented as a percentage of
      // the requested value of the resource for the pods.  It will only be
      // present if `targetAverageValue` was set in the corresponding metric
      // specification.
      // +optional
      optional int32 currentAverageUtilization = 2;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 22K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/autoscaling/v1/generated.proto

      optional string name = 1;
    
      // currentAverageUtilization is the current value of the average of the
      // resource metric across all relevant pods, represented as a percentage of
      // the requested value of the resource for the pods.  It will only be
      // present if `targetAverageValue` was set in the corresponding metric
      // specification.
      // +optional
      optional int32 currentAverageUtilization = 2;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top