Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AllocFree (0.08 sec)

  1. src/internal/trace/event/go122/event.go

    )
    
    // Experiments.
    const (
    	// AllocFree is the alloc-free events experiment.
    	AllocFree event.Experiment = 1 + iota
    )
    
    // Experimental events.
    const (
    	_ event.Type = 127 + iota
    
    	// Experimental events for AllocFree.
    
    	// Experimental heap span events. Added in Go 1.23.
    	EvSpan      // heap span exists [timestamp, id, npages, type/class]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. src/internal/trace/trace_test.go

    		runTest(t, false, "")
    	})
    	t.Run("Stress", func(t *testing.T) {
    		if testing.Short() {
    			t.Skip("skipping trace stress tests in short mode")
    		}
    		runTest(t, true, "")
    	})
    	t.Run("AllocFree", func(t *testing.T) {
    		if testing.Short() {
    			t.Skip("skipping trace alloc/free tests in short mode")
    		}
    		runTest(t, false, "traceallocfree=1")
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top