Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 459 for 0x02 (0.04 sec)

  1. src/encoding/binary/example_test.go

    	// Output:
    	// 1
    	// 2
    	// 127
    	// 128
    	// 255
    	// 256
    }
    
    func ExampleVarint() {
    	inputs := [][]byte{
    		{0x81, 0x01},
    		{0x7f},
    		{0x03},
    		{0x01},
    		{0x00},
    		{0x02},
    		{0x04},
    		{0x7e},
    		{0x80, 0x01},
    	}
    	for _, b := range inputs {
    		x, n := binary.Varint(b)
    		if n != len(b) {
    			fmt.Println("Varint did not consume all of in")
    		}
    		fmt.Println(x)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    #define shiftD1Left BYTE $0x66; BYTE $0x45; BYTE $0x0f; BYTE $0x3a; BYTE $0x0f; BYTE $0xd2; BYTE $0x0c // PALIGNR $12, X10, X10
    #define shiftD2Left BYTE $0x66; BYTE $0x45; BYTE $0x0f; BYTE $0x3a; BYTE $0x0f; BYTE $0xdb; BYTE $0x0c // PALIGNR $12, X11, X11
    #define shiftD3Left BYTE $0x66; BYTE $0x45; BYTE $0x0f; BYTE $0x3a; BYTE $0x0f; BYTE $0xff; BYTE $0x0c // PALIGNR $12, X15, X15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  3. src/crypto/aes/asm_amd64.s

    	MOVUPS X2, (BX)
    	ADDQ $16, BX
    	AESKEYGENASSIST $0x01, X2, X1
    	CALL _expand_key_256a<>(SB)
    	AESKEYGENASSIST $0x01, X0, X1
    	CALL _expand_key_256b<>(SB)
    	AESKEYGENASSIST $0x02, X2, X1
    	CALL _expand_key_256a<>(SB)
    	AESKEYGENASSIST $0x02, X0, X1
    	CALL _expand_key_256b<>(SB)
    	AESKEYGENASSIST $0x04, X2, X1
    	CALL _expand_key_256a<>(SB)
    	AESKEYGENASSIST $0x04, X0, X1
    	CALL _expand_key_256b<>(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbComOpenAndX.java

        private static final int FLAGS_RETURN_ADDITIONAL_INFO = 0x01;
        private static final int FLAGS_REQUEST_OPLOCK         = 0x02;
        private static final int FLAGS_REQUEST_BATCH_OPLOCK   = 0x04;
    
        // Access Mode Encoding for desiredAccess
        private static final int SHARING_COMPATIBILITY           = 0x00;
        private static final int SHARING_DENY_READ_WRITE_EXECUTE = 0x10;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 5.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/SmbConstants.java

        static final int FLAGS_NONE = 0x00;
        static final int FLAGS_LOCK_AND_READ_WRITE_AND_UNLOCK = 0x01;
        static final int FLAGS_RECEIVE_BUFFER_POSTED = 0x02;
        static final int FLAGS_PATH_NAMES_CASELESS = 0x08;
        static final int FLAGS_PATH_NAMES_CANONICALIZED = 0x10;
        static final int FLAGS_OPLOCK_REQUESTED_OR_GRANTED = 0x20;
        static final int FLAGS_NOTIFY_OF_MODIFY_ACTION = 0x40;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.9K bytes
    - Viewed (0)
  6. src/crypto/hmac/hmac_test.go

    			0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
    			0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
    			0x18, 0x19, 0x1a, 0x1b,
    		},
    		[]byte("Sample message for keylen<blocklen"),
    		"e3d249a8cfb67ef8b7a169e9a0a599714a2cecba65999a51beb8fbbe",
    		sha256.Size224,
    		sha256.BlockSize,
    	},
    	{
    		sha256.New224,
    		[]byte{
    			0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 18 18:38:14 UTC 2020
    - 21.8K bytes
    - Viewed (0)
  7. src/crypto/rsa/pkcs1v15.go

    	crypto.SHA384:    {0x30, 0x41, 0x30, 0x0d, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x02, 0x05, 0x00, 0x04, 0x30},
    	crypto.SHA512:    {0x30, 0x51, 0x30, 0x0d, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x03, 0x05, 0x00, 0x04, 0x40},
    	crypto.MD5SHA1:   {}, // A special TLS case which doesn't use an ASN1 prefix.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:21 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/splice_test.go

    */
    
    package runtime_test
    
    import (
    	"bytes"
    	"testing"
    
    	"k8s.io/apimachinery/pkg/runtime"
    )
    
    func TestSpliceBuffer(t *testing.T) {
    	testBytes0 := []byte{0x01, 0x02, 0x03, 0x04}
    	testBytes1 := []byte{0x04, 0x03, 0x02, 0x02}
    
    	testCases := []struct {
    		name string
    		run  func(sb runtime.Splice, buf *bytes.Buffer)
    	}{
    		{
    			name: "Basic Write",
    			run: func(sb runtime.Splice, buf *bytes.Buffer) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 18:03:48 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. 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)
  10. pkg/zdsapi/zds.pb.go

    	0x75, 0x69, 0x64, 0x22, 0x0e, 0x0a, 0x0c, 0x53, 0x6e, 0x61, 0x70, 0x73, 0x68, 0x6f, 0x74, 0x53,
    	0x65, 0x6e, 0x74, 0x22, 0x1b, 0x0a, 0x03, 0x41, 0x63, 0x6b, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72,
    	0x72, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72,
    	0x22, 0x87, 0x02, 0x0a, 0x0f, 0x57, 0x6f, 0x72, 0x6b, 0x6c, 0x6f, 0x61, 0x64, 0x52, 0x65, 0x71,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top