Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 397 for Signals (0.14 sec)

  1. src/runtime/signal_windows.go

    	}
    	prepareContextForSigResume(ep.context)
    	ep.context.set_sp(gp.m.g0.sched.sp)
    	ep.context.set_ip(abi.FuncPCABI0(sigresume))
    	return ret
    }
    
    // Called by sigtramp from Windows VEH handler.
    // Return value signals whether the exception has been handled (EXCEPTION_CONTINUE_EXECUTION)
    // or should be made available to other handlers in the chain (EXCEPTION_CONTINUE_SEARCH).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go

    	SIGTSTP   = syscall.Signal(0x18)
    	SIGTTIN   = syscall.Signal(0x1a)
    	SIGTTOU   = syscall.Signal(0x1b)
    	SIGURG    = syscall.Signal(0x15)
    	SIGUSR1   = syscall.Signal(0x10)
    	SIGUSR2   = syscall.Signal(0x11)
    	SIGVTALRM = syscall.Signal(0x1c)
    	SIGWINCH  = syscall.Signal(0x14)
    	SIGXCPU   = syscall.Signal(0x1e)
    	SIGXFSZ   = syscall.Signal(0x1f)
    )
    
    // Error table
    var errorList = [...]struct {
    	num  syscall.Errno
    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. src/image/color/ycbcr.go

    //
    // JPEG, VP8, the MPEG family and other codecs use this color model. Such
    // codecs often use the terms YUV and Y'CbCr interchangeably, but strictly
    // speaking, the term YUV applies only to analog video signals, and Y' (luma)
    // is Y (luminance) after applying gamma correction.
    //
    // Conversion between RGB and Y'CbCr is lossy and there are multiple, slightly
    // different formulae for converting between the two. This package follows
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	SIGTSTP   = syscall.Signal(0x14)
    	SIGTTIN   = syscall.Signal(0x15)
    	SIGTTOU   = syscall.Signal(0x16)
    	SIGURG    = syscall.Signal(0x17)
    	SIGUSR1   = syscall.Signal(0xa)
    	SIGUSR2   = syscall.Signal(0xc)
    	SIGVTALRM = syscall.Signal(0x1a)
    	SIGWINCH  = syscall.Signal(0x1c)
    	SIGXCPU   = syscall.Signal(0x18)
    	SIGXFSZ   = syscall.Signal(0x19)
    )
    
    // Error table
    var errorList = [...]struct {
    	num  syscall.Errno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/cli/src/main/java/org/gradle/cli/CommandLineParser.java

                }
    
                lines.put(key, value);
            }
            // The "--" delimiter isn't an option, but it's useful to print it in the usage message anyway.
            lines.put("--", "Signals the end of built-in options. Gradle parses subsequent parameters as only tasks or task options.");
    
            int max = 0;
            for (String optionStr : lines.keySet()) {
                max = Math.max(max, optionStr.length());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/cgo/internal/testsanitizers/cc_test.go

    //
    // If one of these tests hangs, the caller is likely to kill the test process
    // using SIGINT, which will be sent to all of the processes in the test's group.
    // Unfortunately, TSAN in particular is prone to dropping signals, so the SIGINT
    // may terminate the test binary but leave the subprocess running. hangProneCmd
    // configures subprocess to receive SIGKILL instead to ensure that it won't
    // leak.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 20:00:56 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go

    	SIGTSTP   = syscall.Signal(0x18)
    	SIGTTIN   = syscall.Signal(0x1a)
    	SIGTTOU   = syscall.Signal(0x1b)
    	SIGURG    = syscall.Signal(0x15)
    	SIGUSR1   = syscall.Signal(0x10)
    	SIGUSR2   = syscall.Signal(0x11)
    	SIGVTALRM = syscall.Signal(0x1c)
    	SIGWINCH  = syscall.Signal(0x14)
    	SIGXCPU   = syscall.Signal(0x1e)
    	SIGXFSZ   = syscall.Signal(0x1f)
    )
    
    // Error table
    var errorList = [...]struct {
    	num  syscall.Errno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"activeDeadlineSeconds":   "Specifies the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	SIGTSTP   = syscall.Signal(0x14)
    	SIGTTIN   = syscall.Signal(0x15)
    	SIGTTOU   = syscall.Signal(0x16)
    	SIGURG    = syscall.Signal(0x17)
    	SIGUSR1   = syscall.Signal(0xa)
    	SIGUSR2   = syscall.Signal(0xc)
    	SIGVTALRM = syscall.Signal(0x1a)
    	SIGWINCH  = syscall.Signal(0x1c)
    	SIGXCPU   = syscall.Signal(0x18)
    	SIGXFSZ   = syscall.Signal(0x19)
    )
    
    // Error table
    var errorList = [...]struct {
    	num  syscall.Errno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top