Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 407 for stopped_ (0.6 sec)

  1. src/runtime/preempt.go

    	// state was observed, so the caller must not assume that it
    	// remains dead.
    	dead bool
    
    	// stopped indicates that this suspendG transitioned the G to
    	// _Gwaiting via g.preemptStop and thus is responsible for
    	// readying it when done.
    	stopped bool
    }
    
    // suspendG suspends goroutine gp at a safe-point and returns the
    // state of the suspended goroutine. The caller gets read access to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/AbstractDaemonFixture.groovy

            this
        }
    
        DaemonFixture stops() {
            waitForState(Stopped)
            this
        }
    
        @Override
        void assertIdle() {
            assertHasState(Idle)
        }
    
        @Override
        void assertBusy() {
            assertHasState(Busy)
        }
    
        @Override
        void assertStopped() {
            assertHasState(Stopped)
        }
    
        @Override
        void assertCanceled() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 15:22:16 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DefaultGradleConnector.java

        private final DistributionFactory distributionFactory;
        private Distribution distribution;
    
        private final List<DefaultProjectConnection> connections = new ArrayList<DefaultProjectConnection>(4);
        private boolean stopped = false;
    
        private final DefaultConnectionParameters.Builder connectionParamsBuilder = DefaultConnectionParameters.builder();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. security/pkg/nodeagent/sds/server.go

    	workloadSds *sdsservice
    
    	grpcWorkloadListener net.Listener
    
    	grpcWorkloadServer *grpc.Server
    	stopped            *atomic.Bool
    }
    
    // NewServer creates and starts the Grpc server for SDS.
    func NewServer(options *security.Options, workloadSecretCache security.SecretManager, pkpConf *mesh.PrivateKeyProvider) *Server {
    	s := &Server{stopped: atomic.NewBool(false)}
    	s.workloadSds = newSDSService(workloadSecretCache, options, pkpConf)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 17:44:41 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/ExecutorPolicy.java

         */
        <T> T onExecute(Callable<T> command) throws Exception;
    
        /**
         * Special behavior after an executor is stopped.
         *
         * This is called after the underlying Executor has been stopped.
         */
        void onStop();
    
        /**
         * Runs the Runnable, catches all Throwables and logs them.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/StoppingDaemonIntegrationSpec.groovy

        }
    
        def "reports exact number of daemons stopped and keeps console output clean"() {
            given:
            executer.noExtraLogging()
            executer.run()
    
            when:
            def out = executer.withArguments("--stop").run().normalizedOutput
    
            then:
            out == '''Stopping Daemon(s)
    1 Daemon stopped
    '''
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/project/antbuilder/FinalizerThread.java

    class FinalizerThread extends Thread {
        private final static Logger LOG = LoggerFactory.getLogger(FinalizerThread.class);
    
        private final ReferenceQueue<CachedClassLoader> referenceQueue;
        private final AtomicBoolean stopped = new AtomicBoolean();
    
        // Protects the following fields
        private final Lock lock;
        private final Map<ClassPath, Cleanup> cleanups;
        private final Map<ClassPath, CacheEntry> cacheEntries;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskTimeoutIntegrationTest.groovy

            outputLines[1] == "Timed out task ':block' has not yet stopped."
            outputLines[outputLines.size() - 1] == "Timed out task ':block' has stopped."
    
            and:
            def logging = taskLogging(":block")
            logging[0] == "Requesting stop of task ':block' as it has exceeded its configured timeout of 500ms."
            logging[1] == "Timed out task ':block' has not yet stopped."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/timer/TimeoutTask.java

         *
         * @return 止まっているかどうか
         */
        public boolean isStopped() {
            return status == STOPPED;
        }
    
        /**
         * タイマーをとめます。
         */
        public void stop() {
            if (status != ACTIVE) {
                throw new ClIllegalStateException(String.valueOf(status));
            }
            status = STOPPED;
        }
    
        /**
         * タイマーを再開始します。
         */
        public void restart() {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. src/internal/syscall/unix/siginfo_linux.go

    	_CLD_KILLED          = 2
    	_CLD_DUMPED          = 3
    	_CLD_TRAPPED         = 4
    	_CLD_STOPPED         = 5
    	_CLD_CONTINUED       = 6
    
    	// These are the same as in syscall/syscall_linux.go.
    	core      = 0x80
    	stopped   = 0x7f
    	continued = 0xffff
    )
    
    // WaitStatus converts SiginfoChild, as filled in by the waitid syscall,
    // to syscall.WaitStatus.
    func (s *SiginfoChild) WaitStatus() (ws syscall.WaitStatus) {
    	switch s.Code {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 01:23:00 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top