Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for pidFile (0.08 sec)

  1. src/runtime/proc.go

    	// p.runSafePointFn == 1 and will call runSafePointFn when
    	// changing its status to _Pidle/_Psyscall.
    
    	// Run safe point function for all idle Ps. sched.pidle will
    	// not change because we hold sched.lock.
    	for p := sched.pidle.ptr(); p != nil; p = p.link.ptr() {
    		if atomic.Cas(&p.runSafePointFn, 1, 0) {
    			fn(p)
    			sched.safePointWait--
    		}
    	}
    
    	wait := sched.safePointWait > 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. docs/en/docs/release-notes.md

    ## 0.30.1
    
    * Add section in docs about [External Links and Articles](https://fastapi.tiangolo.com/external-links/). PR [#341](https://github.com/tiangolo/fastapi/pull/341).
    
    * Remove `Pipfile.lock` from the repository as it is only used by FastAPI contributors (developers of FastAPI itself). See the PR for more details. PR [#340](https://github.com/tiangolo/fastapi/pull/340).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top