Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 792 for sweep (0.2 sec)

  1. src/runtime/traceevent.go

    	traceEvGCBegin            // GC start [timestamp, seq, stack ID]
    	traceEvGCEnd              // GC done [timestamp, seq]
    	traceEvGCSweepActive      // GC sweep active [timestamp, P ID]
    	traceEvGCSweepBegin       // GC sweep start [timestamp, stack ID]
    	traceEvGCSweepEnd         // GC sweep done [timestamp, swept bytes, reclaimed bytes]
    	traceEvGCMarkAssistActive // GC mark assist active [timestamp, goroutine ID]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. src/runtime/mklockrank.go

    NONE
    < sysmon
    < scavenge, forcegc;
    
    # Defer
    NONE < defer;
    
    # GC
    NONE <
      sweepWaiters,
      assistQueue,
      sweep;
    
    # Test only
    NONE < testR, testW;
    
    NONE < timerSend;
    
    # Scheduler, timers, netpoll
    NONE < allocmW, execW, cpuprof, pollCache, pollDesc, wakeableSleep;
    scavenge, sweep, testR, wakeableSleep, timerSend < hchan;
    assistQueue,
      cpuprof,
      forcegc,
      hchan,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/issue9400_linux.go

    	defer debug.SetGCPercent(debug.SetGCPercent(-1))
    	// SetGCPercent waits until the mark phase is over, but the runtime
    	// also preempts at the start of the sweep phase, so make sure that's
    	// done too. See #49695.
    	runtime.GC()
    
    	// Temporarily rewind the stack and trigger SIGSETXID
    	issue9400.RewindAndSetgid()
    
    	// Check test pattern
    	for i := range big {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 19:55:29 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. src/runtime/mheap.go

    	// access (since that may free the backing store).
    	allspans []*mspan // all spans out there
    
    	// Proportional sweep
    	//
    	// These parameters represent a linear function from gcController.heapLive
    	// to page sweep count. The proportional sweep system works to
    	// stay in the black by keeping the current page sweep count
    	// above this line at the current gcController.heapLive.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  5. src/internal/trace/event/go122/event.go

    	EvGCBegin            // GC start [timestamp, seq, stack ID]
    	EvGCEnd              // GC done [timestamp, seq]
    	EvGCSweepActive      // GC sweep active [timestamp, P ID]
    	EvGCSweepBegin       // GC sweep start [timestamp, stack ID]
    	EvGCSweepEnd         // GC sweep done [timestamp, swept bytes, reclaimed bytes]
    	EvGCMarkAssistActive // GC mark assist active [timestamp, goroutine ID]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. src/runtime/rwmutex_test.go

    	// Disable GC for this test (see issue #10958).
    	defer debug.SetGCPercent(debug.SetGCPercent(-1))
    	// SetGCPercent waits until the mark phase is over, but the runtime
    	// also preempts at the start of the sweep phase, so make sure that's
    	// done too.
    	GC()
    
    	doTestParallelReaders(1)
    	doTestParallelReaders(3)
    	doTestParallelReaders(4)
    }
    
    func reader(rwm *RWMutex, num_iterations int, activity *int32, cdone chan bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 22:00:45 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. src/runtime/mgcpacer.go

    		if sweepDistTrigger > goal {
    			// Set the goal to maintain a minimum sweep distance since
    			// the last call to commit. Note that we never want to do this
    			// if we're in the memory limit regime, because it could push
    			// the goal up.
    			goal = sweepDistTrigger
    		}
    		// Since we ignore the sweep distance trigger in the memory
    		// limit regime, we need to ensure we don't propagate it to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. src/runtime/trace.go

    	// hits a traceAcquire, it sees that the trace is enabled.
    	//
    	// Note also that stopping the world is necessary to make sure sweep-related events are
    	// coherent. Since the world is stopped and sweeps are non-preemptible, we can never start
    	// the world and see an unpaired sweep 'end' event. Other parts of the tracer rely on this.
    	stw := stopTheWorld(stwStartTrace)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  9. pkg/kubelet/metrics/metrics.go

    	OrphanPodCleanedVolumes = metrics.NewGauge(
    		&metrics.GaugeOpts{
    			Subsystem:      KubeletSubsystem,
    			Name:           orphanPodCleanedVolumesKey,
    			Help:           "The total number of orphaned Pods whose volumes were cleaned in the last periodic sweep.",
    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  10. src/runtime/mgclimit.go

    	//
    	// gcBlackenEnabled isn't used directly so as to keep this structure
    	// unit-testable.
    	gcEnabled bool
    
    	// transitioning is true when the GC is in a STW and transitioning between
    	// the mark and sweep phases.
    	transitioning bool
    
    	// test indicates whether this instance of the struct was made for testing purposes.
    	test bool
    
    	bucket struct {
    		// Invariants:
    		// - fill >= 0
    		// - capacity >= 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top