Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for 3x42 (0.04 sec)

  1. src/crypto/tls/testdata/Server-TLSv13-KeySharePreference

    00000060  1e 18 37 ef 0d 19 51 88  35 75 71 b5 e5 54 5b 12  |..7...Q.5uq..T[.|
    00000070  2e 8f 09 67 fd a7 24 20  3e b2 56 1c ce 97 28 5e  |...g..$ >.V...(^|
    00000080  f8 2b 2d 4f 9e f1 07 9f  6c 4b 5b 83 56 e2 32 42  |.+-O....lK[.V.2B|
    00000090  e9 58 b6 d7 49 a6 b5 68  1a 41 03 56 6b dc 5a 89  |.X..I..h.A.Vk.Z.|
    000000a0  14 03 03 00 01 01 17 03  03 00 17 f8 6a 35 d1 d7  |............j5..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:19:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. src/crypto/tls/testdata/Client-TLSv12-P256-ECDHE

    000000e0  37 ef 0d 19 51 88 35 75  71 b5 e5 54 5b 12 2e 8f  |7...Q.5uq..T[...|
    000000f0  09 67 fd a7 24 20 3e b2  56 1c ce 97 28 5e f8 2b  |.g..$ >.V...(^.+|
    00000100  2d 4f 9e f1 07 9f 6c 4b  5b 83 56 e2 32 42 e9 58  |-O....lK[.V.2B.X|
    00000110  b6 d7 49 a6 b5 68 1a 41  03 56 6b dc 5a 89        |..I..h.A.Vk.Z.|
    >>> Flow 2 (server to client)
    00000000  16 03 03 00 5d 02 00 00  59 03 03 1c ad ae e9 64  |....]...Y......d|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_xla_attribute_utils_test.cc

                            /*unpacked_values=*/{0x01, 0x02, 0x03, 0x04},
                            /*pack_dim=*/0,
                            /*expected_packed_shape=*/{1, 2},
                            /*expected_packed_values=*/{0x31, 0x42});
    }
    
    TEST(TfToXlaAttributeUtilsTest, PackOperandPackDimSizeOdd) {
      PackOperandTestHelper(
          /*unpacked_shape=*/{2, 3},
          /*unpacked_values=*/{0x01, 0x02, 0x03, 0x04, 0x05, 0x06},
          /*pack_dim=*/1,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.s

    	BYTE $0xac; BYTE $0x69; BYTE $0xed; BYTE $0xee
    	BYTE $0xeb; BYTE $0xef; BYTE $0xec; BYTE $0xbf
    	BYTE $0x80; BYTE $0xfd; BYTE $0xfe; BYTE $0xfb
    	BYTE $0xfc; BYTE $0xba; BYTE $0xae; BYTE $0x59
    	BYTE $0x44; BYTE $0x45; BYTE $0x42; BYTE $0x46
    	BYTE $0x43; BYTE $0x47; BYTE $0x9c; BYTE $0x48
    	BYTE $0x54; BYTE $0x51; BYTE $0x52; BYTE $0x53
    	BYTE $0x58; BYTE $0x55; BYTE $0x56; BYTE $0x57
    	BYTE $0x8c; BYTE $0x49; BYTE $0xcd; BYTE $0xce
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. test/fixedbugs/bug385_64.go

    	var x33 [10<<20]byte
    	var x34 [10<<20]byte
    	var x35 [10<<20]byte
    	var x36 [10<<20]byte
    	var x37 [10<<20]byte
    	var x38 [10<<20]byte
    	var x39 [10<<20]byte
    	var x40 [10<<20]byte
    	var x41 [10<<20]byte
    	var x42 [10<<20]byte
    	var x43 [10<<20]byte
    	var x44 [10<<20]byte
    	var x45 [10<<20]byte
    	var x46 [10<<20]byte
    	var x47 [10<<20]byte
    	var x48 [10<<20]byte
    	var x49 [10<<20]byte
    	var x50 [10<<20]byte
    	var x51 [10<<20]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. docs/en/docs/how-to/nosql-databases-couchbase.md

    ```Python hl_lines="36-42"
    {!../../../docs_src/nosql_databases/tutorial001.py!}
    ```
    
    ### f-strings
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. src/go/ast/example_test.go

    	"strings"
    )
    
    // This example demonstrates how to inspect the AST of a Go program.
    func ExampleInspect() {
    	// src is the input for which we want to inspect the AST.
    	src := `
    package p
    const c = 1.0
    var X = f(3.14)*2 + c
    `
    
    	// Create the AST by parsing src.
    	fset := token.NewFileSet() // positions are relative to fset
    	f, err := parser.ParseFile(fset, "src.go", src, 0)
    	if err != nil {
    		panic(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:44:50 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. src/crypto/ecdh/nist.go

    		// In tests, rand will return all zeros and NewPrivateKey will reject
    		// the zero key as it generates the identity as a public key. This also
    		// makes this function consistent with crypto/elliptic.GenerateKey.
    		key[1] ^= 0x42
    
    		k, err := c.NewPrivateKey(key)
    		if err == errInvalidPrivateKey {
    			continue
    		}
    		return k, err
    	}
    }
    
    func (c *nistCurve[Point]) NewPrivateKey(key []byte) (*PrivateKey, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Client-TLSv13-P256-ECDHE

    000000e0  37 ef 0d 19 51 88 35 75  71 b5 e5 54 5b 12 2e 8f  |7...Q.5uq..T[...|
    000000f0  09 67 fd a7 24 20 3e b2  56 1c ce 97 28 5e f8 2b  |.g..$ >.V...(^.+|
    00000100  2d 4f 9e f1 07 9f 6c 4b  5b 83 56 e2 32 42 e9 58  |-O....lK[.V.2B.X|
    00000110  b6 d7 49 a6 b5 68 1a 41  03 56 6b dc 5a 89        |..I..h.A.Vk.Z.|
    >>> Flow 2 (server to client)
    00000000  16 03 03 00 9b 02 00 00  97 03 03 1c 1a ee 30 2f  |..............0/|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv13-HelloRetryRequest

    000000f0  71 b5 e5 54 5b 12 2e 8f  09 67 fd a7 24 20 3e b2  |q..T[....g..$ >.|
    00000100  56 1c ce 97 28 5e f8 2b  2d 4f 9e f1 07 9f 6c 4b  |V...(^.+-O....lK|
    00000110  5b 83 56 e2 32 42 e9 58  b6 d7 49 a6 b5 68 1a 41  |[.V.2B.X..I..h.A|
    00000120  03 56 6b dc 5a 89                                 |.Vk.Z.|
    >>> Flow 4 (server to client)
    00000000  16 03 03 00 9b 02 00 00  97 03 03 9a 1f 7a fa 06  |.............z..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top