Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NFILES (0.05 sec)

  1. src/cmd/gofmt/long_test.go

    	files   = flag.String("files", "", "comma-separated list of files to test")
    	ngo     = flag.Int("n", runtime.NumCPU(), "number of goroutines used")
    	verbose = flag.Bool("verbose", false, "verbose mode")
    	nfiles  int // number of files processed
    )
    
    func gofmt(fset *token.FileSet, filename string, src *bytes.Buffer) error {
    	f, _, _, err := parse(fset, filename, src.Bytes(), false)
    	if err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 20:27:28 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/numberlines.go

    				minline = v.lp.first
    			}
    			if maxline < v.lp.last {
    				maxline = v.lp.last
    			}
    		}
    		f.LogStat("SUM_LINE_RANGE", total, "MAXMIN_LINE_RANGE", maxline-minline, "MAXFILE", maxfile, "NFILES", len(entries))
    	}
    	// cachedLineStarts is an empty sparse map for values that are included within ranges.
    	f.cachedLineStarts = newXposmap(ranges)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 21:26:13 UTC 2023
    - 7.8K bytes
    - Viewed (0)
Back to top