Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Fsname (0.25 sec)

  1. pkg/apis/core/types.go

    	ResourceClaimName *string
    }
    
    // OSName is the set of OS'es that can be used in OS.
    type OSName string
    
    // These are valid values for OSName
    const (
    	Linux   OSName = "linux"
    	Windows OSName = "windows"
    )
    
    // PodOS defines the OS parameters of a pod.
    type PodOS struct {
    	// Name is the name of the operating system. The currently supported values are linux and windows.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types.go

    	Kind string `json:"kind" protobuf:"bytes,2,opt,name=kind"`
    	// Name is the name of resource being referenced
    	Name string `json:"name" protobuf:"bytes,3,opt,name=name"`
    	// Namespace is the namespace of resource being referenced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    				}
    
    				name := *source.ClusterTrustBundle.Name
    				if signerName, ok := extractSignerNameFromClusterTrustBundleName(name); ok {
    					validationFunc := ValidateClusterTrustBundleName(signerName)
    					errMsgs := validationFunc(name, false)
    					for _, msg := range errMsgs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. ChangeLog.md

    - [`KT-64867`](https://youtrack.jetbrains.com/issue/KT-64867) K2 JS: Name clash between constructors with same JsName but in different classes
    - [`KT-64463`](https://youtrack.jetbrains.com/issue/KT-64463) KJS / K2: "Name contains illegal chars that cannot appear in JavaScript identifier" caused by non-ASCII character
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  5. pkg/apis/core/v1/zz_generated.conversion.go

    	return autoConvert_url_Values_To_v1_PodLogOptions(in, out, s)
    }
    
    func autoConvert_v1_PodOS_To_core_PodOS(in *v1.PodOS, out *core.PodOS, s conversion.Scope) error {
    	out.Name = core.OSName(in.Name)
    	return nil
    }
    
    // Convert_v1_PodOS_To_core_PodOS is an autogenerated conversion function.
    func Convert_v1_PodOS_To_core_PodOS(in *v1.PodOS, out *core.PodOS, s conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
Back to top