Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 273 for _ecounters (0.24 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/internal/telemetry/types.go

    }
    
    type ProgramConfig struct {
    	// the counter names may have to be
    	// repeated for each program. (e.g., if the counters are in a package
    	// that is used in more than one program.)
    	Name     string
    	Versions []string        // versions present in a counterconfig
    	Counters []CounterConfig `json:",omitempty"`
    	Stacks   []CounterConfig `json:",omitempty"`
    }
    
    type CounterConfig struct {
    	Name  string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/covdata/metamerge.go

    	// FIXME: in theory either A) len(val.Counters) is zero, or B)
    	// the two lengths are equal. Assert if not? Of course, we could
    	// see odd stuff if there is source file skew.
    	if *verbflag > 4 {
    		fmt.Printf("visit pk=%d fid=%d len(counters)=%d\n", data.PkgIdx, data.FuncIdx, len(data.Counters))
    	}
    	if len(val.Counters) < len(data.Counters) {
    		t := val.Counters
    		val.Counters = mm.AllocateCounters(len(data.Counters))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/internal/config/config.go

    func Expand(counter string) []string {
    	prefix, rest, hasBuckets := strings.Cut(counter, "{")
    	var counters []string
    	if hasBuckets {
    		buckets := strings.Split(strings.TrimSuffix(rest, "}"), ",")
    		for _, b := range buckets {
    			counters = append(counters, prefix+b)
    		}
    	} else {
    		counters = append(counters, prefix)
    	}
    	return counters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. src/cmd/covdata/dump.go

    		return
    	}
    	key := pkfunc{pk: data.PkgIdx, fcn: data.FuncIdx}
    	val, found := d.mm[key]
    
    	dbgtrace(5, "ctr visit pk=%d fid=%d found=%v len(val.ctrs)=%d len(data.ctrs)=%d", data.PkgIdx, data.FuncIdx, found, len(val.Counters), len(data.Counters))
    
    	if len(val.Counters) < len(data.Counters) {
    		t := val.Counters
    		val.Counters = d.AllocateCounters(len(data.Counters))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:57 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. src/cmd/cover/testdata/main.go

    	count uint32
    	line  uint32
    }
    
    var counters = make(map[block]bool)
    
    // shorthand for the long counter variable.
    var coverTest = &thisNameMustBeVeryLongToCauseOverflowOfCounterIncrementStatementOntoNextLineForTest
    
    // check records the location and expected value for a counter.
    func check(line, count uint32) {
    	b := block{
    		count,
    		line,
    	}
    	counters[b] = true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 16:40:40 UTC 2016
    - 3K bytes
    - Viewed (0)
  6. src/internal/coverage/cfile/testsupport.go

    			if prev, found := pmm[key]; found {
    				// Note: no overflow reporting here.
    				if err, _ := ts.cm.MergeCounters(data.Counters, prev); err != nil {
    					return fmt.Errorf("processing counter data file %s: %v", cdf, err)
    				}
    			}
    			c := ts.AllocateCounters(len(data.Counters))
    			copy(c, data.Counters)
    			pmm[key] = c
    		}
    		return nil
    	}
    
    	// Read counter data files.
    	for _, cdf := range p.CounterDataFiles {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/counter/countertest/countertest.go

    func ReadStackCounter(c *counter.StackCounter) (stackCounts map[string]uint64, _ error) {
    	return ic.ReadStack(c)
    }
    
    // ReadFile reads the counters and stack counters from the given file.
    func ReadFile(name string) (counters, stackCounters map[string]uint64, _ error) {
    	return ic.ReadFile(name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:13:09 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. src/testing/cover.go

    // 'go tool cover'.
    func Coverage() float64 {
    	if goexperiment.CoverageRedesign {
    		return coverage2()
    	}
    	var n, d int64
    	for _, counters := range cover.Counters {
    		for i := range counters {
    			if atomic.LoadUint32(&counters[i]) > 0 {
    				n++
    			}
    			d++
    		}
    	}
    	if d == 0 {
    		return 0
    	}
    	return float64(n) / float64(d)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:37:31 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/counter/counter.go

    	return counter.NewStack(name, depth)
    }
    
    // Open prepares telemetry counters for recording to the file system.
    //
    // If the telemetry mode is "off", Open is a no-op. Otherwise, it opens the
    // counter file on disk and starts to mmap telemetry counters to the file.
    // Open also persists any counters already created in the current process.
    //
    // Programs using telemetry should call Open exactly once.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 18:02:34 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. src/cmd/covdata/subtractintersect.go

    		if s.mode == subtractMode {
    			for i := 0; i < len(data.Counters); i++ {
    				if data.Counters[i] != 0 {
    					val.Counters[i] = 0
    				}
    			}
    		} else if s.mode == intersectMode {
    			s.imm[key] = struct{}{}
    			for i := 0; i < len(data.Counters); i++ {
    				if data.Counters[i] == 0 {
    					val.Counters[i] = 0
    				}
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 12:50:46 UTC 2022
    - 5.5K bytes
    - Viewed (0)
Back to top