Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for Stopped (0.14 sec)

  1. platforms/core-runtime/client-services/src/test/groovy/org/gradle/internal/daemon/client/clientinput/DaemonClientInputForwarderTest.groovy

        }
    
        def setup() {
            createForwarder()
        }
    
        def closeInput() {
            source.close()
        }
    
        def "input bytes are forwarded until forwarder is stopped"() {
            def text = toPlatformLineSeparators("abc\ndef\njkl\n")
            def text2 = "more text"
    
            when:
            userInputReceiver.readAndForwardStdin(new ReadStdInEvent())
            source << text
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/registry/DaemonStopEvent.java

    import javax.annotation.Nullable;
    import java.io.EOFException;
    import java.io.Serializable;
    import java.util.Calendar;
    import java.util.Date;
    
    /**
     * Information regarding when and why a daemon was stopped.
     */
    public class DaemonStopEvent implements Serializable {
        public static final org.gradle.internal.serialize.Serializer<DaemonStopEvent> SERIALIZER = new Serializer();
    
        private final Date timestamp;
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. src/sync/pool.go

    // See go.dev/issue/67401.
    //
    //go:linkname poolCleanup
    func poolCleanup() {
    	// This function is called with the world stopped, at the beginning of a garbage collection.
    	// It must not allocate and probably should not call any runtime functions.
    
    	// Because the world is stopped, no pool user can be in a
    	// pinned section (in effect, this has all Ps pinned).
    
    	// Drop victim caches from all pools.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (1)
  4. src/os/exec_posix.go

    		} else { // unix systems use small decimal integers
    			res = "exit status " + itoa.Itoa(code) // unix
    		}
    	case status.Signaled():
    		res = "signal: " + status.Signal().String()
    	case status.Stopped():
    		res = "stop signal: " + status.StopSignal().String()
    		if status.StopSignal() == syscall.SIGTRAP && status.TrapCause() != 0 {
    			res += " (trap " + itoa.Itoa(status.TrapCause()) + ")"
    		}
    	case status.Continued():
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. src/runtime/traceallocfree.go

    )
    
    // traceSnapshotMemory takes a snapshot of all runtime memory that there are events for
    // (heap spans, heap objects, goroutine stacks, etc.) and writes out events for them.
    //
    // The world must be stopped and tracing must be enabled when this function is called.
    func traceSnapshotMemory(gen uintptr) {
    	assertWorldStopped()
    
    	// Write a batch containing information that'll be necessary to
    	// interpret the events.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:32:51 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. src/cmd/trace/procgen.go

    		start := ev.Time()
    		viewerEv.Name = "proc stop"
    		viewerEv.Ts = ctx.elapsed(start)
    		ctx.IncThreadStateCount(ctx.elapsed(start), traceviewer.ThreadStateRunning, -1)
    
    		// Check if this proc was in a syscall before it stopped.
    		// This means the syscall blocked. We need to emit it to the
    		// viewer at this point because we only display the time the
    		// syscall occupied a P when the viewer is in per-P mode.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. src/runtime/cpuprof.go

    // queued by addNonGo, to the profile log.
    // addExtra is called either from a signal handler on a Go thread
    // or from an ordinary goroutine; either way it can use stack
    // and has a g. The world may be stopped, though.
    func (p *cpuProfile) addExtra() {
    	// Copy accumulated non-Go profile events.
    	hdr := [1]uint64{1}
    	for i := 0; i < p.numExtra; {
    		p.log.write(nil, 0, hdr[:], p.extra[i+1:i+int(p.extra[i])])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. doc/next/7-ports.md

    The `GORISCV64` environment variable defaults to `rva20u64`.
    
    ### Wasm {#wasm}
    
    <!-- go.dev/issue/63718 -->
    The `go_wasip1_wasm_exec` script in `GOROOT/misc/wasm` has dropped support
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_interval.go

    // source can change over time - i.e. for watchCache circular
    // buffer. When the circular buffer is full and an event needs
    // to be popped off, watchCache::startIndex is incremented. In
    // this case, an interval tracking that popped event is valid
    // only if it has already been copied to its internal buffer.
    // However, for efficiency we perform that lazily and we mark
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. tests/integration/pilot/piggyback_test.go

    					output, _, err := istioCtl.Invoke(args)
    					if err != nil {
    						return err
    					}
    					return expectSubstrings(output, "Clusters Match", "Listeners Match", "Routes Match")
    				})
    
    				// Test gRPC-based tapped XDS using istioctl.
    				retry.UntilSuccessOrFail(t, func() error {
    					pf, err := t.Clusters()[0].NewPortForwarder(podName, namespace, "localhost", 0, 15004)
    					if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top