Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for RawImports (0.17 sec)

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

    		ptest.Target = ""
    		// Note: The preparation of the vet config requires that common
    		// indexes in ptest.Imports and ptest.Internal.RawImports
    		// all line up (but RawImports can be shorter than the others).
    		// That is, for 0 ≤ i < len(RawImports),
    		// RawImports[i] is the import string in the program text, and
    		// Imports[i] is the expanded import string (vendoring applied or relative path expanded away).
    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/go/internal/list/list.go

    					}
    				}
    			}
    		}
    	}
    
    	// Record non-identity import mappings in p.ImportMap.
    	for _, p := range pkgs {
    		nRaw := len(p.Internal.RawImports)
    		for i, path := range p.Imports {
    			var srcPath string
    			if i < nRaw {
    				srcPath = p.Internal.RawImports[i]
    			} else {
    				// This path is not within the raw imports, so it must be an import
    				// found only within CompiledGoFiles. Those paths are found in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    	p.Imports = make([]string, len(pp.Imports))
    	copy(p.Imports, pp.Imports)
    	p.Internal.RawImports = pp.Imports
    	p.TestGoFiles = pp.TestGoFiles
    	p.TestImports = pp.TestImports
    	p.XTestGoFiles = pp.XTestGoFiles
    	p.XTestImports = pp.XTestImports
    	if opts.IgnoreImports {
    		p.Imports = nil
    		p.Internal.RawImports = nil
    		p.TestImports = nil
    		p.XTestImports = nil
    	}
    	p.EmbedPatterns = pp.EmbedPatterns
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	// and the compiler falls back to looking in pkg itself, which mostly works,
    	// except when it doesn't.
    	var icfg bytes.Buffer
    	fmt.Fprintf(&icfg, "# import config\n")
    	for i, raw := range p.Internal.RawImports {
    		final := p.Imports[i]
    		if final != raw {
    			fmt.Fprintf(&icfg, "importmap %s=%s\n", raw, final)
    		}
    	}
    	for _, a1 := range a.Deps {
    		p1 := a1.Package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top