Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for quiesce (0.13 sec)

  1. src/os/signal/signal_test.go

    			}
    		case <-timer.C:
    			timer.Reset(settleTime / 10)
    		}
    	}
    	t.Fatalf("timeout after %v waiting for %v", fatalWaitingTime, sig)
    }
    
    // quiesce waits until we can be reasonably confident that all pending signals
    // have been delivered by the OS.
    func quiesce() {
    	// The kernel will deliver a signal as a thread returns
    	// from a syscall. If the only active thread is sleeping,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:34:56 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  2. src/context/x_test.go

    	veryLongDuration = 1000 * time.Hour     // an arbitrary upper bound on the test's running time
    )
    
    // quiescent returns an arbitrary duration by which the program should have
    // completed any remaining work and reached a steady (idle) state.
    func quiescent(t *testing.T) time.Duration {
    	deadline, ok := t.Deadline()
    	if !ok {
    		return 5 * time.Second
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    	PGTHA_FILEDATA    = 0x08
    	PGTHA_THREAD      = 0x04
    	PGTHA_PTAG        = 0x02
    	PGTHA_COMMANDLONG = 0x01
    	PGTHA_THREADFAST  = 0x80
    	PGTHA_FILEPATH    = 0x40
    	PGTHA_THDSIGMASK  = 0x20
    	// thread quiece mode
    	QUIESCE_TERM       int32 = 1
    	QUIESCE_FORCE      int32 = 2
    	QUIESCE_QUERY      int32 = 3
    	QUIESCE_FREEZE     int32 = 4
    	QUIESCE_UNFREEZE   int32 = 5
    	FREEZE_THIS_THREAD int32 = 6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. docs/es/docs/async.md

    Luego, cuando llega tu turno, haces un trabajo "productivo" real 🤓, procesas el menú, decides lo que quieres, lo que quiere esa persona 😍, pagas 💸, verificas que das el billete o tarjeta correctos, verificas que te cobren correctamente, que el pedido tiene los artículos correctos, etc.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 24.9K bytes
    - Viewed (0)
Back to top