Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 217 for mincore (0.14 sec)

  1. cmd/kubeadm/app/phases/upgrade/policy.go

    			tooLargeKubeadmSkew := errors.Errorf("Specified version to upgrade to %q is at least one minor release higher than the kubeadm minor release (%d > %d). Such an upgrade is not supported", newK8sVersionStr, newK8sVersion.Minor(), kubeadmVersion.Minor())
    			// This is unsupported; kubeadm has no idea how it should handle a newer minor release than itself
    			// If the version is a CI/dev/experimental version though, lower the severity of this check, but then require the -f flag
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/util/VersionNumber.java

            this(major, minor, micro, patch, qualifier, PATCH_SCHEME, true);
        }
    
        private VersionNumber(int major, int minor, int micro, int patch, @Nullable String qualifier, AbstractScheme scheme, boolean logDeprecation) {
            this.major = major;
            this.minor = minor;
            this.micro = micro;
            this.patch = patch;
            this.qualifier = qualifier;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. istioctl/pkg/install/k8sversion/version_test.go

    var (
    	version1_17 = &version.Info{
    		Major:      "1",
    		Minor:      "17",
    		GitVersion: "1.17",
    	}
    	version1_8 = &version.Info{
    		Major:      "1",
    		Minor:      "8",
    		GitVersion: "v1.8",
    	}
    	version1_18 = &version.Info{
    		Major:      "1",
    		Minor:      "18",
    		GitVersion: "v1.18.5",
    	}
    	version1_19 = &version.Info{
    		Major:      "1",
    		Minor:      "19",
    		GitVersion: "v1.19.4",
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 19 02:46:48 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/networking/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *Ingress) APILifecycleIntroduced() (major, minor int) {
    	return 1, 19
    }
    
    // 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
    - 2.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/flowcontrol/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *FlowSchema) APILifecycleIntroduced() (major, minor int) {
    	return 1, 29
    }
    
    // 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
    - 2K bytes
    - Viewed (0)
  6. pilot/pkg/model/context_test.go

    			fields: fields{Major: 2, Minor: 1, Patch: 1},
    			args:   args{&model.IstioVersion{Major: 2, Minor: 1, Patch: -1}},
    			want:   0,
    		},
    		{
    			name:   "less at patch",
    			fields: fields{Major: 2, Minor: 1, Patch: 0},
    			args:   args{&model.IstioVersion{Major: 2, Minor: 1, Patch: 1}},
    			want:   -1,
    		},
    		{
    			name:   "ignore minor",
    			fields: fields{Major: 2, Minor: 1, Patch: 11},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *Binding) APILifecycleIntroduced() (major, minor int) {
    	return 1, 0
    }
    
    // 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: Thu May 23 17:42:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *ConversionReview) 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
    - 1.7K bytes
    - Viewed (0)
  9. pkg/kube/version_test.go

    	tests := []struct {
    		name       string
    		major      string
    		minor      string
    		want       int
    		gitVersion string
    	}{
    		{
    			name:  "1.22",
    			major: "1",
    			minor: "22",
    			want:  122,
    		},
    		{
    			name:  "1.28",
    			major: "1",
    			minor: "28",
    			want:  128,
    		},
    		{
    			// {"major": "1","minor": "28+","gitVersion": "v1.28.9-eks-036c24b",...}
    			name:       "EKS",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 23:16:29 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storagemigration/v1alpha1/zz_generated.prerelease-lifecycle.go

    func (in *StorageVersionMigration) APILifecycleRemoved() (major, minor int) {
    	return 1, 36
    }
    
    // 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 *StorageVersionMigrationList) APILifecycleIntroduced() (major, minor int) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top