Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NonGoFiles (0.21 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    	Dir                       string // (unused)
    	ImportPath                string // package path
    	GoVersion                 string // minimum required Go version, such as "go1.21.0"
    	GoFiles                   []string
    	NonGoFiles                []string
    	IgnoredFiles              []string
    	ImportMap                 map[string]string // maps import path to package path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    	// Classify files based on .go extension.
    	// srcfiles does not include raw cgo files.
    	var gofiles, nongofiles []string
    	for _, name := range srcfiles {
    		if strings.HasSuffix(name, ".go") {
    			gofiles = append(gofiles, name)
    		} else {
    			nongofiles = append(nongofiles, name)
    		}
    	}
    
    	ignored := str.StringList(a.Package.IgnoredGoFiles, a.Package.IgnoredOtherFiles)
    
    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