Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 120 for GoVersion (0.37 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. src/go/build/build.go

    package build
    
    import (
    	"bytes"
    	"errors"
    	"fmt"
    	"go/ast"
    	"go/build/constraint"
    	"go/doc"
    	"go/token"
    	"internal/buildcfg"
    	"internal/godebug"
    	"internal/goroot"
    	"internal/goversion"
    	"internal/platform"
    	"io"
    	"io/fs"
    	"os"
    	"os/exec"
    	pathpkg "path"
    	"path/filepath"
    	"runtime"
    	"slices"
    	"strconv"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    	_ "unsafe" // for linkname
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/go/internal/modfetch/coderepo.go

    		goVers := gover.GoModLookup(gomod, "go")
    		if gover.Compare(goVers, gover.Local()) > 0 {
    			return &gover.TooNewError{What: r.ModulePath() + "@" + version, GoVersion: goVers}
    		}
    	} else if !errors.Is(err, fs.ErrNotExist) {
    		return err
    	}
    
    	dl, err := r.code.ReadZip(ctx, rev, subdir, codehost.MaxZipFile)
    	if err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
Back to top