Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,331 for to_version (0.17 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/conversion/metrics.go

    	start := time.Now()
    	obj, err := m.delegate.Convert(in, targetGV)
    	fromVersion := in.GetObjectKind().GroupVersionKind().Version
    	toVersion := targetGV.Version
    
    	// only record this observation if the version is different
    	if fromVersion != toVersion {
    		m.latencies.WithLabelValues(
    			m.crdName, fromVersion, toVersion, strconv.FormatBool(err == nil)).Observe(time.Since(start).Seconds())
    	}
    	return obj, err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 19:34:33 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. pkg/controller/serviceaccount/config/v1alpha1/conversion.go

    // in an autogenerated manner.
    // TODO: Fix the bug in conversion-gen so it automatically discovers these Convert_* functions
    // in autogenerated code as well.
    
    // Convert_v1alpha1_SAControllerConfiguration_To_config_SAControllerConfiguration is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 24 23:20:17 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/apidiscovery/v2/conversion.go

    */
    
    // This file was duplicated from the auto-generated file by conversion-gen in
    // k8s.io/kubernetes/pkg/apis/apidiscovery Unlike most k8s types discovery is
    // served by all apiservers and conversion is needed by all apiservers. The
    // concept of internal/hub type does not exist for discovery as we work directly
    // with the versioned types.
    
    // The conversion code here facilities conversion strictly between v2beta1 and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. pkg/apis/apps/v1/conversion.go

    	corev1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/conversion"
    	"k8s.io/kubernetes/pkg/apis/apps"
    	"k8s.io/kubernetes/pkg/apis/core"
    )
    
    // Convert_apps_DeploymentSpec_To_v1_DeploymentSpec is defined here, because public
    // conversion is not auto-generated due to existing warnings.
    func Convert_apps_DeploymentSpec_To_v1_DeploymentSpec(in *apps.DeploymentSpec, out *appsv1.DeploymentSpec, s conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:36:24 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/conversion.go

    	temp := float64(*in)
    	*out = &temp
    	return nil
    }
    
    func Convert_Pointer_int32_To_int32(in **int32, out *int32, s conversion.Scope) error {
    	if *in == nil {
    		*out = 0
    		return nil
    	}
    	*out = int32(**in)
    	return nil
    }
    
    func Convert_int32_To_Pointer_int32(in *int32, out **int32, s conversion.Scope) error {
    	temp := int32(*in)
    	*out = &temp
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 26 03:49:57 UTC 2020
    - 8.8K bytes
    - Viewed (0)
  6. pkg/controller/ttlafterfinished/config/v1alpha1/conversion.go

    // functions in an autogenerated manner.
    // TODO: Fix the bug in conversion-gen so it automatically discovers these Convert_* functions
    // in autogenerated code as well.
    
    // Convert_v1alpha1_TTLAfterFinishedControllerConfiguration_To_config_TTLAfterFinishedControllerConfiguration is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/config/v1alpha1/conversion.go

    // other packages that reference this package to be able to call these conversion functions
    // in an autogenerated manner.
    // TODO: Fix the bug in conversion-gen so it automatically discovers these Convert_* functions
    // in autogenerated code as well.
    
    // Convert_v1alpha1_PersistentVolumeBinderControllerConfiguration_To_config_PersistentVolumeBinderControllerConfiguration is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  8. pkg/controller/podgc/config/v1alpha1/conversion.go

    // in an autogenerated manner.
    // TODO: Fix the bug in conversion-gen so it automatically discovers these Convert_* functions
    // in autogenerated code as well.
    
    // Convert_v1alpha1_PodGCControllerConfiguration_To_config_PodGCControllerConfiguration is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 2K bytes
    - Viewed (0)
  9. pkg/controller/nodeipam/config/v1alpha1/conversion.go

    // in an autogenerated manner.
    // TODO: Fix the bug in conversion-gen so it automatically discovers these Convert_* functions
    // in autogenerated code as well.
    
    // Convert_v1alpha1_NodeIPAMControllerConfiguration_To_config_NodeIPAMControllerConfiguration is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  10. pkg/controller/endpointslicemirroring/config/v1alpha1/conversion.go

    // package to be able to call these conversion functions in an autogenerated
    // manner. TODO: Fix the bug in conversion-gen so it automatically discovers
    // these Convert_* functions in autogenerated code as well.
    
    // Convert_v1alpha1_EndpointSliceMirroringControllerConfiguration_To_config_EndpointSliceMirroringControllerConfiguration is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 06 19:43:33 UTC 2020
    - 2.4K bytes
    - Viewed (0)
Back to top