Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for signalfd (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  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. 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)
  6. 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)
  7. src/net/http/server.go

    	ErrWriteAfterFlush = errors.New("unused")
    )
    
    // A Handler responds to an HTTP request.
    //
    // [Handler.ServeHTTP] should write reply headers and data to the [ResponseWriter]
    // and then return. Returning signals that the request is finished; it
    // is not valid to use the [ResponseWriter] or read from the
    // [Request.Body] after or concurrently with the completion of the
    // ServeHTTP call.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. src/database/sql/sql.go

    	freeConn     []*driverConn // free connections ordered by returnedAt oldest to newest
    	connRequests connRequestSet
    	numOpen      int // number of opened and pending open connections
    	// Used to signal the need for new connections
    	// a goroutine running connectionOpener() reads on this chan and
    	// maybeOpenNewConnections sends on the chan (one send per needed connection)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    			} else {
    				// If there are no input files passed to cmd/cover,
    				// then we don't want to pass -covercfg when building
    				// the package with the compiler, so set covermode to
    				// the empty string so as to signal that we need to do
    				// that.
    				p.Internal.Cover.Mode = ""
    			}
    			if ba, ok := a.Actor.(*buildActor); ok && ba.covMetaFileName != "" {
    				b.cacheObjdirFile(a, cache.Default(), ba.covMetaFileName)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let summary = "2D real-valued fast Fourier transform.";
    
      let description = [{
    Computes the 2-dimensional discrete Fourier transform of a real-valued signal
    over the inner-most 2 dimensions of `input`.
    
    Since the DFT of a real signal is Hermitian-symmetric, `RFFT2D` only returns the
    `fft_length / 2 + 1` unique components of the FFT for the inner-most dimension
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top