Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 199 for signalfd (0.15 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.yaml

          terminated:
            containerID: containerIDValue
            exitCode: 1
            finishedAt: "2006-01-01T01:01:01Z"
            message: messageValue
            reason: reasonValue
            signal: 2
            startedAt: "2005-01-01T01:01:01Z"
          waiting:
            message: messageValue
            reason: reasonValue
        name: nameValue
        ready: true
        resources:
          claims:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.json

                "message": "messageValue"
              },
              "running": {
                "startedAt": "2001-01-01T01:01:01Z"
              },
              "terminated": {
                "exitCode": 1,
                "signal": 2,
                "reason": "reasonValue",
                "message": "messageValue",
                "startedAt": "2005-01-01T01:01:01Z",
                "finishedAt": "2006-01-01T01:01:01Z",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  3. src/internal/syscall/unix/siginfo_linux_test.go

    	"internal/syscall/unix"
    	"runtime"
    	"strings"
    	"testing"
    	"unsafe"
    )
    
    // TestSiginfoChildLayout validates SiginfoChild layout. Modelled after
    // static assertions in linux kernel's arch/*/kernel/signal*.c.
    func TestSiginfoChildLayout(t *testing.T) {
    	var si unix.SiginfoChild
    
    	const host64bit = goarch.PtrSize == 8
    
    	if v := unsafe.Sizeof(si); v != 128 {
    		t.Fatalf("sizeof: got %d, want 128", v)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 01:23:00 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/GradleEnterprisePluginEndOfBuildListener.java

     */
    
    package org.gradle.internal.enterprise;
    
    import org.gradle.api.problems.internal.Problem;
    
    import javax.annotation.Nullable;
    import java.util.Collection;
    
    /**
     * Used to signal the end of build to the plugin.
     *
     * Uses a specific listener to guarantee being invoked after user buildFinished callbacks.
     * Expected to be invoked once for a build tree.
     *
     * Implemented by the Enterprise plugin.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/ThrottlingOutputEventListener.java

    import java.util.concurrent.ScheduledFuture;
    import java.util.concurrent.TimeUnit;
    
    /**
     * Queue output events to be forwarded and schedule flush when time passed or if end of build is signalled.
     */
    public class ThrottlingOutputEventListener implements OutputEventListener {
        private static final Logger LOGGER = LoggerFactory.getLogger(ThrottlingOutputEventListener.class);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. src/runtime/pprof/pprof.go

    // Go code built with -buildmode=c-archive or -buildmode=c-shared.
    // StartCPUProfile relies on the SIGPROF signal, but that signal will
    // be delivered to the main program's SIGPROF signal handler (if any)
    // not to the one used by Go. To make it work, call [os/signal.Notify]
    // for [syscall.SIGPROF], but note that doing so may break any profiling
    // being done by the main program.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  7. src/internal/syscall/unix/siginfo_linux.go

    type SiginfoChild struct {
    	Signo       int32
    	siErrnoCode                // Two int32 fields, swapped on MIPS.
    	_           [is64bit]int32 // Extra padding for 64-bit hosts only.
    
    	// End of common part. Beginning of signal-specific part.
    
    	Pid    int32
    	Uid    uint32
    	Status int32
    
    	// Pad to 128 bytes.
    	_ [128 - (6+is64bit)*4]byte
    }
    
    const (
    	// Possible values for SiginfoChild.Code field.
    	_CLD_EXITED    int32 = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 01:23:00 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. src/os/exec/exec.go

    			// subprocess that inherited them and is still holding them open
    			// (see https://go.dev/issue/23019).
    			//
    			// We close the goroutine pipes only after we have sent any signals we're
    			// going to send to the process (via Signal or Kill above): if we send
    			// SIGKILL to the process, we would prefer for it to die of SIGKILL, not
    			// SIGPIPE. (However, this may still cause any orphaned subprocesses to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  9. src/runtime/cgocall.go

    	// it actually contains SP..
    	g0.stack.hi = sp + 1024
    	g0.stack.lo = sp - 32*1024
    	if !signal && _cgo_getstackbound != nil {
    		// Don't adjust if called from the signal handler.
    		// We are on the signal stack, not the pthread stack.
    		// (We could get the stack bounds from sigaltstack, but
    		// we're getting out of the signal handler very soon
    		// anyway. Not worth it.)
    		var bounds [2]uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. src/os/file_unix.go

    			typ := st.Mode & syscall.S_IFMT
    			// Don't try to use kqueue with regular files on *BSDs.
    			// On FreeBSD a regular file is always
    			// reported as ready for writing.
    			// On Dragonfly, NetBSD and OpenBSD the fd is signaled
    			// only once as ready (both read and write).
    			// Issue 19093.
    			// Also don't add directories to the netpoller.
    			if err == nil && (typ == syscall.S_IFREG || typ == syscall.S_IFDIR) {
    				pollable = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top