Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 242 for mincore (0.13 sec)

  1. staging/src/k8s.io/api/authentication/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *SelfSubjectReview) APILifecycleIntroduced() (major, minor int) {
    	return 1, 28
    }
    
    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. src/internal/gover/gover.go

    	v.Major, x, ok = cutInt(x)
    	if !ok {
    		return Version{}
    	}
    	if x == "" {
    		// Interpret "1" as "1.0.0".
    		v.Minor = "0"
    		v.Patch = "0"
    		return v
    	}
    
    	// Parse . before minor version.
    	if x[0] != '.' {
    		return Version{}
    	}
    
    	// Parse minor version.
    	v.Minor, x, ok = cutInt(x[1:])
    	if !ok {
    		return Version{}
    	}
    	if x == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/authentication/v1beta1/zz_generated.prerelease-lifecycle.go

    func (in *SelfSubjectReview) APILifecycleRemoved() (major, minor int) {
    	return 1, 33
    }
    
    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *TokenReview) APILifecycleIntroduced() (major, minor int) {
    	return 1, 4
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *MutatingWebhookConfiguration) APILifecycleIntroduced() (major, minor int) {
    	return 1, 16
    }
    
    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/rbac/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *ClusterRole) APILifecycleIntroduced() (major, minor int) {
    	return 1, 8
    }
    
    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. operator/pkg/util/k8s_test.go

    	tests := []struct {
    		major        string
    		minor        string
    		expErr       bool
    		operatorYaml string
    	}{
    		{
    			major:        "1",
    			minor:        "16",
    			expErr:       false,
    			operatorYaml: o1,
    		},
    		{
    			major:        "1",
    			minor:        "22",
    			expErr:       true,
    			operatorYaml: o1,
    		},
    		{
    			major:        "1",
    			minor:        "23",
    			expErr:       false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/discovery/v1beta1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *EndpointSlice) APILifecycleIntroduced() (major, minor int) {
    	return 1, 16
    }
    
    // APILifecycleDeprecated is an autogenerated function, returning the release in which the API struct was or will be deprecated as int versions of major and minor for comparison.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/batch/v1beta1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *CronJob) APILifecycleIntroduced() (major, minor int) {
    	return 1, 8
    }
    
    // APILifecycleDeprecated is an autogenerated function, returning the release in which the API struct was or will be deprecated as int versions of major and minor for comparison.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 20:39:47 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/autoscaling/v2beta1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *HorizontalPodAutoscaler) APILifecycleIntroduced() (major, minor int) {
    	return 1, 8
    }
    
    // APILifecycleDeprecated is an autogenerated function, returning the release in which the API struct was or will be deprecated as int versions of major and minor for comparison.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 08 15:55:31 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types/goversion.go

    // A lang is a language version broken into major and minor numbers.
    type lang struct {
    	major, minor int
    }
    
    // langWant is the desired language version set by the -lang flag.
    // If the -lang flag is not set, this is the zero value, meaning that
    // any language version is supported.
    var langWant lang
    
    // AllowsGoVersion reports whether local package is allowed
    // to use Go version major.minor.
    func AllowsGoVersion(major, minor int) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 21:36:02 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top