Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for goVERSION (0.1 sec)

  1. src/cmd/go/internal/work/exec.go

    		if b.IsCmdList {
    			return nil
    		}
    		return errors.New("binary-only packages are no longer supported")
    	}
    
    	if p.Module != nil && !allowedVersion(p.Module.GoVersion) {
    		return errors.New("module requires Go " + p.Module.GoVersion + " or later")
    	}
    
    	if err := b.checkDirectives(a); err != nil {
    		return err
    	}
    
    	if err := sh.Mkdir(a.Objdir); err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //	    Dir        string        // directory holding local copy of files, if any
    //	    GoMod      string        // path to go.mod file describing module, if any
    //	    GoVersion  string        // go version used in module
    //	    Retracted  []string      // retraction information, if any (with -retracted or -u)
    //	    Deprecated string        // deprecation message, if any (with -u)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    // in the binary. setBuildInfo should only be called on a main package with no
    // errors.
    //
    // This information can be retrieved using debug.ReadBuildInfo.
    //
    // Note that the GoVersion field is not set here to avoid encoding it twice.
    // It is stored separately in the binary, mostly for historical reasons.
    func (p *Package) setBuildInfo(ctx context.Context, autoVCS bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top