Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 479 for stopped_ (0.15 sec)

  1. 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)
  2. 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)
  3. cmd/kubeadm/app/util/initsystem/initsystem_windows.go

    	status, err := s.Query()
    	if err != nil {
    		return errors.Wrapf(err, "could not query service %s", service)
    	}
    
    	if status.State != svc.Stopped && status.State != svc.StopPending {
    		return nil
    	}
    
    	timeout := time.Now().Add(10 * time.Second)
    	for status.State != svc.Stopped {
    		if timeout.Before(time.Now()) {
    			return errors.Errorf("timeout waiting for %s service to stop", service)
    		}
    		time.Sleep(300 * time.Millisecond)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 08:56:16 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/worker/TestWorker.java

                        state = State.STOPPED;
                        // Clean the interrupted status
                        // because some test class processors do work here, e.g. JUnitPlatform
                        Thread.interrupted();
                    }
                }
            });
        }
    
        private synchronized void submitToRun(Runnable command) {
            if (state != State.STOPPED) {
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. src/runtime/runtime-lldb_test.go

              print "Hit breakpoint"
              frame = t.GetFrameAtIndex(0)
              if frame:
                if frame.line_entry:
                  print "Stopped at %s:%d" % (frame.line_entry.file.basename, frame.line_entry.line)
                if frame.function:
                  print "Stopped in %s" % (frame.function.name,)
                var = frame.FindVariable('intvar')
                if var:
                  print "intvar = %s" % (var.GetValue(),)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/DefaultConditionalExecutionQueue.java

        }
    
        @Override
        public void submit(ConditionalExecution<T> execution) {
            if (queueState == QueueState.Stopped) {
                throw new IllegalStateException("DefaultConditionalExecutionQueue cannot be reused once it has been stopped.");
            }
    
            lock.lock();
            try {
                // expand the thread pool until we hit max workers
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonProcessState.java

            return buildProcessState.getServices();
        }
    
        public void stopped(DaemonStopState stopState) {
            this.stopState.set(stopState);
        }
    
        @Override
        public void close() {
            if (stopState.get() == DaemonStopState.Forced) {
                // The daemon could not be stopped cleanly, so the services could still be doing work.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonLifecycleTest.groovy

            and:
            succeeds "runInWorker2"
    
            then:
            assertDifferentDaemonsWereUsed("runInWorker1", "runInWorker2")
        }
    
        def "worker daemons can be restarted when daemon is stopped"() {
            fixture.withWorkActionClassInBuildScript()
            buildFile << """
                task runInWorker1(type: WorkerTask) {
                    isolationMode = 'processIsolation'
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top