Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for goVERSION (0.17 sec)

  1. src/debug/buildinfo/buildinfo.go

    func Read(r io.ReaderAt) (*BuildInfo, error) {
    	vers, mod, err := readRawBuildInfo(r)
    	if err != nil {
    		return nil, err
    	}
    	bi, err := debug.ParseBuildInfo(mod)
    	if err != nil {
    		return nil, err
    	}
    	bi.GoVersion = vers
    	return bi, nil
    }
    
    type exe interface {
    	// ReadData reads and returns up to size bytes starting at virtual address addr.
    	ReadData(addr, size uint64) ([]byte, error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/check_test.go

    		opt(&conf)
    	}
    
    	// apply flag setting (overrides custom configuration)
    	var goexperiment, gotypesalias string
    	flags := flag.NewFlagSet("", flag.PanicOnError)
    	flags.StringVar(&conf.GoVersion, "lang", "", "")
    	flags.StringVar(&goexperiment, "goexperiment", "", "")
    	flags.BoolVar(&conf.FakeImportC, "fakeImportC", false, "")
    	flags.StringVar(&gotypesalias, "gotypesalias", "", "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/stmt.go

    	// determine key/value types
    	var key, val Type
    	if x.mode != invalid {
    		// Ranging over a type parameter is permitted if it has a core type.
    		k, v, cause, isFunc, ok := rangeKeyVal(x.typ, func(v goVersion) bool {
    			return check.allowVersion(x.expr, v)
    		})
    		switch {
    		case !ok && cause != "":
    			check.softErrorf(&x, InvalidRangeExpr, "cannot range over %s: %s", &x, cause)
    		case !ok:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  4. src/debug/gosym/pclntab.go

    		f.LineTable = t
    		f.FrameSize = int(info.deferreturn())
    		syms[i] = Sym{
    			Value:     f.Entry,
    			Type:      'T',
    			Name:      t.funcName(info.nameOff()),
    			GoType:    0,
    			Func:      f,
    			goVersion: t.version,
    		}
    		f.Sym = &syms[i]
    	}
    	return funcs
    }
    
    // findFunc returns the funcData corresponding to the given program counter.
    func (t *LineTable) findFunc(pc uint64) funcData {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_test.go

    		Major:        "42",
    		Minor:        "42",
    		GitVersion:   "42",
    		GitCommit:    "34973274ccef6ab4dfaaf86599792fa9c3fe4689",
    		GitTreeState: "Dirty",
    		BuildDate:    time.Now().String(),
    		GoVersion:    goruntime.Version(),
    		Compiler:     goruntime.Compiler,
    		Platform:     fmt.Sprintf("%s/%s", goruntime.GOOS, goruntime.GOARCH),
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  6. src/go/types/issues_test.go

    func f[S ~[]E, E any](S) {}
    
    func _() {
    	f([]string{})
    }
    `
    	// Per the go:build directive, the source must typecheck
    	// even though the (module) Go version is set to go1.17.
    	conf := Config{GoVersion: "go1.17"}
    	mustTypecheck(src, &conf, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/import.go

    				// Go 1.23 and later require vendored packages to be present in modules.txt to be imported.
    				_, ok := vendorPkgModule[path]
    				if ok || (gover.Compare(MainModules.GoVersion(), gover.ExplicitModulesTxtImportVersion) < 0) {
    					mods = append(mods, vendorPkgModule[path])
    					dirs = append(dirs, dir)
    					roots = append(roots, vendorDir)
    				} else {
    					subCommand := "mod"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/issues_test.go

    func f[S ~[]E, E any](S) {}
    
    func _() {
    	f([]string{})
    }
    `
    	// Per the go:build directive, the source must typecheck
    	// even though the (module) Go version is set to go1.17.
    	conf := Config{GoVersion: "go1.17"}
    	mustTypecheck(src, &conf, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  9. src/go/ast/ast.go

    	Unresolved         []*Ident        // unresolved identifiers in this file. Deprecated: see Object
    	Comments           []*CommentGroup // list of all comments in the source file
    	GoVersion          string          // minimum Go version required by //go:build or // +build directives
    }
    
    // Pos returns the position of the package declaration.
    // (Use FileStart for the start of the entire file.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/list/list.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: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
Back to top