Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,769 for runfinq (0.11 sec)

  1. src/cmd/internal/objabi/funcid.go

    	"main":               abi.FuncID_runtime_main,
    	"mcall":              abi.FuncID_mcall,
    	"morestack":          abi.FuncID_morestack,
    	"mstart":             abi.FuncID_mstart,
    	"panicwrap":          abi.FuncID_panicwrap,
    	"runfinq":            abi.FuncID_runfinq,
    	"sigpanic":           abi.FuncID_sigpanic,
    	"systemstack_switch": abi.FuncID_systemstack_switch,
    	"systemstack":        abi.FuncID_systemstack,
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 21:33:59 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. src/runtime/mfinal.go

    	if fingStatus.Load() == fingUninitialized && fingStatus.CompareAndSwap(fingUninitialized, fingCreated) {
    		go runfinq()
    	}
    }
    
    func finalizercommit(gp *g, lock unsafe.Pointer) bool {
    	unlock((*mutex)(lock))
    	// fingStatus should be modified after fing is put into a waiting state
    	// to avoid waking fing in running state, even if it is about to be parked.
    	fingStatus.Or(fingWait)
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. src/runtime/pprof/pprof_test.go

    		}
    	}
    
    	// If we're running a long test, start with a long duration
    	// for tests that try to make sure something *doesn't* happen.
    	duration := 5 * time.Second
    	if testing.Short() {
    		duration = 100 * time.Millisecond
    	}
    
    	// Profiling tests are inherently flaky, especially on a
    	// loaded system, such as when this test is running with
    	// several others under go test std. If a test fails in a way
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  4. src/runtime/traceback.go

    	//
    	//	frame 1 defers d1
    	//	frame 2 defers d2
    	//	frame 3 defers d3
    	//	frame 4 panics
    	//	frame 4's panic starts running defers
    	//	frame 5, running d3, defers d4
    	//	frame 5 panics
    	//	frame 5's panic starts running defers
    	//	frame 6, running d4, garbage collects
    	//	frame 6, running d2, garbage collects
    	//
    	// During the execution of d4, the panic stack is d4 -> d3, which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/configuration-cache/running-help.gif

    running-help.gif...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 156.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Running.kt

    Rodrigo B. de Oliveira <******@****.***> 1716386557 -0300
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 20:48:51 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. pkg/bootstrap/testdata/running.proxycfg

    Rama Chavali <******@****.***> 1671589100 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 02:18:20 UTC 2022
    - 483 bytes
    - Viewed (0)
  8. src/internal/trace/testdata/generators/go122-go-create-without-running-g.go

    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	g1 := t.Generation(1)
    
    	// A goroutine gets created on a running P, then starts running.
    	b0 := g1.Batch(trace.ThreadID(0), 0)
    	b0.Event("ProcStatus", trace.ProcID(0), go122.ProcRunning)
    	b0.Event("GoCreate", trace.GoID(5), testgen.NoStack, testgen.NoStack)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 996 bytes
    - Viewed (0)
  9. pkg/test/framework/suite_test.go

    	g := NewWithT(t)
    
    	var waitForRun1 sync.WaitGroup
    	waitForRun1.Add(1)
    	var waitForTestCompletion sync.WaitGroup
    	waitForTestCompletion.Add(1)
    	runFn1 := func(ctx *suiteContext) int {
    		waitForRun1.Done()
    		waitForTestCompletion.Wait()
    		return 0
    	}
    
    	runFn2 := func(ctx *suiteContext) int {
    		return 0
    	}
    
    	var waitForExit1Call sync.WaitGroup
    	waitForExit1Call.Add(1)
    	var errCode1 int
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. src/internal/trace/testdata/tests/go122-go-create-without-running-g.test

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 446 bytes
    - Viewed (0)
Back to top