Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for BenchmarkZ (0.14 sec)

  1. cmd/test-utils_test.go

    // This makes it easy to run the TestServer from any of the tests.
    // Using this interface, functionalities to be used in tests can be
    // made generalized, and can be integrated in benchmarks/unit tests/go check suite tests.
    type TestErrHandler interface {
    	testing.TB
    }
    
    const (
    	// ErasureSDStr is the string which is used as notation for Single node ObjectLayer in the unit tests.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    	// Wait for mark termination N+1 to complete.
    	gcWaitOnMark(n + 1)
    
    	// Finish sweep N+1 before returning. We do this both to
    	// complete the cycle and because runtime.GC() is often used
    	// as part of tests and benchmarks to get the system into a
    	// relatively stable and isolated state.
    	for work.cycles.Load() == n+1 && sweepone() != ^uintptr(0) {
    		Gosched()
    	}
    
    	// Callers may assume that the heap profile reflects the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. src/runtime/malloc.go

    			// for an inner byte of a memory block.
    			//
    			// The main targets of tiny allocator are small strings and
    			// standalone escaping variables. On a json benchmark
    			// the allocator reduces number of allocations by ~12% and
    			// reduces heap size by ~20%.
    			off := c.tinyoffset
    			// Align tiny pointer for required (conservative) alignment.
    			if size&7 == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top