Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for version1 (0.14 sec)

  1. build/build-image/VERSION

    Lucas Käldström <******@****.***> 1485540217 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 18:03:37 UTC 2017
    - 2 bytes
    - Viewed (0)
  2. build/build-image/cross/VERSION

    cpanato <******@****.***> 1717690383 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 28 bytes
    - Viewed (0)
  3. cluster/images/etcd/migrate/versions.go

    	return fmt.Sprintf("%s/%s", vp.version, vp.storageVersion)
    }
    
    // Equals returns true if both the versions and storage versions are exactly equal.
    func (vp *EtcdVersionPair) Equals(o *EtcdVersionPair) bool {
    	return vp.version.Equals(o.version) && vp.storageVersion == o.storageVersion
    }
    
    // SupportedVersions provides a list of etcd versions that are "supported" for some purpose.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  4. src/go/version/version.go

    // license that can be found in the LICENSE file.
    
    // Package version provides operations on [Go versions]
    // in [Go toolchain name syntax]: strings like
    // "go1.20", "go1.21.0", "go1.22rc2", and "go1.23.4-bigcorp".
    //
    // [Go versions]: https://go.dev/doc/toolchain#version
    // [Go toolchain name syntax]: https://go.dev/doc/toolchain#name
    package version // import "go/version"
    
    import (
    	"internal/gover"
    	"strings"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 19:56:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/version/version.go

    // This function assumes that the highest supported version must be v1.x.
    func HighestSupportedVersion(versions []string) (*Version, error) {
    	if len(versions) == 0 {
    		return nil, errors.New("empty array for supported versions")
    	}
    
    	var (
    		highestSupportedVersion *Version
    		theErr                  error
    	)
    
    	for i := len(versions) - 1; i >= 0; i-- {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 18 19:25:29 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  6. VERSION

    zirain <******@****.***> 1713809620 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 5 bytes
    - Viewed (0)
  7. docs/en/docs/deployment/versions.md

    ## Available versions
    
    You can see the available versions (e.g. to check what is the current latest) in the [Release Notes](../release-notes.md){.internal-link target=_blank}.
    
    ## About versions
    
    Following the Semantic Versioning conventions, any version below `1.0.0` could potentially add breaking changes.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Nov 05 20:50:37 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  8. pkg/version/version.go

    	buildArch        = "unknown"
    )
    
    // BuildInfo describes version information about the binary build.
    type BuildInfo struct {
    	Version       string `json:"version"`
    	GitRevision   string `json:"revision"`
    	GolangVersion string `json:"golang_version"`
    	BuildStatus   string `json:"status"`
    	GitTag        string `json:"tag"`
    }
    
    // ServerInfo contains the version for a single control plane component
    type ServerInfo struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:26 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/versions/versions.go

    }
    
    // Compare returns -1, 0, or +1 depending on whether
    // x < y, x == y, or x > y, interpreted as Go versions.
    // The versions x and y must begin with a "go" prefix: "go1.21" not "1.21".
    // Invalid versions, including the empty string, compare less than
    // valid versions and equal to each other.
    // The language version "go1.21" compares less than the
    // release candidate and eventual releases "go1.21rc1" and "go1.21.0".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/version.go

    // Internal helper: returns normalized build version (with "v" prefix if needed)
    // If input doesn't match known version pattern, returns empty string.
    func normalizedBuildVersion(version string) string {
    	if kubeReleaseRegex.MatchString(version) {
    		if strings.HasPrefix(version, "v") {
    			return version
    		}
    		return "v" + version
    	}
    	return ""
    }
    
    // Internal helper: split version parts,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:50:19 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top