Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for Pkgs (0.09 sec)

  1. src/cmd/link/internal/loader/loader.go

    	if l.flags&FlagCheckLinkname == 0 {
    		return
    	}
    
    	error := func() {
    		log.Fatalf("%s: invalid reference to %s", pkg, name)
    	}
    	pkgs, ok := blockedLinknames[name]
    	if ok {
    		for _, p := range pkgs {
    			if pkg == p {
    				return // pkg is allowed
    			}
    		}
    		error()
    	}
    	r, li := l.toLocal(s)
    	if r == l.extReader { // referencing external symbol is okay
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/init.go

    		if gover.Compare(ld.requirements.GoVersion(), gover.TidyGoModSumVersion) < 0 && (ld.Tidy || cfg.BuildMod != "mod") {
    			keepPkgGoModSums = false
    			keepModSumsForZipSums = false
    		}
    		for _, pkg := range ld.pkgs {
    			// We check pkg.mod.Path here instead of pkg.inStd because the
    			// pseudo-package "C" is not in std, but not provided by any module (and
    			// shouldn't force loading the whole module graph).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    		s.callResult(n, callNormal)
    		if n.Op() == ir.OCALLFUNC && n.Fun.Op() == ir.ONAME && n.Fun.(*ir.Name).Class == ir.PFUNC {
    			if fn := n.Fun.Sym().Name; base.Flag.CompilingRuntime && fn == "throw" ||
    				n.Fun.Sym().Pkg == ir.Pkgs.Runtime &&
    					(fn == "throwinit" || fn == "gopanic" || fn == "panicwrap" || fn == "block" ||
    						fn == "panicmakeslicelen" || fn == "panicmakeslicecap" || fn == "panicunsafeslicelen" ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top