Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for signalM (0.65 sec)

  1. src/runtime/proc.go

    		exit(1)
    	}
    
    	// Save and block signals before getting an M.
    	// The signal handler may call needm itself,
    	// and we must avoid a deadlock. Also, once g is installed,
    	// any incoming signals will try to execute,
    	// but we won't have the sigaltstack settings and other data
    	// set up appropriately until the end of minit, which will
    	// unblock the signals. This is the same dance as when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/helpers_test.go

    				{
    					Signal: evictionapi.SignalNodeFsAvailable,
    				},
    				{
    					Signal: evictionapi.SignalPIDAvailable,
    				},
    				{
    					Signal: evictionapi.SignalMemoryAvailable,
    				},
    			},
    			expected: []evictionapi.Threshold{
    				{
    					Signal: evictionapi.SignalMemoryAvailable,
    				},
    				{
    					Signal: evictionapi.SignalNodeFsAvailable,
    				},
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    )
    
    const (
    	// More invented values for signals
    	SIGHUP  = Signal(0x1)
    	SIGINT  = Signal(0x2)
    	SIGQUIT = Signal(0x3)
    	SIGILL  = Signal(0x4)
    	SIGTRAP = Signal(0x5)
    	SIGABRT = Signal(0x6)
    	SIGBUS  = Signal(0x7)
    	SIGFPE  = Signal(0x8)
    	SIGKILL = Signal(0x9)
    	SIGSEGV = Signal(0xb)
    	SIGPIPE = Signal(0xd)
    	SIGALRM = Signal(0xe)
    	SIGTERM = Signal(0xf)
    )
    
    var signals = [...]string{
    	1:  "hangup",
    	2:  "interrupt",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    )
    
    // Signals
    const (
    	SIGABRT = syscall.Signal(0x6)
    	SIGALRM = syscall.Signal(0xe)
    	SIGFPE  = syscall.Signal(0x8)
    	SIGHUP  = syscall.Signal(0x1)
    	SIGILL  = syscall.Signal(0x4)
    	SIGINT  = syscall.Signal(0x2)
    	SIGIOT  = syscall.Signal(0x6)
    	SIGKILL = syscall.Signal(0x9)
    	SIGPIPE = syscall.Signal(0xd)
    	SIGQUIT = syscall.Signal(0x3)
    	SIGSEGV = syscall.Signal(0xb)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/eviction_manager_test.go

    		PressureTransitionPeriod: time.Minute * 5,
    		Thresholds: []evictionapi.Threshold{
    			{
    				Signal:   evictionapi.SignalMemoryAvailable,
    				Operator: evictionapi.OpLessThan,
    				Value: evictionapi.ThresholdValue{
    					Quantity: quantityMustParse("1Gi"),
    				},
    			},
    			{
    				Signal:   evictionapi.SignalMemoryAvailable,
    				Operator: evictionapi.OpLessThan,
    				Value: evictionapi.ThresholdValue{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. cmd/admin-handlers.go

    		}
    	}
    
    	prs, ok := peerResults[local]
    	if ok {
    		prs.WaitingDrives = waitingDrivesNode()
    		peerResults[local] = prs
    	}
    
    	if globalIsDistErasure {
    		// Notify all other MinIO peers signal service.
    		ng := WithNPeers(len(globalNotificationSys.peerClients))
    		for idx, client := range globalNotificationSys.peerClients {
    			_, ok := failedClients[idx]
    			if ok {
    				continue
    			}
    			client := client
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/s390x/asmz.go

    	op_KDB     uint32 = 0xED18 // FORMAT_RXE        COMPARE AND SIGNAL (long BFP)
    	op_KDBR    uint32 = 0xB318 // FORMAT_RRE        COMPARE AND SIGNAL (long BFP)
    	op_KDTR    uint32 = 0xB3E0 // FORMAT_RRE        COMPARE AND SIGNAL (long DFP)
    	op_KEB     uint32 = 0xED08 // FORMAT_RXE        COMPARE AND SIGNAL (short BFP)
    	op_KEBR    uint32 = 0xB308 // FORMAT_RRE        COMPARE AND SIGNAL (short BFP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers.go

    				reason = container.State.Terminated.Reason
    			} else if container.State.Terminated != nil && container.State.Terminated.Reason == "" {
    				if container.State.Terminated.Signal != 0 {
    					reason = fmt.Sprintf("Signal:%d", container.State.Terminated.Signal)
    				} else {
    					reason = fmt.Sprintf("ExitCode:%d", container.State.Terminated.ExitCode)
    				}
    			} else if container.Ready && container.State.Running != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

            "object-inspect": "^1.9.0"
          },
          "funding": {
            "url": "https://github.com/sponsors/ljharb"
          }
        },
        "node_modules/signal-exit": {
          "version": "4.0.2",
          "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.2.tgz",
          "integrity": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==",
          "dev": true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            },
            "reason": {
              "description": "(brief) reason from the last termination of the container",
              "type": "string"
            },
            "signal": {
              "description": "Signal from the last termination of the container",
              "format": "int32",
              "type": "integer"
            },
            "startedAt": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top