Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for v0Version (0.23 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/LibrariesSourceGeneratorTest.groovy

            sources.hasDependencyAlias('boo', 'getBoo', "with <b>no version specified</b>")
    
            sources.hasPlugin('fooPlugin', 'getFooPlugin', "with version <b>1.0</b>")
            sources.hasPlugin('barPlugin', 'getBarPlugin', "with version reference <b>barVersion</b>")
            sources.hasPlugin('bazPlugin', 'getBazPlugin', "with <b>no version specified</b>")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 19.2K 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. 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)
  5. staging/src/k8s.io/apimachinery/pkg/util/version/version.go

    func (v *Version) PreRelease() string {
    	return v.preRelease
    }
    
    // Components returns the version number components
    func (v *Version) Components() []uint {
    	return v.components
    }
    
    // WithMajor returns copy of the version object with requested major number
    func (v *Version) WithMajor(major uint) *Version {
    	result := *v
    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. 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)
  7. 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)
  8. src/go/version/version.go

    // If v does not start with "go", stripGo returns the empty string (a known invalid version).
    func stripGo(v string) string {
    	v, _, _ = strings.Cut(v, "-") // strip -bigcorp suffix.
    	if len(v) < 2 || v[:2] != "go" {
    		return ""
    	}
    	return v[2:]
    }
    
    // Lang returns the Go language version for version x.
    // If x is not a valid version, Lang returns the empty string.
    // For example:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 19:56:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/version.txt

    go version
    stdout '^go version'
    
    # Flags without files, or paths to missing files, should error.
    ! go version missing.exe
    ! go version -m
    stderr 'with arguments'
    ! go version -v
    stderr 'with arguments'
    
    # Check that 'go version' succeed even when it does not contain Go build info.
    # It should print an error if the file has a known Go binary extension.
    #
    go version empty.txt
    ! stdout .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 14:52:04 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. src/internal/trace/version/version.go

    // license that can be found in the LICENSE file.
    
    package version
    
    import (
    	"fmt"
    	"io"
    
    	"internal/trace/event"
    	"internal/trace/event/go122"
    )
    
    // Version represents the version of a trace file.
    type Version uint32
    
    const (
    	Go111   Version = 11
    	Go119   Version = 19
    	Go121   Version = 21
    	Go122   Version = 22
    	Go123   Version = 23
    	Current         = Go123
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top