Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for startIdle (0.11 sec)

  1. src/runtime/proc.go

    		unlock(&sched.lock)
    		startIdle(qsize)
    		return
    	}
    
    	npidle := int(sched.npidle.Load())
    	var (
    		globq gQueue
    		n     int
    	)
    	for n = 0; n < npidle && !q.empty(); n++ {
    		g := q.pop()
    		globq.pushBack(g)
    	}
    	if n > 0 {
    		lock(&sched.lock)
    		globrunqputbatch(&globq, int32(n))
    		unlock(&sched.lock)
    		startIdle(n)
    		qsize -= n
    	}
    
    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. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    ry.exception.ComponentLifecycleEx; public abstract boolean hasComponent(String); public abstract boolean hasComponent(String, String); } org/codehaus/plexus/personality/plexus/lifecycle/phase/Startable.class package org.codehaus.plexus.personality.plexus.lifecycle.phase; public abstract interface Startable { public abstract void start() throws StartingException; public abstract void stop() throws StoppingException; } org/codehaus/plexus/personality/plexus/lifecycle/phase/StartingException.class package...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 233.3K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    ry.exception.ComponentLifecycleEx; public abstract boolean hasComponent(String); public abstract boolean hasComponent(String, String); } org/codehaus/plexus/personality/plexus/lifecycle/phase/Startable.class package org.codehaus.plexus.personality.plexus.lifecycle.phase; public abstract interface Startable { public abstract void start() throws StartingException; public abstract void stop() throws StoppingException; } org/codehaus/plexus/personality/plexus/lifecycle/phase/StartingException.class package...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 233.3K bytes
    - Viewed (0)
Back to top