Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for PreRelease (0.1 sec)

  1. src/cmd/go/internal/toolchain/switch.go

    	// We prefer the latest patch release before the most recent release family,
    	// so if the latest release is 1.40.1 we'll take the latest 1.39.X.
    	// Failing that, we prefer the latest patch release before the most recent
    	// prerelease family, so if the latest release is 1.40rc1 is out but 1.39 is okay,
    	// we'll still take 1.39.X.
    	// Failing that we'll take the latest release.
    	latest := ""
    	for i := len(list) - 1; i >= 0; i-- {
    		v := list[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/version.go

    	// Discard offsets after a release label and keep the labels down to e.g. `alpha.0` instead of
    	// including the offset e.g. `alpha.0.206`. This is done to comply with GCR image tags.
    	pre := v.PreRelease()
    	patch := v.Patch()
    	if len(pre) > 0 {
    		if patch > 0 {
    			// If the patch version is more than zero, decrement it and remove the label.
    			// this is done to comply with the latest stable patch release.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:50:19 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/coderepo.go

    		}
    	}
    	if len(versions) == 0 {
    		return func(string) bool { return false }, nil
    	}
    
    	var highest string
    	for i := len(versions) - 1; i >= 0; i-- {
    		v := versions[i]
    		if semver.Prerelease(v) == "" {
    			highest = v
    			break
    		}
    	}
    	if highest == "" {
    		highest = versions[len(versions)-1]
    	}
    
    	data, err := r.GoMod(ctx, highest)
    	if err != nil {
    		return nil, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.28.md

    - `--version=v1.X.Y...` can now be used to set the prerelease and buildID portions of the version reported by components ([#117688](https://github.com/kubernetes/kubernetes/pull/117688), [@liggitt](https://github.com/liggitt)) [SIG API Machinery, Architecture and Release]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
Back to top