Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for beforeIdle (0.37 sec)

  1. src/runtime/lock_futex.go

    	gp := getg()
    	if gp == gp.m.g0 {
    		throw("notetsleepg on g0")
    	}
    
    	entersyscallblock()
    	ok := notetsleep_internal(n, ns)
    	exitsyscall()
    	return ok
    }
    
    func beforeIdle(int64, int64) (*g, bool) {
    	return nil, false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:34 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. src/runtime/lock_sema.go

    	gp := getg()
    	if gp == gp.m.g0 {
    		throw("notetsleepg on g0")
    	}
    	semacreate(gp.m)
    	entersyscallblock()
    	ok := notetsleep_internal(n, ns, nil, 0)
    	exitsyscall()
    	return ok
    }
    
    func beforeIdle(int64, int64) (*g, bool) {
    	return nil, false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    	}
    
    	// wasm only:
    	// If a callback returned and no other goroutine is awake,
    	// then wake event handler goroutine which pauses execution
    	// until a callback was triggered.
    	gp, otherReady := beforeIdle(now, pollUntil)
    	if gp != nil {
    		trace := traceAcquire()
    		casgstatus(gp, _Gwaiting, _Grunnable)
    		if trace.ok() {
    			trace.GoUnpark(gp, 0)
    			traceRelease(trace)
    		}
    		return gp, false, false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    `),this.name+": "+this.message+e}};af.exports=_t;_t.default=_t});var Si=v((UE,bs)=>{l();"use strict";bs.exports.isClean=Symbol("isClean");bs.exports.my=Symbol("my")});var vs=v((WE,lf)=>{l();"use strict";var of={colon:": ",indent:"    ",beforeDecl:`
    `,beforeRule:`
    `,beforeOpen:" ",beforeClose:`
    `,beforeComment:`
    `,after:`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
Back to top