Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CompiledGoFiles (0.31 sec)

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

    	GoFiles           []string `json:",omitempty"` // .go source files (excluding CgoFiles, TestGoFiles, XTestGoFiles)
    	CgoFiles          []string `json:",omitempty"` // .go source files that import "C"
    	CompiledGoFiles   []string `json:",omitempty"` // .go output from running cgo on CgoFiles
    	IgnoredGoFiles    []string `json:",omitempty"` // .go source files ignored due to build constraints
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //
    // The -compiled flag causes list to set CompiledGoFiles to the Go source
    // files presented to the compiler. Typically this means that it repeats
    // the files listed in GoFiles and then also adds the Go code generated
    // by processing CgoFiles and SwigFiles. The Imports list contains the
    // union of all imports from both GoFiles and CompiledGoFiles.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    			continue
    		}
    		file, err := b.findCachedObjdirFile(a, c, name)
    		if err != nil {
    			return fmt.Errorf("finding %s: %w", name, err)
    		}
    		gofiles = append(gofiles, file)
    	}
    	a.Package.CompiledGoFiles = gofiles
    	return nil
    }
    
    // vetConfig is the configuration passed to vet describing a single package.
    type vetConfig struct {
    	ID           string   // package ID (example: "fmt [fmt.test]")
    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