Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/go/internal/load/test.go

    		}
    	}
    	stk.Pop()
    
    	parallelizablePart := func() {
    		if cover != nil && cover.Pkgs != nil && !cfg.Experiment.CoverageRedesign {
    			// Add imports, but avoid duplicates.
    			seen := map[*Package]bool{p: true, ptest: true}
    			for _, p1 := range pmain.Internal.Imports {
    				seen[p1] = true
    			}
    			for _, p1 := range cover.Pkgs {
    				if seen[p1] {
    					// Don't add duplicate imports.
    					continue
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/walk.go

    	sel.SetTypecheck(1)
    	sel.SetBounded(true) // guaranteed not to fault
    	return sel
    }
    
    func runtimeField(name string, offset int64, typ *types.Type) *types.Field {
    	f := types.NewField(src.NoXPos, ir.Pkgs.Runtime.Lookup(name), typ)
    	f.Offset = offset
    	return f
    }
    
    // ifaceData loads the data field from an interface.
    // The concrete type must be known to have type t.
    // It follows the pointer if !IsDirectIface(t).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:56:00 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/staticdata/data.go

    		s := nam.Sym()
    		sf := s.Pkg.Lookup(ir.FuncSymName(s)).Linksym()
    
    		// While compiling package runtime, we might try to create
    		// funcsyms for functions from both types.LocalPkg and
    		// ir.Pkgs.Runtime.
    		if base.Flag.CompilingRuntime && sf.OnList() {
    			continue
    		}
    
    		// Function values must always reference ABIInternal
    		// entry points.
    		target := s.Linksym()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:08:50 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top