Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,091 for inversion (0.12 sec)

  1. src/runtime/traceback.go

    //
    // SetCgoTraceback should be called only once, ideally from an init function.
    func SetCgoTraceback(version int, traceback, context, symbolizer unsafe.Pointer) {
    	if version != 0 {
    		panic("unsupported version")
    	}
    
    	if cgoTraceback != nil && cgoTraceback != traceback ||
    		cgoContext != nil && cgoContext != context ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais.go

    	// Inverting the bytes increases the chance that a
    	// 4-byte encoding will still be ≥ len(text).
    	// In particular, if the first byte is ASCII (<= 0x7E, so +1 <= 0x7F)
    	// then the high bit of the inversion will be set,
    	// making it clearly not a valid length (it would be a negative one).
    	//
    	// cx holds the pre-inverted encoding (the packed incremented bytes).
    	cx := uint32(0) // byte-only
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K 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