Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for Signals (0.18 sec)

  1. src/syscall/zerrors_solaris_amd64.go

    	SIGIO      = Signal(0x16)
    	SIGIOT     = Signal(0x6)
    	SIGJVM1    = Signal(0x27)
    	SIGJVM2    = Signal(0x28)
    	SIGKILL    = Signal(0x9)
    	SIGLOST    = Signal(0x25)
    	SIGLWP     = Signal(0x21)
    	SIGPIPE    = Signal(0xd)
    	SIGPOLL    = Signal(0x16)
    	SIGPROF    = Signal(0x1d)
    	SIGPWR     = Signal(0x13)
    	SIGQUIT    = Signal(0x3)
    	SIGSEGV    = Signal(0xb)
    	SIGSTOP    = Signal(0x17)
    	SIGSYS     = Signal(0xc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  2. src/syscall/syscall_windows.go

    func Getgroups() (gids []int, err error) { return nil, EWINDOWS }
    
    type Signal int
    
    func (s Signal) Signal() {}
    
    func (s Signal) String() string {
    	if 0 <= s && int(s) < len(signals) {
    		str := signals[s]
    		if str != "" {
    			return str
    		}
    	}
    	return "signal " + itoa.Itoa(int(s))
    }
    
    func LoadCreateSymbolicLink() error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  3. src/runtime/traceback.go

    // context value.
    //
    // If the traceback function is called from a signal handler on a Unix
    // system, SigContext will be the signal context argument passed to
    // the signal handler (a C ucontext_t* cast to uintptr_t). This may be
    // used to start tracing at the point where the signal occurred. If
    // the traceback function is not called from a signal handler,
    // SigContext will be zero.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. src/runtime/mgcscavenge.go

    	g *g
    
    	// timer is the timer used for the scavenger to sleep.
    	timer *timer
    
    	// sysmonWake signals to sysmon that it should wake the scavenger.
    	sysmonWake atomic.Uint32
    
    	// parked is whether or not the scavenger is parked.
    	parked bool
    
    	// printControllerReset instructs printScavTrace to signal that
    	// the controller was reset.
    	printControllerReset bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue.go

    // moveAllToActiveOrBackoffQueue moves all pods from unschedulablePods to activeQ or backoffQ.
    // This function adds all pods and then signals the condition variable to ensure that
    // if Pop() is waiting for an item, it receives the signal after all the pods are in the
    // queue and the head is the highest priority pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    func Getgroups() (gids []int, err error) { return nil, syscall.EWINDOWS }
    
    type Signal int
    
    func (s Signal) Signal() {}
    
    func (s Signal) String() string {
    	if 0 <= s && int(s) < len(signals) {
    		str := signals[s]
    		if str != "" {
    			return str
    		}
    	}
    	return "signal " + itoa(int(s))
    }
    
    func LoadCreateSymbolicLink() error {
    	return procCreateSymbolicLinkW.Find()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	for {
    		if currOff >= len(msg) {
    			return off, errBaseLen
    		}
    		c := int(msg[currOff])
    		currOff++
    		switch c & 0xC0 {
    		case 0x00: // String segment
    			if c == 0x00 {
    				// A zero length signals the end of the name.
    				break Loop
    			}
    			endOff := currOff + c
    			if endOff > len(msg) {
    				return off, errCalcLen
    			}
    
    			// Reject names containing dots.
    			// See issue golang/go#56246
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  8. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	// controller. The node health signal update frequency is the minimal of the
    	// two.
    	// There are several constraints:
    	// 1. nodeMonitorGracePeriod must be N times more than  the node health signal
    	//    update frequency, where N means number of retries allowed for kubelet to
    	//    post node status/lease. It is pointless to make nodeMonitorGracePeriod
    	//    be less than the node health signal update frequency, since there will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  9. src/testing/testing.go

    	start    highPrecisionTime // Time test or benchmark started
    	duration time.Duration
    	barrier  chan bool // To signal parallel subtests they may start. Nil when T.Parallel is not present (B) or not usable (when fuzzing).
    	signal   chan bool // To signal a test is done.
    	sub      []*T      // Queue of subtests to be run in parallel.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. src/crypto/tls/common.go

    	signatureEd25519
    )
    
    // directSigning is a standard Hash value that signals that no pre-hashing
    // should be performed, and that the input should be signed directly. It is the
    // hash function associated with the Ed25519 signature scheme.
    var directSigning crypto.Hash = 0
    
    // helloRetryRequestRandom is set as the Random value of a ServerHello
    // to signal that the message is actually a HelloRetryRequest.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
Back to top