Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 213 for stopped_ (0.33 sec)

  1. src/iter/pull_test.go

    	if _, ok := next(); ok {
    		t.Fatal("next returned true after iterator was stopped")
    	}
    }
    
    func TestPull2ImmediateStop(t *testing.T) {
    	next, stop := Pull2(panicSeq2())
    	stop()
    	// Make sure we don't panic if we try to call next or stop.
    	if _, _, ok := next(); ok {
    		t.Fatal("next returned true after iterator was stopped")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:28 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. src/syscall/syscall_linux.go

    	exited  = 0x00
    	stopped = 0x7F
    	shift   = 8
    )
    
    func (w WaitStatus) Exited() bool { return w&mask == exited }
    
    func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != exited }
    
    func (w WaitStatus) Stopped() bool { return w&0xFF == stopped }
    
    func (w WaitStatus) Continued() bool { return w == 0xFFFF }
    
    func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core != 0 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  3. src/runtime/tracestack.go

    			// up-to-date information about where it stopped, and like case (1), we match gcallers
    			// here.
    			//
    			// (3) We're called against a gp that we're not currently executing on, but that is in
    			// a syscall, in which case gp.syscallsp != 0. gp.syscall* contains the most up-to-date
    			// information about where it stopped, and like case (1), we match gcallers here.
    			if gp.syscallsp != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/services/internal/DefaultBuildServicesRegistryTest.groovy

            provider.beforeStopping { provider.get() }
    
            when:
            buildFinished()
    
            then:
            ServiceImpl.instances.size() == 1
        }
    
        def "service created by the stop action is stopped"() {
            given:
            def provider = registerService("service", StoppableServiceImpl)
            provider.beforeStopping { provider.get() }
    
            when:
            buildFinished()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. src/os/signal/signal_cgo_test.go

    	// Wait for subprocess 1 to cycle the foreground process group.
    	if _, err := controlR.Read(b); err != nil {
    		t.Fatalf("error reading readiness: %v", err)
    	}
    
    	t.Logf("Sending SIGCONT...")
    
    	// Restart the stopped program.
    	if err := process.Signal(syscall.SIGCONT); err != nil {
    		t.Fatalf("Signal(SIGCONT) got err %v want nil", err)
    	}
    
    	// Write some data for the program to read, which should cause it to
    	// exit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/TaskExecution.java

                } catch (StopActionException e) {
                    // Ignore
                    LOGGER.debug("Action stopped by some action with message: {}", e.getMessage());
                } catch (StopExecutionException e) {
                    LOGGER.info("Execution stopped by some action with message: {}", e.getMessage());
                    break;
                } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/exec/Crawler.java

            } catch (final ContainerNotAvailableException e) {
                if (logger.isDebugEnabled()) {
                    logger.debug("Crawler is stopped.", e);
                } else if (logger.isInfoEnabled()) {
                    logger.info("Crawler is stopped.");
                }
                exitCode = Constants.EXIT_FAIL;
            } catch (final Throwable t) {
                logger.error("Crawler does not work correctly.", t);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                    } finally {
                        if (systemHelper.isForceStop()) {
                            finishCrawling = true;
                            if (logger.isDebugEnabled()) {
                                logger.debug("Stopped indexUpdater.");
                            }
                        }
                    }
    
                    if (emptyListCount >= maxEmptyListCount) {
                        if (logger.isInfoEnabled()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/DefaultFileWatcherRegistry.java

            thread.setDaemon(true);
            thread.setName("File watcher consumer");
            thread.setUncaughtExceptionHandler((failedThread, exception) -> {
                LOGGER.error("File system event consumer thread stopped due to exception", exception);
                handler.stopWatchingAfterError();
            });
            thread.start();
            return thread;
        }
    
        @Override
        public boolean isWatchingAnyLocations() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. src/runtime/runtime2.go

    	// after a syscall, it must understand the P may have been
    	// used by another M in the interim.
    	_Psyscall
    
    	// _Pgcstop means a P is halted for STW and owned by the M
    	// that stopped the world. The M that stopped the world
    	// continues to use its P, even in _Pgcstop. Transitioning
    	// from _Prunning to _Pgcstop causes an M to release its P and
    	// park.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
Back to top