Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for goVERSION (0.12 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    		if prog.Program == meta["Program"] && prog.Version == meta["Version"] &&
    			prog.GoVersion == meta["GoVersion"] && prog.GOOS == meta["GOOS"] &&
    			prog.GOARCH == meta["GOARCH"] {
    			return prog
    		}
    	}
    	prog := telemetry.ProgramReport{
    		Program:   meta["Program"],
    		Version:   meta["Version"],
    		GoVersion: meta["GoVersion"],
    		GOOS:      meta["GOOS"],
    		GOARCH:    meta["GOARCH"],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modcmd/vendor.go

    		io.WriteString(w, line)
    
    		goVersion := ""
    		if includeGoVersions {
    			goVersion = modload.ModuleInfo(ctx, m.Path).GoVersion
    		}
    		switch {
    		case isExplicit[m] && goVersion != "":
    			fmt.Fprintf(w, "## explicit; go %s\n", goVersion)
    		case isExplicit[m]:
    			io.WriteString(w, "## explicit\n")
    		case goVersion != "":
    			fmt.Fprintf(w, "## go %s\n", goVersion)
    		}
    
    		pkgs := modpkgs[m]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/build.go

    				m.Version = q.Version
    				m.Time = &q.Time
    			}
    		}
    
    		if m.GoVersion == "" && checksumOk("/go.mod") {
    			// Load the go.mod file to determine the Go version, since it hasn't
    			// already been populated from rawGoVersion.
    			if summary, err := rawGoModSummary(mod); err == nil && summary.goVersion != "" {
    				m.GoVersion = summary.goVersion
    			}
    		}
    
    		if m.Version != "" {
    			if checksumOk("/go.mod") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/modfile.go

    			}
    		}
    		if summary.goVersion != "" && gover.Compare(summary.goVersion, gover.GoStrictVersion) >= 0 {
    			if gover.Compare(summary.goVersion, gover.Local()) > 0 {
    				return nil, &gover.TooNewError{What: "module " + m.String(), GoVersion: summary.goVersion}
    			}
    			summary.require = append(summary.require, module.Version{Path: "go", Version: summary.goVersion})
    		}
    		if len(f.Retract) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/check.go

    	// determine Go version for each file
    	for _, file := range check.files {
    		// use unaltered Config.GoVersion by default
    		// (This version string may contain dot-release numbers as in go1.20.1,
    		// unlike file versions which are Go language versions only, if valid.)
    		v := check.conf.GoVersion
    
    		fileVersion := asGoVersion(file.GoVersion)
    		if fileVersion.isValid() {
    			// use the file version, if applicable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  6. src/go/types/check.go

    	// determine Go version for each file
    	for _, file := range check.files {
    		// use unaltered Config.GoVersion by default
    		// (This version string may contain dot-release numbers as in go1.20.1,
    		// unlike file versions which are Go language versions only, if valid.)
    		v := check.conf.GoVersion
    
    		fileVersion := asGoVersion(file.GoVersion)
    		if fileVersion.isValid() {
    			// use the file version, if applicable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. src/go/types/stdlib_test.go

    						break
    					}
    					const prefix = "-lang="
    					if strings.HasPrefix(arg, prefix) {
    						goVersion = arg[len(prefix):]
    					}
    				}
    			}
    		}
    
    		// parse and type-check file
    		file, err := parser.ParseFile(fset, filename, nil, 0)
    		if err == nil {
    			conf := Config{
    				GoVersion: goVersion,
    				Importer:  stdLibImporter,
    			}
    			_, err = conf.Check(filename, fset, []*ast.File{file}, nil)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 04:39:56 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/loopclosure.go

    					vars = append(vars, obj)
    				}
    			}
    		}
    		var body *ast.BlockStmt
    		switch n := n.(type) {
    		case *ast.File:
    			// Only traverse the file if its goversion is strictly before go1.22.
    			goversion := versions.FileVersion(pass.TypesInfo, n)
    			return versions.Before(goversion, versions.Go1_22)
    		case *ast.RangeStmt:
    			body = n.Body
    			addVar(n.Key)
    			addVar(n.Value)
    		case *ast.ForStmt:
    			body = n.Body
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/stdlib_test.go

    					const prefix = "-lang="
    					if strings.HasPrefix(arg, prefix) {
    						goVersion = arg[len(prefix):]
    					}
    				}
    			}
    		}
    
    		// parse and type-check file
    		if testing.Verbose() {
    			fmt.Println("\t", filename)
    		}
    		file, err := syntax.ParseFile(filename, nil, nil, 0)
    		if err == nil {
    			conf := Config{
    				GoVersion: goVersion,
    				Importer:  stdLibImporter,
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. src/debug/gosym/symtab.go

    	// they do not belong to any package.
    	//
    	// See cmd/compile/internal/base/link.go:ReservedImports variable.
    	if s.goVersion >= ver120 && (strings.HasPrefix(name, "go:") || strings.HasPrefix(name, "type:")) {
    		return ""
    	}
    
    	// For go1.18 and below, the prefix are "type." and "go." instead.
    	if s.goVersion <= ver118 && (strings.HasPrefix(name, "go.") || strings.HasPrefix(name, "type.")) {
    		return ""
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
Back to top