Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 6cov (0.03 sec)

  1. src/cmd/covdata/covdata.go

    	// ... off and running now.
    	dbgtrace(1, "starting perform")
    
    	indirs := strings.Split(*indirsflag, ",")
    	vis := cov.CovDataVisitor(op)
    	var flags cov.CovDataReaderFlags
    	if *hflag {
    		flags |= cov.PanicOnError
    	}
    	if *hwflag {
    		flags |= cov.PanicOnWarning
    	}
    	reader := cov.MakeCovDataReader(vis, indirs, *verbflag, flags, matchpkg)
    	st := 0
    	if err := reader.Visit(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. src/internal/coverage/cformat/format.go

    	pkgs := make([]string, 0, len(fm.pm))
    	for importpath := range fm.pm {
    		pkgs = append(pkgs, importpath)
    	}
    
    	rep := func(cov, tot uint64) error {
    		if tot != 0 {
    			if _, err := fmt.Fprintf(w, "coverage: %.1f%% of statements%s\n",
    				100.0*float64(cov)/float64(tot), covpkgs); err != nil {
    				return err
    			}
    		} else if noteEmpty {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. src/internal/coverage/cfile/ts_test.go

    	strc := string(contents)
    	if err != nil {
    		t.Fatalf("problems reading text file %s: %v", textfile, err)
    	}
    	if !strings.Contains(strc, token) {
    		t.Logf("content: %s\n", string(contents))
    		t.Fatalf("cov profile does not contain aux meta content %q", token)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:58:07 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top