Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 214 for 0x0p (0.04 sec)

  1. src/strconv/atoc_test.go

    		// Zeros
    		{"0", 0, nil},
    		{"0i", 0, nil},
    		{"-0.0i", 0, nil},
    		{"0+0.0i", 0, nil},
    		{"0e+0i", 0, nil},
    		{"0e-0+0i", 0, nil},
    		{"-0.0-0.0i", 0, nil},
    		{"0e+012345", 0, nil},
    		{"0x0p+012345i", 0, nil},
    		{"0x0.00p-012345i", 0, nil},
    		{"+0e-0+0e-0i", 0, nil},
    		{"0e+0+0e+0i", 0, nil},
    		{"-0e+0-0e+0i", 0, nil},
    
    		// Regular non-zeroes
    		{"0.1", 0.1, nil},
    		{"0.1i", 0 + 0.1i, nil},
    		{"0.123", 0.123, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 03 23:05:51 UTC 2020
    - 6.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/framer/framer_test.go

    package framer
    
    import (
    	"bytes"
    	"errors"
    	"io"
    	"testing"
    )
    
    func TestRead(t *testing.T) {
    	data := []byte{
    		0x00, 0x00, 0x00, 0x04,
    		0x01, 0x02, 0x03, 0x04,
    		0x00, 0x00, 0x00, 0x03,
    		0x05, 0x06, 0x07,
    		0x00, 0x00, 0x00, 0x00,
    		0x00, 0x00, 0x00, 0x01,
    		0x08,
    	}
    	b := bytes.NewBuffer(data)
    	r := NewLengthDelimitedFrameReader(io.NopCloser(b))
    	buf := make([]byte, 1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 13:33:12 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/hash/SipHashFunctionTest.java

      public void testCollisionsDueToIncorrectSignExtension() {
        byte[] col1 = new byte[] {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, (byte) 0x80};
        byte[] col2 = new byte[] {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, (byte) 0x81};
        byte[] col3 = new byte[] {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, (byte) 0xff};
    
        ImmutableSet<HashCode> hashCodes =
            ImmutableSet.of(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun May 05 18:02:35 UTC 2019
    - 6.6K bytes
    - Viewed (0)
  4. src/go/format/benchmark_test.go

    // array1 generates an array literal with n elements of the form:
    //
    // var _ = [...]byte{
    //
    //	// 0
    //	0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
    //	0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
    //	0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
    //	0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,
    //	0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,
    //	// 40
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2K bytes
    - Viewed (0)
  5. src/image/jpeg/dct_test.go

    		0x02, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0x00,
    		0xff, 0xff, 0x00, 0xff, 0x01, 0x00, 0x00, 0x00,
    		0xff, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0x00,
    		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff,
    		0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    		0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    		0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    	},
    	{
    		0x86, 0x05, 0x00, 0x02, 0x00, 0x00, 0x01, 0x00,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:30 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  6. 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)
  7. staging/src/k8s.io/apimachinery/pkg/test/runtime_serializer_protobuf_protobuf_test.go

    func TestProtobufDecode(t *testing.T) {
    	wire1 := []byte{
    		0x6b, 0x38, 0x73, 0x00, // prefix
    		0x0a, 0x04,
    		0x0a, 0x00, // apiversion
    		0x12, 0x00, // kind
    		0x12, 0x00, // data
    		0x1a, 0x00, // content-type
    		0x22, 0x00, // content-encoding
    	}
    	wire2 := []byte{
    		0x6b, 0x38, 0x73, 0x00, // prefix
    		0x0a, 0x15,
    		0x0a, 0x0d, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x2f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, // apiversion
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:16 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. pkg/test/config/mock_config.pb.go

    	0x61, 0x69, 0x72, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x63, 0x6f, 0x6e,
    	0x66, 0x69, 0x67, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x50, 0x61, 0x69, 0x72, 0x52, 0x05,
    	0x70, 0x61, 0x69, 0x72, 0x73, 0x22, 0x34, 0x0a, 0x0a, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x50,
    	0x61, 0x69, 0x72, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 03 17:06:22 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/intstr/generated.pb.go

    	0x55, 0x08, 0xa9, 0x71, 0xb1, 0x65, 0xe6, 0x95, 0x84, 0x25, 0xe6, 0x48, 0x30, 0x29, 0x30, 0x6a,
    	0xb0, 0x3a, 0xf1, 0x41, 0xd5, 0xb2, 0x79, 0x82, 0x45, 0x83, 0xa0, 0xb2, 0x20, 0x75, 0xc5, 0x25,
    	0x45, 0x20, 0x75, 0xcc, 0x0a, 0x8c, 0x1a, 0x9c, 0x08, 0x75, 0xc1, 0x60, 0xd1, 0x20, 0xa8, 0xac,
    	0x15, 0xc7, 0x8c, 0x05, 0xf2, 0x0c, 0x0d, 0x77, 0x14, 0x18, 0x9c, 0x3c, 0x4f, 0x3c, 0x94, 0x63,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. src/compress/zlib/reader_test.go

    			0x4c, 0xd5, 0x51, 0x28, 0xcf, 0x2f, 0xca, 0x49,
    			0x01, 0x00, 0x28, 0xa5, 0x05, 0x5e,
    		},
    		nil,
    		nil,
    	},
    	{
    		"bad header (CINFO)",
    		"",
    		[]byte{0x88, 0x98, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01},
    		nil,
    		ErrHeader,
    	},
    	{
    		"bad header (FCHECK)",
    		"",
    		[]byte{0x78, 0x9f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01},
    		nil,
    		ErrHeader,
    	},
    	{
    		"bad checksum",
    		"",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 02:16:17 UTC 2022
    - 3.4K bytes
    - Viewed (0)
Back to top