Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 460 for race (0.05 sec)

  1. src/runtime/mspanset.go

    	// the block is set.
    	block := blockp.Load()
    	s := block.spans[bottom].Load()
    	for s == nil {
    		// We raced with the span actually being set, but given that we
    		// know a block for this span exists, the race window here is
    		// extremely small. Try again.
    		s = block.spans[bottom].Load()
    	}
    	// Clear the pointer. This isn't strictly necessary, but defensively
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug_test.go

    	subTest(t, debugger+"-dbg", "scopes", dbgFlags, moreargs...)
    	subTest(t, debugger+"-dbg", "i22558", dbgFlags, moreargs...)
    
    	subTest(t, debugger+"-dbg-race", "i22600", dbgFlags, append(moreargs, "-race")...)
    
    	optSubTest(t, debugger+"-opt", "hist", optFlags, 1000, moreargs...)
    	optSubTest(t, debugger+"-opt", "scopes", optFlags, 1000, moreargs...)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  3. src/database/sql/fakedb_test.go

    }
    
    type memToucher interface {
    	// touchMem reads & writes some memory, to help find data races.
    	touchMem()
    }
    
    type fakeConn struct {
    	db *fakeDB // where to return ourselves to
    
    	currTx *fakeTx
    
    	// Every operation writes to line to enable the race detector
    	// check for data races.
    	line int64
    
    	// Stats for tests:
    	mu          sync.Mutex
    	stmtsMade   int
    	stmtsClosed int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. src/runtime/pprof/pprof.go

    // and controls where the stack trace begins. Passing skip=0 begins the
    // trace in the function calling Add. For example, given this
    // execution stack:
    //
    //	Add
    //	called from rpc.NewClient
    //	called from mypkg.Run
    //	called from main.main
    //
    // Passing skip=0 begins the stack trace at the call to Add inside rpc.NewClient.
    // Passing skip=1 begins the stack trace at the call to NewClient inside mypkg.Run.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  5. pkg/controller/servicecidrs/servicecidrs_controller.go

    			return err
    		}
    		// If there are no IPAddress depending on this ServiceCIDR is safe to remove it,
    		// however, there can be a race when the allocators still consider the ServiceCIDR
    		// ready and allocate a new IPAddress from them, to avoid that, we wait during a
    		// a grace period to be sure the deletion change has been propagated to the allocators
    		// and no new IPAddress is going to be allocated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

        thread.join();
        // It's possible to race and suspend the thread just before the park call actually takes effect,
        // causing the thread to be suspended for 3.5 seconds, and then park itself for 2 seconds after
        // being resumed. To avoid a flake in this scenario, calculate how long that thread actually
        // waited and assert based on that time. Empirically, the race where the thread ends up waiting
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  7. src/os/exec/exec.go

    		// (It is safe and non-racy to do so on Unix platforms, and users might not
    		// test with the race detector on all platforms;
    		// see https://go.dev/issue/62596.)
    		//
    		// So we will pass the fully resolved path to os.StartProcess, but leave
    		// c.Path as is: missing a bit of logging information seems less harmful
    		// than triggering a surprising data race, and if the user really cares
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  8. src/runtime/runtime2.go

    	waitReasonFlushProcCaches                         // "flushing proc caches"
    	waitReasonTraceGoroutineStatus                    // "trace goroutine status"
    	waitReasonTraceProcStatus                         // "trace proc status"
    	waitReasonPageTraceFlush                          // "page trace flush"
    	waitReasonCoroutine                               // "coroutine"
    )
    
    var waitReasonStrings = [...]string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  9. src/fmt/fmt_test.go

    	switch {
    	case testing.Short():
    		t.Skip("skipping malloc count in short mode")
    	case runtime.GOMAXPROCS(0) > 1:
    		t.Skip("skipping; GOMAXPROCS>1")
    	case race.Enabled:
    		t.Skip("skipping malloc count under race detector")
    	}
    	for _, mt := range mallocTest {
    		mallocs := testing.AllocsPerRun(100, mt.fn)
    		if got, max := mallocs, float64(mt.count); got > max {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  10. internal/logger/target/http/http.go

    	workers    int64
    	maxWorkers int64
    	// workerStartMu sync.Mutex
    	lastStarted time.Time
    
    	wg sync.WaitGroup
    
    	// Channel of log entries.
    	// Reading logCh must hold read lock on logChMu (to avoid read race)
    	// Sending a value on logCh must hold read lock on logChMu (to avoid closing)
    	logCh   chan interface{}
    	logChMu sync.RWMutex
    
    	// If this webhook is being re-configured we will
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top