Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for Summarize (0.16 sec)

  1. src/cmd/trace/tasks.go

    func UserTasksHandlerFunc(t *parsedTrace) http.HandlerFunc {
    	return func(w http.ResponseWriter, r *http.Request) {
    		tasks := t.summary.Tasks
    
    		// Summarize groups of tasks with the same name.
    		summary := make(map[string]taskStats)
    		for _, task := range tasks {
    			stats, ok := summary[task.Name]
    			if !ok {
    				stats.Type = task.Name
    			}
    			stats.add(task)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. src/runtime/mpallocbits.go

    //
    // The precise representation is an implementation detail, but for the
    // sake of documentation, 0s are free pages and 1s are allocated pages.
    type pallocBits pageBits
    
    // summarize returns a packed summary of the bitmap in pallocBits.
    func (b *pallocBits) summarize() pallocSum {
    	var start, most, cur uint
    	const notSetYet = ^uint(0) // sentinel for start value
    	start = notSetYet
    	for i := 0; i < len(b); i++ {
    		x := b[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

                    val currentFingerprint = host.fingerprintOf(fileSystemInputs)
                    if (currentFingerprint != fileSystemInputsFingerprint) {
                        // TODO: summarize what has changed (see https://github.com/gradle/configuration-cache/issues/282)
                        return "an input to $workDisplayName has changed"
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. src/cmd/trace/regions.go

    )
    
    // UserRegionsHandlerFunc returns a HandlerFunc that reports all regions found in the trace.
    func UserRegionsHandlerFunc(t *parsedTrace) http.HandlerFunc {
    	return func(w http.ResponseWriter, r *http.Request) {
    		// Summarize all the regions.
    		summary := make(map[regionFingerprint]regionStats)
    		for _, g := range t.summary.Goroutines {
    			for _, r := range g.Regions {
    				id := fingerprintRegion(r)
    				stats, ok := summary[id]
    				if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. src/runtime/export_test.go

    func (b *PallocBits) Free(i, n uint)             { (*pallocBits)(b).free(i, n) }
    func (b *PallocBits) Summarize() PallocSum       { return PallocSum((*pallocBits)(b).summarize()) }
    func (b *PallocBits) PopcntRange(i, n uint) uint { return (*pageBits)(b).popcntRange(i, n) }
    
    // SummarizeSlow is a slow but more obviously correct implementation
    // of (*pallocBits).summarize. Used for testing.
    func SummarizeSlow(b *PallocBits) PallocSum {
    	var start, most, end uint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/mlrt/tf_to_mlrt.mlir

      // CHECK: [[tensor:%.*]] = tf_mlrt.await
      // CHECK: tf_mlrt.executeop([[tensor]])
      %0 = "tf.StringFormat"(%arg0) {__op_key = 0: i32, device = "/job:localhost/replica:0/task:0/device:CPU:0", placeholder = "{}", strtemplate = "%s", summarize = 3 : i64, template = "Outside compiled {}"} : (tensor<i32>) -> tensor<!tf_type.string>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

        private
        val problemsService: InternalProblems,
    
        private
        val failureFactory: FailureFactory
    
    ) : AbstractProblemsListener(), ProblemReporter, AutoCloseable {
    
        private
        val summarizer = ConfigurationCacheProblemsSummary()
    
        private
        val buildNameHandler = BuildNameHandler()
    
        private
        val postBuildHandler = PostBuildProblemsHandler()
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/internal/trace/summary.go

    	lastSyscallTime      Time
    	lastSyscallBlockTime Time
    	lastRangeTime        map[string]Time
    	activeRegions        []*UserRegionSummary // stack of active regions
    }
    
    // Summarizer constructs per-goroutine time statistics for v2 traces.
    type Summarizer struct {
    	// gs contains the map of goroutine summaries we're building up to return to the caller.
    	gs map[GoID]*GoroutineSummary
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    	// See tests for examples.
    	cppRegExp                = regexp.MustCompile(`^(?:[_a-zA-Z]\w*::)+(_*[A-Z]\w*::~?[_a-zA-Z]\w*(?:<.*>)?)`)
    	cppAnonymousPrefixRegExp = regexp.MustCompile(`^\(anonymous namespace\)::`)
    )
    
    // Graph summarizes a performance profile into a format that is
    // suitable for visualization.
    type Graph struct {
    	Nodes Nodes
    }
    
    // Options encodes the options for constructing a graph
    type Options struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  10. src/runtime/netpoll.go

    	fdseq atomic.Uintptr // protects against stale pollDesc
    
    	// atomicInfo holds bits from closing, rd, and wd,
    	// which are only ever written while holding the lock,
    	// summarized for use by netpollcheckerr,
    	// which cannot acquire the lock.
    	// After writing these fields under lock in a way that
    	// might change the summary, code must call publishInfo
    	// before releasing the lock.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top