Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for TotalTime (1.05 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestPageGenerator.java

                        }
                    }
                    return previousResults;
                }
    
                private void addPerformanceGraphs() {
                    List<Chart> charts = Lists.newArrayList(new Chart("totalTime", "total time", "s", "totalTimeChart", false));
                    if(testHistory instanceof CrossVersionPerformanceTestHistory) {
                        charts.add(new Chart("confidence", "confidence", "%", "confidenceChart", false));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. src/runtime/metrics_test.go

    	}
    	total := gcTotal + scavTotal + stats.IdleTime + stats.UserTime
    	if total != stats.TotalTime {
    		t.Errorf("manually computed overall total does not match TotalTime: %d cpu-ns vs. %d cpu-ns", total, stats.TotalTime)
    	}
    	if total == 0 {
    		t.Error("total time is zero")
    	}
    	if gcTotal == 0 {
    		t.Error("GC total time is zero")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  3. src/runtime/pprof/pprof_test.go

    				var value time.Duration
    				for _, sample := range p.Sample {
    					value += time.Duration(sample.Value[1]) * time.Nanosecond
    				}
    
    				totalTime := userTime + systemTime
    				t.Logf("compare %s user + %s system = %s vs %s", userTime, systemTime, totalTime, value)
    				if err := compare(totalTime, value, maxDiff); err != nil {
    					t.Logf("compare got %v want nil", err)
    					ok = false
    				}
    
    				return ok
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  4. src/runtime/metrics.go

    		},
    		"/cpu/classes/total:cpu-seconds": {
    			deps: makeStatDepSet(cpuStatsDep),
    			compute: func(in *statAggregate, out *metricValue) {
    				out.kind = metricKindFloat64
    				out.scalar = float64bits(nsToSec(in.cpuStats.TotalTime))
    			},
    		},
    		"/cpu/classes/user:cpu-seconds": {
    			deps: makeStatDepSet(cpuStatsDep),
    			compute: func(in *statAggregate, out *metricValue) {
    				out.kind = metricKindFloat64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  5. src/runtime/mgc.go

    	// Compute overall GC CPU utilization.
    	// Omit idle marking time from the overall utilization here since it's "free".
    	memstats.gc_cpu_fraction = float64(work.cpuStats.GCTotalTime-work.cpuStats.GCIdleTime) / float64(work.cpuStats.TotalTime)
    
    	// Reset assist time and background time stats.
    	//
    	// Do this now, instead of at the start of the next GC cycle, because
    	// these two may keep accumulating even if the GC is not active.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  6. src/runtime/runtime2.go

    	safePointFn   func(*p)
    	safePointWait int32
    	safePointNote note
    
    	profilehz int32 // cpu profiling rate
    
    	procresizetime int64 // nanotime() of last change to gomaxprocs
    	totaltime      int64 // ∫gomaxprocs dt up to procresizetime
    
    	// sysmonlock protects sysmon's actions on the runtime.
    	//
    	// Acquire and hold this mutex to block sysmon from interacting
    	// with the rest of the runtime.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    		}
    	}
    
    	// Capture start-the-world time before doing clean-up tasks.
    	if now == 0 {
    		now = nanotime()
    	}
    	totalTime := now - w.startedStopping
    	if w.reason.isGC() {
    		sched.stwTotalTimeGC.record(totalTime)
    	} else {
    		sched.stwTotalTimeOther.record(totalTime)
    	}
    	trace := traceAcquire()
    	if trace.ok() {
    		trace.STWDone()
    		traceRelease(trace)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  8. src/internal/trace/traceviewer/static/trace_viewer_full.html

    const blinkRCSGroupCollection=runtimeGroupCollection.blinkRCSGroupCollection;if(runtimeGroupCollection.blinkCppTotalTime>0&&blinkRCSGroupCollection.totalTime>0){this.$.blink_rcs_heading.textContent='Blink Runtime Call S...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (1)
Back to top