Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 47 for hardware (0.7 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	{130, "EOWNERDEAD", "owner died"},
    	{131, "ENOTRECOVERABLE", "state not recoverable"},
    	{132, "ERFKILL", "operation not possible due to RF-kill"},
    	{133, "EHWPOISON", "memory page has hardware error"},
    }
    
    // Signal table
    var signalList = [...]struct {
    	num  syscall.Signal
    	name string
    	desc string
    }{
    	{1, "SIGHUP", "hangup"},
    	{2, "SIGINT", "interrupt"},
    	{3, "SIGQUIT", "quit"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go

    	{130, "EOWNERDEAD", "owner died"},
    	{131, "ENOTRECOVERABLE", "state not recoverable"},
    	{132, "ERFKILL", "operation not possible due to RF-kill"},
    	{133, "EHWPOISON", "memory page has hardware error"},
    }
    
    // Signal table
    var signalList = [...]struct {
    	num  syscall.Signal
    	name string
    	desc string
    }{
    	{1, "SIGHUP", "hangup"},
    	{2, "SIGINT", "interrupt"},
    	{3, "SIGQUIT", "quit"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	{130, "EOWNERDEAD", "owner died"},
    	{131, "ENOTRECOVERABLE", "state not recoverable"},
    	{132, "ERFKILL", "operation not possible due to RF-kill"},
    	{133, "EHWPOISON", "memory page has hardware error"},
    }
    
    // Signal table
    var signalList = [...]struct {
    	num  syscall.Signal
    	name string
    	desc string
    }{
    	{1, "SIGHUP", "hangup"},
    	{2, "SIGINT", "interrupt"},
    	{3, "SIGQUIT", "quit"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. README.md

    This README provides quickstart instructions on running MinIO on bare metal hardware, including container-based installations. For Kubernetes environments, use the [MinIO Kubernetes Operator](https://github.com/minio/operator/blob/master/README.md).
    
    ## Container Installation
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  5. src/crypto/ecdsa/ecdsa.go

    // should be the hash function used to digest the message.
    //
    // This method implements crypto.Signer, which is an interface to support keys
    // where the private part is kept in, for example, a hardware module. Common
    // uses can use the [SignASN1] function in this package directly.
    func (priv *PrivateKey) Sign(rand io.Reader, digest []byte, opts crypto.SignerOpts) ([]byte, error) {
    	return SignASN1(rand, priv, digest)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	// Modify the sign bit
    	{name: "Abs", argLength: 1},      // absolute value arg0
    	{name: "Copysign", argLength: 2}, // copy sign from arg0 to arg1
    
    	// Float min/max implementation, if hardware is available.
    	{name: "Min64F", argLength: 2}, // min(arg0,arg1)
    	{name: "Min32F", argLength: 2}, // min(arg0,arg1)
    	{name: "Max64F", argLength: 2}, // max(arg0,arg1)
    	{name: "Max32F", argLength: 2}, // max(arg0,arg1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  7. src/crypto/rsa/rsa.go

    // opts.HashFunc().
    //
    // This method implements [crypto.Signer], which is an interface to support keys
    // where the private part is kept in, for example, a hardware module. Common
    // uses should use the Sign* functions in this package directly.
    func (priv *PrivateKey) Sign(rand io.Reader, digest []byte, opts crypto.SignerOpts) ([]byte, error) {
    	if pssOpts, ok := opts.(*PSSOptions); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. src/crypto/tls/common.go

    	// server's preference. Servers now select the best mutually supported
    	// cipher suite based on logic that takes into account inferred client
    	// hardware, server hardware, and security.
    	//
    	// Deprecated: PreferServerCipherSuites is ignored.
    	PreferServerCipherSuites bool
    
    	// SessionTicketsDisabled may be set to true to disable session ticket and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  9. src/time/time.go

    // that difference will be visible when printing t.String() and u.String().
    //
    // # Timer Resolution
    //
    // [Timer] resolution varies depending on the Go runtime, the operating system
    // and the underlying hardware.
    // On Unix, the resolution is ~1ms.
    // On Windows version 1803 and newer, the resolution is ~0.5ms.
    // On older Windows versions, the default resolution is ~16ms, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/link.go

    // to a function.  These need spilling/filling in the safepoint/stackgrowth case.
    // At the time of fill/spill, the offset must be adjusted by the architecture-dependent
    // adjustment to hardware SP that occurs in a call instruction.  E.g., for AMD64,
    // at Offset+8 because the return address was pushed.
    type RegSpill struct {
    	Addr           Addr
    	Reg            int16
    	Spill, Unspill As
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
Back to top