Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Convert_autoscaling_HorizontalPodAutoscaler_To_v2_HorizontalPodAutoscaler (0.44 sec)

  1. pkg/apis/autoscaling/v2/conversion.go

    */
    
    package v2
    
    import (
    	autoscalingv2 "k8s.io/api/autoscaling/v2"
    
    	"k8s.io/apimachinery/pkg/conversion"
    	"k8s.io/kubernetes/pkg/apis/autoscaling"
    )
    
    func Convert_autoscaling_HorizontalPodAutoscaler_To_v2_HorizontalPodAutoscaler(in *autoscaling.HorizontalPodAutoscaler, out *autoscalingv2.HorizontalPodAutoscaler, s conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 02:34:54 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  2. pkg/apis/autoscaling/v2/zz_generated.conversion.go

    		return err
    	}
    	if err := s.AddConversionFunc((*autoscaling.HorizontalPodAutoscaler)(nil), (*v2.HorizontalPodAutoscaler)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_autoscaling_HorizontalPodAutoscaler_To_v2_HorizontalPodAutoscaler(a.(*autoscaling.HorizontalPodAutoscaler), b.(*v2.HorizontalPodAutoscaler), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 02:34:54 UTC 2021
    - 58.5K bytes
    - Viewed (0)
Back to top