Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for version2 (0.19 sec)

  1. src/cmd/go/internal/version/version.go

    Go version reports the Go version used to build each of the named files.
    
    If no files are named on the command line, go version prints its own
    version information.
    
    If a directory is named, go version walks that directory, recursively,
    looking for recognized Go binaries and reporting their versions.
    By default, go version does not report unrecognized files found
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 19:27:00 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/printers/internalversion/printers_test.go

    						Group:    "test-group2",
    						Version:  "test-version2",
    						Resource: "test-resource2",
    					},
    				},
    			},
    		},
    	}
    
    	// Columns: Name, GVRTOMIGRATE
    	expected := []metav1.TableRow{
    		{Cells: []interface{}{"print-test", "test-resource.test-version.test-group"}},
    		{Cells: []interface{}{"print-test2", "test-resource2.test-version2.test-group2"}},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top