Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for mincore (0.59 sec)

  1. 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)
  2. pkg/proxy/winkernel/hns_test.go

    		IpAddress: epIpv6Address,
    	}
    	Endpoint := &hcn.HostComputeEndpoint{
    		IpConfigurations: []hcn.IpConfig{*ipv4Config, *ipv6Config},
    		MacAddress:       epMacAddress,
    		SchemaVersion: hcn.SchemaVersion{
    			Major: 2,
    			Minor: 0,
    		},
    	}
    	Endpoint, err := Network.CreateEndpoint(Endpoint)
    	if err != nil {
    		t.Error(err)
    	}
    
    	mapEndpointsInfo, err := hns.getAllEndpointsByNetwork(Network.Name)
    	if err != nil {
    		t.Error(err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    //
    // Files in the "minor changes" directory (the unique directory matching the glob
    // "*stdlib/*minor") are named after the package to which they refer, and will have
    // the package heading inserted automatically and links to other standard library
    // symbols expanded automatically. For example, if a file *stdlib/minor/bytes/f.md
    // contains the text
    //
    //	[Reader] implements [io.Reader].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/upgrade/compute_test.go

    	return etcdVer.String()
    }
    
    const fakeCurrentCoreDNSVersion = "1.0.6"
    
    func TestGetAvailableUpgrades(t *testing.T) {
    
    	// constansts for test cases
    	// variables are in the form v{MAJOR}{MINOR}{PATCH}, where MINOR is a variable so test are automatically uptodate to the latest MinimumControlPlaneVersion/
    
    	// v1.X series, e.g. v1.14
    	v1X0 := versionutil.MustParseSemantic("v1.14.0")
    	v1X5 := v1X0.WithPatch(5)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 08:39:51 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. pilot/pkg/model/context.go

    	// check major
    	if r := compareVersion(pversion.Major, inv.Major); r != 0 {
    		return r
    	}
    
    	// check minor
    	if inv.Minor > -1 {
    		if r := compareVersion(pversion.Minor, inv.Minor); r != 0 {
    			return r
    		}
    
    		// check patch
    		if inv.Patch > -1 {
    			if r := compareVersion(pversion.Patch, inv.Patch); r != 0 {
    				return r
    			}
    		}
    	}
    	return 0
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/constants/constants.go

    	// Append the MINOR version skew.
    	// TODO: handle the case of Kubernetes moving to v2.0 or having MAJOR version updates in the future.
    	// This would require keeping track (in a table) of the last MINOR for a particular MAJOR.
    	minor := uint(int(ver.Minor()) + n)
    	return version.MustParseSemantic(fmt.Sprintf("v%d.%d.0", ver.Major(), minor))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  7. helm/minio/templates/statefulset.yaml

            runAsGroup: {{ .Values.securityContext.runAsGroup }}
            fsGroup: {{ .Values.securityContext.fsGroup }}
            {{- if and (ge .Capabilities.KubeVersion.Major "1") (ge .Capabilities.KubeVersion.Minor "20") }}
            fsGroupChangePolicy: {{ .Values.securityContext.fsGroupChangePolicy }}
            {{- end }}
          {{- end }}
          {{- if .Values.serviceAccount.create }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 26 07:50:24 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. docs/debugging/xl-meta/main.go

    			b, err := io.ReadAll(r)
    			if err != nil {
    				return nil, err
    			}
    			b, _, minor, err := checkXL2V1(b)
    			if err != nil {
    				return nil, err
    			}
    			filemap[file] = make(map[string]string)
    			buf := bytes.NewBuffer(nil)
    			v0 := ""
    			var data xlMetaInlineData
    			switch minor {
    			case 0:
    				_, err = msgp.CopyToJSON(buf, bytes.NewReader(b))
    				if err != nil {
    					return nil, err
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/preflight/checks_test.go

    				KubeadmVersion:    "v1.6.6", //KubernetesVersion newer than KubeadmVersion, within the same minor release (new patch)
    				KubernetesVersion: "v1.6.7",
    			},
    			expectWarnings: false,
    		},
    		{
    			check: KubernetesVersionCheck{
    				KubeadmVersion:    "v1.6.6", //KubernetesVersion newer than KubeadmVersion, in a different minor/in pre-release
    				KubernetesVersion: "v1.7.0-alpha.0",
    			},
    			expectWarnings: true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_ops_to_mhlo.cc

            op.getQuantizationMaxVal(), op.getQuantizationAxis(), rewriter);
        if (failed(min_max_type)) {
          return failure();
        }
        auto min_or = CreateConstantOrConvertOp(op, adaptor.getMin(), *min_max_type,
                                                rewriter);
        if (failed(min_or)) {
          return failure();
        }
        auto max_or = CreateConstantOrConvertOp(op, adaptor.getMax(), *min_max_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 30.9K bytes
    - Viewed (0)
Back to top