Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 213 for stopped_ (0.12 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	{18, "SIGABND", "abend"},
    	{19, "SIGCONT", "continued"},
    	{20, "SIGCHLD", "child exited"},
    	{21, "SIGTTIN", "stopped (tty input)"},
    	{22, "SIGTTOU", "stopped (tty output)"},
    	{23, "SIGIO", "I/O possible"},
    	{24, "SIGQUIT", "quit"},
    	{25, "SIGTSTP", "stopped"},
    	{26, "SIGTRAP", "trace/breakpoint trap"},
    	{27, "SIGIOER", "I/O error"},
    	{28, "SIGWINCH", "window changed"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go

    	{20, "SIGWINCH", "window changed"},
    	{21, "SIGURG", "urgent I/O condition"},
    	{22, "SIGIO", "I/O possible"},
    	{23, "SIGSTOP", "stopped (signal)"},
    	{24, "SIGTSTP", "stopped"},
    	{25, "SIGCONT", "continued"},
    	{26, "SIGTTIN", "stopped (tty input)"},
    	{27, "SIGTTOU", "stopped (tty output)"},
    	{28, "SIGVTALRM", "virtual timer expired"},
    	{29, "SIGPROF", "profiling timer expired"},
    	{30, "SIGXCPU", "CPU time limit exceeded"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DefaultDaemonConnectionTest.groovy

            then:
            1 * handler.onInput(input1) >> { received.countDown() }
            1 * handler.onEndOfInput()
            0 * handler._
        }
    
        def "generates end of stdin event when connection stopped"() {
            StdinHandler handler = Mock()
    
            when:
            daemonConnection.onStdin(handler)
            daemonConnection.stop()
    
            then:
            1 * handler.onEndOfInput()
            0 * handler._
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/RetryConditions.groovy

                    || failure.cause?.message == "Gradle build daemon disappeared unexpectedly (it may have been stopped, killed or may have crashed)"
                    || failure.message == "Gradle build daemon disappeared unexpectedly (it may have been stopped, killed or may have crashed)")) {
                println "Retrying cross version test because of <1.3 daemon connection issue"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    	if s.AuditBackend != nil {
    		s.AuditBackend.Shutdown()
    		klog.V(1).InfoS("[graceful-termination] audit backend shutdown completed")
    	}
    
    	// wait for stoppedCh that is closed when the graceful termination (server.Shutdown) is finished.
    	<-listenerStoppedCh
    	<-stoppedCh
    
    	klog.V(1).Info("[graceful-termination] apiserver is exiting")
    	return nil
    }
    
    // NonBlockingRun spawns the secure http server. An error is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	{15, "SIGTERM", "terminated"},
    	{16, "SIGSTKFLT", "stack fault"},
    	{17, "SIGCHLD", "child exited"},
    	{18, "SIGCONT", "continued"},
    	{19, "SIGSTOP", "stopped (signal)"},
    	{20, "SIGTSTP", "stopped"},
    	{21, "SIGTTIN", "stopped (tty input)"},
    	{22, "SIGTTOU", "stopped (tty output)"},
    	{23, "SIGURG", "urgent I/O condition"},
    	{24, "SIGXCPU", "CPU time limit exceeded"},
    	{25, "SIGXFSZ", "file size limit exceeded"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modindex/build_read.go

    		} else {
    			r.readImport()
    		}
    	}
    
    	info.header = r.buf
    
    	// If we stopped successfully before EOF, we read a byte that told us we were done.
    	// Return all but that last byte, which would cause a syntax error if we let it through.
    	if r.err == nil && !r.eof {
    		info.header = r.buf[:len(r.buf)-1]
    	}
    
    	// If we stopped for a syntax error, consume the whole file so that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 13K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_solaris.go

    }
    
    func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != 0 }
    
    func (w WaitStatus) Signal() syscall.Signal {
    	sig := syscall.Signal(w & mask)
    	if sig == stopped || sig == 0 {
    		return -1
    	}
    	return sig
    }
    
    func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core != 0 }
    
    func (w WaitStatus) Stopped() bool { return w&mask == stopped && syscall.Signal(w>>shift) != SIGSTOP }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go

    	{15, "SIGTERM", "terminated"},
    	{16, "SIGSTKFLT", "stack fault"},
    	{17, "SIGCHLD", "child exited"},
    	{18, "SIGCONT", "continued"},
    	{19, "SIGSTOP", "stopped (signal)"},
    	{20, "SIGTSTP", "stopped"},
    	{21, "SIGTTIN", "stopped (tty input)"},
    	{22, "SIGTTOU", "stopped (tty output)"},
    	{23, "SIGURG", "urgent I/O condition"},
    	{24, "SIGXCPU", "CPU time limit exceeded"},
    	{25, "SIGXFSZ", "file size limit exceeded"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  10. cmd/erasure-server-pool-rebalance_gen.go

    		field, err = dc.ReadMapKeyPtr()
    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		switch msgp.UnsafeString(field) {
    		case "stopTs":
    			z.StoppedAt, err = dc.ReadTime()
    			if err != nil {
    				err = msgp.WrapError(err, "StoppedAt")
    				return
    			}
    		case "id":
    			z.ID, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "ID")
    				return
    			}
    		case "pf":
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 26.8K bytes
    - Viewed (0)
Back to top