Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 24rc1$ (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
Back to top