Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for hardware (0.46 sec)

  1. src/crypto/tls/handshake_server_test.go

    			name: "client prefers AES-GCM, server doesn't have hardware AES (pick ChaCha)",
    			clientCiphers: []uint16{
    				TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
    				TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305,
    				TLS_RSA_WITH_AES_128_CBC_SHA,
    			},
    			serverHasAESGCM: false,
    			expectedCipher:  TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305,
    		},
    		{
    			name: "client prefers AES-GCM, server has hardware AES (pick AES-GCM)",
    			clientCiphers: []uint16{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	DI_REMOVEDEVICE_GLOBAL         DI_REMOVEDEVICE = 0x00000001 // Make this change in all hardware profiles. Remove information about the device from the registry.
    	DI_REMOVEDEVICE_CONFIGSPECIFIC DI_REMOVEDEVICE = 0x00000002 // Make this change to only the hardware profile specified by HwProfile. this flag only applies to root-enumerated devices. When Windows removes the device from the last hardware profile in which it was configured, Windows performs a global removal.
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  3. src/runtime/malloc.go

    	// amd64, addresses are sign-extended beyond heapAddrBits. On
    	// other arches, they are zero-extended.
    	//
    	// On most 64-bit platforms, we limit this to 48 bits based on a
    	// combination of hardware and OS limitations.
    	//
    	// amd64 hardware limits addresses to 48 bits, sign-extended
    	// to 64 bits. Addresses where the top 16 bits are not either
    	// all 0 or all 1 are "non-canonical" and invalid. Because of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/syscall/zerrors_linux_riscv64.go

    	128: "key has been revoked",
    	129: "key was rejected by service",
    	130: "owner died",
    	131: "state not recoverable",
    	132: "operation not possible due to RF-kill",
    	133: "memory page has hardware error",
    }
    
    // Signal table
    var signals = [...]string{
    	1:  "hangup",
    	2:  "interrupt",
    	3:  "quit",
    	4:  "illegal instruction",
    	5:  "trace/breakpoint trap",
    	6:  "aborted",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 70.8K bytes
    - Viewed (0)
  7. src/syscall/zerrors_linux_ppc64.go

    	128: "key has been revoked",
    	129: "key was rejected by service",
    	130: "owner died",
    	131: "state not recoverable",
    	132: "operation not possible due to RF-kill",
    	133: "memory page has hardware error",
    }
    
    // Signal table
    var signals = [...]string{
    	1:  "hangup",
    	2:  "interrupt",
    	3:  "quit",
    	4:  "illegal instruction",
    	5:  "trace/breakpoint trap",
    	6:  "aborted",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 70.9K bytes
    - Viewed (0)
  8. src/syscall/zerrors_linux_s390x.go

    	128: "key has been revoked",
    	129: "key was rejected by service",
    	130: "owner died",
    	131: "state not recoverable",
    	132: "operation not possible due to RF-kill",
    	133: "memory page has hardware error",
    }
    
    // Signal table
    var signals = [...]string{
    	1:  "hangup",
    	2:  "interrupt",
    	3:  "quit",
    	4:  "illegal instruction",
    	5:  "trace/breakpoint trap",
    	6:  "aborted",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 73.3K bytes
    - Viewed (0)
  9. src/syscall/zerrors_linux_arm64.go

    	128: "key has been revoked",
    	129: "key was rejected by service",
    	130: "owner died",
    	131: "state not recoverable",
    	132: "operation not possible due to RF-kill",
    	133: "memory page has hardware error",
    }
    
    // Signal table
    var signals = [...]string{
    	1:  "hangup",
    	2:  "interrupt",
    	3:  "quit",
    	4:  "illegal instruction",
    	5:  "trace/breakpoint trap",
    	6:  "aborted",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 68.6K bytes
    - Viewed (0)
  10. src/syscall/zerrors_linux_ppc64le.go

    	128: "key has been revoked",
    	129: "key was rejected by service",
    	130: "owner died",
    	131: "state not recoverable",
    	132: "operation not possible due to RF-kill",
    	133: "memory page has hardware error",
    }
    
    // Signal table
    var signals = [...]string{
    	1:  "hangup",
    	2:  "interrupt",
    	3:  "quit",
    	4:  "illegal instruction",
    	5:  "trace/breakpoint trap",
    	6:  "aborted",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 71.8K bytes
    - Viewed (0)
Back to top