Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for ignoredFile (0.12 sec)

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

    	for _, f := range pass.Files {
    		checkGoFile(pass, f)
    	}
    	for _, name := range pass.OtherFiles {
    		if err := checkOtherFile(pass, name); err != nil {
    			return nil, err
    		}
    	}
    	for _, name := range pass.IgnoredFiles {
    		if strings.HasSuffix(name, ".go") {
    			f, err := parser.ParseFile(pass.Fset, name, nil, parser.ParseComments|parser.SkipObjectResolution)
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modindex/read.go

    				if x, err := constraint.Parse(text); err == nil {
    					if !ctxt.eval(x, allTags) {
    						shouldBuild = false
    					}
    				}
    			}
    		}
    
    		ext := nameExt(name)
    		if !shouldBuild || tf.ignoreFile() {
    			if ext == ".go" {
    				p.IgnoredGoFiles = append(p.IgnoredGoFiles, name)
    			} else if fileListForExt(p, ext) != nil {
    				p.IgnoredOtherFiles = append(p.IgnoredOtherFiles, name)
    			}
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    	ImportPath   string   // canonical import path ("package path")
    	GoFiles      []string // absolute paths to package source files
    	NonGoFiles   []string // absolute paths to package non-Go files
    	IgnoredFiles []string // absolute paths to ignored source files
    
    	ModulePath    string            // module path (may be "" on module error)
    	ModuleVersion string            // module version (may be "" on main module or module error)
    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