Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 54 for CrossVersionObjectReference (0.37 sec)

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

    func (in *CrossVersionObjectReference) DeepCopyInto(out *CrossVersionObjectReference) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CrossVersionObjectReference.
    func (in *CrossVersionObjectReference) DeepCopy() *CrossVersionObjectReference {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/autoscaling/v2/zz_generated.deepcopy.go

    func (in *CrossVersionObjectReference) DeepCopyInto(out *CrossVersionObjectReference) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CrossVersionObjectReference.
    func (in *CrossVersionObjectReference) DeepCopy() *CrossVersionObjectReference {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 02:34:54 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/autoscaling/v2beta1/zz_generated.deepcopy.go

    func (in *CrossVersionObjectReference) DeepCopyInto(out *CrossVersionObjectReference) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CrossVersionObjectReference.
    func (in *CrossVersionObjectReference) DeepCopy() *CrossVersionObjectReference {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 15.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/autoscaling/v1/zz_generated.deepcopy.go

    func (in *CrossVersionObjectReference) DeepCopyInto(out *CrossVersionObjectReference) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CrossVersionObjectReference.
    func (in *CrossVersionObjectReference) DeepCopy() *CrossVersionObjectReference {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 16.8K bytes
    - Viewed (0)
  5. pkg/apis/autoscaling/v1/conversion.go

    )
    
    func Convert_autoscaling_MetricTarget_To_v1_CrossVersionObjectReference(in *autoscaling.MetricTarget, out *autoscalingv1.CrossVersionObjectReference, s conversion.Scope) error {
    	return nil
    }
    
    func Convert_v1_CrossVersionObjectReference_To_autoscaling_MetricTarget(in *autoscalingv1.CrossVersionObjectReference, out *autoscaling.MetricTarget, s conversion.Scope) error {
    	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)
  6. pkg/apis/autoscaling/zz_generated.deepcopy.go

    func (in *CrossVersionObjectReference) DeepCopyInto(out *CrossVersionObjectReference) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CrossVersionObjectReference.
    func (in *CrossVersionObjectReference) DeepCopy() *CrossVersionObjectReference {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 19.4K bytes
    - Viewed (0)
  7. pkg/controller/podautoscaler/metrics/client.go

    // GetObjectMetric gets the given metric (and an associated timestamp) for the given
    // object in the given namespace
    func (c *customMetricsClient) GetObjectMetric(metricName string, namespace string, objectRef *autoscaling.CrossVersionObjectReference, metricSelector labels.Selector) (int64, time.Time, error) {
    	gvk := schema.FromAPIVersionAndKind(objectRef.APIVersion, objectRef.Kind)
    	var metricValue *customapi.MetricValue
    	var err error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 16 20:17:52 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/autoscaling/v2/generated.proto

      // container is the name of the container in the pods of the scaling target
      optional string container = 3;
    }
    
    // CrossVersionObjectReference contains enough information to let you identify the referred resource.
    message CrossVersionObjectReference {
      // kind is the kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
    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. common-protos/k8s.io/api/autoscaling/v2beta1/generated.proto

      // container is the name of the container in the pods of the scaling target
      optional string container = 4;
    }
    
    // CrossVersionObjectReference contains enough information to let you identify the referred resource.
    message CrossVersionObjectReference {
      // Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
      optional string kind = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  10. pkg/apis/autoscaling/v2beta1/conversion_test.go

    		},
    		{
    			obj1: &autoscaling.HorizontalPodAutoscaler{},
    			obj2: &v2beta1.HorizontalPodAutoscaler{},
    		},
    		{
    			obj1: &autoscaling.MetricTarget{},
    			obj2: &v2beta1.CrossVersionObjectReference{},
    		},
    	}
    	for _, testCase := range testCases {
    		assert.NoError(t, scheme.Convert(testCase.obj1, testCase.obj2, nil))
    		assert.NoError(t, scheme.Convert(testCase.obj2, testCase.obj1, nil))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 24 18:21:00 UTC 2019
    - 2.2K bytes
    - Viewed (0)
Back to top