Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,122 for signalM (0.18 sec)

  1. src/syscall/zerrors_linux_mips.go

    	SIGPIPE   = Signal(0xd)
    	SIGPOLL   = Signal(0x16)
    	SIGPROF   = Signal(0x1d)
    	SIGPWR    = Signal(0x13)
    	SIGQUIT   = Signal(0x3)
    	SIGSEGV   = Signal(0xb)
    	SIGSTOP   = Signal(0x17)
    	SIGSYS    = Signal(0xc)
    	SIGTERM   = Signal(0xf)
    	SIGTRAP   = Signal(0x5)
    	SIGTSTP   = Signal(0x18)
    	SIGTTIN   = Signal(0x1a)
    	SIGTTOU   = Signal(0x1b)
    	SIGURG    = Signal(0x15)
    	SIGUSR1   = Signal(0x10)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 69.2K bytes
    - Viewed (0)
  2. src/syscall/zerrors_linux_mips64.go

    	SIGPIPE   = Signal(0xd)
    	SIGPOLL   = Signal(0x16)
    	SIGPROF   = Signal(0x1d)
    	SIGPWR    = Signal(0x13)
    	SIGQUIT   = Signal(0x3)
    	SIGSEGV   = Signal(0xb)
    	SIGSTOP   = Signal(0x17)
    	SIGSYS    = Signal(0xc)
    	SIGTERM   = Signal(0xf)
    	SIGTRAP   = Signal(0x5)
    	SIGTSTP   = Signal(0x18)
    	SIGTTIN   = Signal(0x1a)
    	SIGTTOU   = Signal(0x1b)
    	SIGURG    = Signal(0x15)
    	SIGUSR1   = Signal(0x10)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 68.5K bytes
    - Viewed (0)
  3. src/syscall/zerrors_linux_mips64le.go

    	SIGPIPE   = Signal(0xd)
    	SIGPOLL   = Signal(0x16)
    	SIGPROF   = Signal(0x1d)
    	SIGPWR    = Signal(0x13)
    	SIGQUIT   = Signal(0x3)
    	SIGSEGV   = Signal(0xb)
    	SIGSTOP   = Signal(0x17)
    	SIGSYS    = Signal(0xc)
    	SIGTERM   = Signal(0xf)
    	SIGTRAP   = Signal(0x5)
    	SIGTSTP   = Signal(0x18)
    	SIGTTIN   = Signal(0x1a)
    	SIGTTOU   = Signal(0x1b)
    	SIGURG    = Signal(0x15)
    	SIGUSR1   = Signal(0x10)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 68.5K bytes
    - Viewed (0)
  4. src/syscall/zerrors_linux_mipsle.go

    	SIGPIPE   = Signal(0xd)
    	SIGPOLL   = Signal(0x16)
    	SIGPROF   = Signal(0x1d)
    	SIGPWR    = Signal(0x13)
    	SIGQUIT   = Signal(0x3)
    	SIGSEGV   = Signal(0xb)
    	SIGSTOP   = Signal(0x17)
    	SIGSYS    = Signal(0xc)
    	SIGTERM   = Signal(0xf)
    	SIGTRAP   = Signal(0x5)
    	SIGTSTP   = Signal(0x18)
    	SIGTTIN   = Signal(0x1a)
    	SIGTTOU   = Signal(0x1b)
    	SIGURG    = Signal(0x15)
    	SIGUSR1   = Signal(0x10)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 69.2K bytes
    - Viewed (0)
  5. src/runtime/cpuprof.go

    	log  *profBuf // profile events written here
    
    	// extra holds extra stacks accumulated in addNonGo
    	// corresponding to profiling signals arriving on
    	// non-Go-created threads. Those stacks are written
    	// to log the next time a normal Go thread gets the
    	// signal handler.
    	// Assuming the stacks are 2 words each (we don't get
    	// a full traceback from those threads), plus one word
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. src/runtime/testdata/testprogcgo/raceprof.go

    //go:build unix
    // +build unix
    
    package main
    
    // Test that we can collect a lot of colliding profiling signals from
    // an external C thread. This used to fail when built with the race
    // detector, because a call of the predeclared function copy was
    // turned into a call to runtime.slicecopy, which is not marked nosplit.
    
    /*
    #include <signal.h>
    #include <stdint.h>
    #include <pthread.h>
    #include <sched.h>
    
    struct cgoTracebackArg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 18:13:14 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. src/syscall/zerrors_linux_riscv64.go

    	SIGPOLL   = Signal(0x1d)
    	SIGPROF   = Signal(0x1b)
    	SIGPWR    = Signal(0x1e)
    	SIGQUIT   = Signal(0x3)
    	SIGSEGV   = Signal(0xb)
    	SIGSTKFLT = Signal(0x10)
    	SIGSTOP   = Signal(0x13)
    	SIGSYS    = Signal(0x1f)
    	SIGTERM   = Signal(0xf)
    	SIGTRAP   = Signal(0x5)
    	SIGTSTP   = Signal(0x14)
    	SIGTTIN   = Signal(0x15)
    	SIGTTOU   = Signal(0x16)
    	SIGUNUSED = Signal(0x1f)
    	SIGURG    = Signal(0x17)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 70.8K bytes
    - Viewed (0)
  8. src/os/exec_posix.go

    	"runtime"
    	"syscall"
    )
    
    // The only signal values guaranteed to be present in the os package on all
    // systems are os.Interrupt (send the process an interrupt) and os.Kill (force
    // the process to exit). On Windows, sending os.Interrupt to a process with
    // os.Process.Signal is not implemented; it will return an error instead of
    // sending a signal.
    var (
    	Interrupt Signal = syscall.SIGINT
    	Kill      Signal = syscall.SIGKILL
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. src/runtime/sys_linux_arm.s

    	// a nested signal.
    	CMP	g, R7
    	BEQ	nosaveg
    	// If we don't have a signal stack, we won't receive signal, so don't
    	// bother saving g.
    	MOVW	(g_stack+stack_lo)(R7), R7 // g.m.gsignal.stack.lo
    	CMP	$0, R7
    	BEQ	nosaveg
    	MOVW	g, (R7)
    
    	BL	(R4)
    
    	MOVW	$0, R8
    	MOVW	R8, (R7) // clear g slot
    
    	JMP	finish
    
    nosaveg:
    	BL	(R4)
    
    finish:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/helpers.go

    func parseGracePeriods(statements map[string]string) (map[evictionapi.Signal]time.Duration, error) {
    	if len(statements) == 0 {
    		return nil, nil
    	}
    	results := map[evictionapi.Signal]time.Duration{}
    	for signal, val := range statements {
    		signal := evictionapi.Signal(signal)
    		if !validSignal(signal) {
    			return nil, fmt.Errorf(unsupportedEvictionSignal, signal)
    		}
    		gracePeriod, err := time.ParseDuration(val)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
Back to top