Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for 20rc1 (0.04 sec)

  1. src/go/version/version_test.go

    	{"go1.6", "go1.6.1", -1},
    	{"go1.19", "go1.19.0", 0},
    	{"go1.19rc1", "go1.19", -1},
    	{"go1.20", "go1.20.0", 0},
    	{"go1.20", "go1.20.0-bigcorp", 0},
    	{"go1.20rc1", "go1.20", -1},
    	{"go1.21", "go1.21.0", -1},
    	{"go1.21", "go1.21.0-bigcorp", -1},
    	{"go1.21", "go1.21rc1", -1},
    	{"go1.21rc1", "go1.21.0", -1},
    	{"go1.6", "go1.19", -1},
    	{"go1.19", "go1.19.1", -1},
    	{"go1.19rc1", "go1.19", -1},
    	{"go1.19rc1", "go1.19", -1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 19:56:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. src/go/version/version.go

    // 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".
    func Compare(x, y string) int {
    	return gover.Compare(stripGo(x), stripGo(y))
    }
    
    // IsValid reports whether the version x is valid.
    func IsValid(x string) bool {
    	return gover.IsValid(stripGo(x))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 19:56:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/versions/versions.go

    // 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".
    // Custom toolchain suffixes are ignored during comparison:
    // "go1.21.0" and "go1.21.0-bigcorp" are equal.
    func Compare(x, y string) int { return compare(stripGo(x), stripGo(y)) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/toolchain/switch.go

    	// 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]
    		if gover.Compare(v, need) < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/api.go

    	Context *Context
    
    	// GoVersion describes the accepted Go language version. The string must
    	// start with a prefix of the form "go%d.%d" (e.g. "go1.20", "go1.21rc1", or
    	// "go1.21.0") or it must be empty; an empty string disables Go language
    	// version checks. If the format is invalid, invoking the type checker will
    	// result in an error.
    	GoVersion string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. src/go/types/api.go

    	Context *Context
    
    	// GoVersion describes the accepted Go language version. The string must
    	// start with a prefix of the form "go%d.%d" (e.g. "go1.20", "go1.21rc1", or
    	// "go1.21.0") or it must be empty; an empty string disables Go language
    	// version checks. If the format is invalid, invoking the type checker will
    	// result in an error.
    	GoVersion string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    	Syntax     *Line
    }
    
    // A Go is the go statement.
    type Go struct {
    	Version string // "1.23"
    	Syntax  *Line
    }
    
    // A Toolchain is the toolchain statement.
    type Toolchain struct {
    	Name   string // "go1.21rc1"
    	Syntax *Line
    }
    
    // A Godebug is a single godebug key=value statement.
    type Godebug struct {
    	Key    string
    	Value  string
    	Syntax *Line
    }
    
    // An Exclude is a single exclude statement.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  8. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    20BF          ; valid                  ;      ; NV8    # 10.0 BITCOIN SIGN
    20C0          ; valid                  ;      ; NV8    # 14.0 SOM SIGN
    20C1..20CF    ; disallowed                             # NA   <reserved-20C1>..<reserved-20CF>
    20D0..20E1    ; valid                  ;      ; NV8    # 1.1  COMBINING LEFT HARPOON ABOVE..COMBINING LEFT RIGHT ARROW ABOVE
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
Back to top