Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,363 for pauses (0.56 sec)

  1. src/sync/pool_test.go

    	slices.Sort(pauses)
    	var total uint64
    	for _, ns := range pauses {
    		total += ns
    	}
    	// ns/op for this benchmark is average STW time.
    	b.ReportMetric(float64(total)/float64(b.N), "ns/op")
    	b.ReportMetric(float64(pauses[len(pauses)*95/100]), "p95-ns/STW")
    	b.ReportMetric(float64(pauses[len(pauses)*50/100]), "p50-ns/STW")
    }
    
    func BenchmarkPoolExpensiveNew(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. src/runtime/metrics/description.go

    		Name: "/cpu/classes/gc/pause:cpu-seconds",
    		Description: "Estimated total CPU time spent with the application paused by " +
    			"the GC. Even if only one thread is running during the pause, this is " +
    			"computed as GOMAXPROCS times the pause latency because nothing else " +
    			"can be executing. This is the exact sum of samples in " +
    			"/sched/pauses/total/gc:seconds if each sample is multiplied by " +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  3. src/runtime/metrics_test.go

    	// Verify that /gc/pauses:seconds is a copy of /sched/pauses/total/gc:seconds
    	if !reflect.DeepEqual(gcPauses.Buckets, schedPausesTotalGC.Buckets) {
    		t.Errorf("/gc/pauses:seconds buckets %v do not match /sched/pauses/total/gc:seconds buckets %v", gcPauses.Buckets, schedPausesTotalGC.Counts)
    	}
    	if !reflect.DeepEqual(gcPauses.Counts, schedPausesTotalGC.Counts) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  4. src/runtime/mstats.go

    		throw("short slice passed to readGCStats")
    	}
    
    	// Pass back: pauses, pause ends, last gc (absolute time), number of gc, total pause ns.
    	lock(&mheap_.lock)
    
    	n := memstats.numgc
    	if n > uint32(len(memstats.pause_ns)) {
    		n = uint32(len(memstats.pause_ns))
    	}
    
    	// The pause buffer is circular. The most recent pause is at
    	// pause_ns[(numgc-1)%len(pause_ns)], and then backward
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  5. src/runtime/metrics/doc.go

    	/cpu/classes/gc/pause:cpu-seconds
    		Estimated total CPU time spent with the application paused by
    		the GC. Even if only one thread is running during the pause,
    		this is computed as GOMAXPROCS times the pause latency because
    		nothing else can be executing. This is the exact sum of samples
    		in /sched/pauses/total/gc:seconds if each sample is multiplied
    		by GOMAXPROCS at the time it is taken. This metric is an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. src/main/assemblies/files/fess.in.sh

    #FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Djavax.net.ssl.trustStorePassword=changeit"
    
    # min and max heap sizes should be set to the same value to avoid
    # stop-the-world GC pauses during resize, and so that we can lock the
    # heap in memory on startup to prevent any of it from being swapped
    # out.
    FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Xms${FESS_MIN_MEM}"
    FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Xmx${FESS_MAX_MEM}"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. src/main/assemblies/files/fess.in.bat

    )
    
    if NOT "%FESS_HEAP_SIZE%" == "" (
    set FESS_MIN_MEM=%FESS_HEAP_SIZE%
    set FESS_MAX_MEM=%FESS_HEAP_SIZE%
    )
    
    REM min and max heap sizes should be set to the same value to avoid
    REM stop-the-world GC pauses during resize, and so that we can lock the
    REM heap in memory on startup to prevent any of it from being swapped
    REM out.
    set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Xms%FESS_MIN_MEM% -Xmx%FESS_MAX_MEM%
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. src/runtime/debug/garbage.go

    	// any conversion.
    	readGCStats(&stats.Pause)
    	n := len(stats.Pause) - 3
    	stats.LastGC = time.Unix(0, int64(stats.Pause[n]))
    	stats.NumGC = int64(stats.Pause[n+1])
    	stats.PauseTotal = stats.Pause[n+2]
    	n /= 2 // buffer holds pauses and end times
    	stats.Pause = stats.Pause[:n]
    
    	if cap(stats.PauseEnd) < maxPause {
    		stats.PauseEnd = make([]time.Time, 0, maxPause)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. src/runtime/metrics.go

    				sched.timeToRun.write(out)
    			},
    		},
    		"/sched/pauses/stopping/gc:seconds": {
    			compute: func(_ *statAggregate, out *metricValue) {
    				sched.stwStoppingTimeGC.write(out)
    			},
    		},
    		"/sched/pauses/stopping/other:seconds": {
    			compute: func(_ *statAggregate, out *metricValue) {
    				sched.stwStoppingTimeOther.write(out)
    			},
    		},
    		"/sched/pauses/total/gc:seconds": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  10. pkg/ctrlz/topics/assets/templates/mem.html

        </script>
    
        <tr>
            <td>PauseTotalNs</td>
            <td id="PauseTotalNs">{{.PauseTotalNs}} ns</td>
            <td>Cumulative time spent in GC stop-the-world pauses.</td>
        </tr>
    
        <tr>
            <td>NumGC</td>
            <td id="NumGC">{{.NumGC}} GC cycles</td>
            <td>Completed GC cycles.</td>
        </tr>
    
        <tr>
            <td>NumForcedGC</td>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top