Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 0x28 (0.04 sec)

  1. src/crypto/rsa/pss_test.go

    	msg := []byte{
    		0x85, 0x9e, 0xef, 0x2f, 0xd7, 0x8a, 0xca, 0x00, 0x30, 0x8b,
    		0xdc, 0x47, 0x11, 0x93, 0xbf, 0x55, 0xbf, 0x9d, 0x78, 0xdb,
    		0x8f, 0x8a, 0x67, 0x2b, 0x48, 0x46, 0x34, 0xf3, 0xc9, 0xc2,
    		0x6e, 0x64, 0x78, 0xae, 0x10, 0x26, 0x0f, 0xe0, 0xdd, 0x8c,
    		0x08, 0x2e, 0x53, 0xa5, 0x29, 0x3a, 0xf2, 0x17, 0x3c, 0xd5,
    		0x0c, 0x6d, 0x5d, 0x35, 0x4f, 0xeb, 0xf7, 0x8b, 0x26, 0x02,
    		0x1c, 0x25, 0xc0, 0x27, 0x12, 0xe7, 0x8c, 0xd4, 0x69, 0x4c,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. src/slices/example_test.go

    	})
    	fmt.Println(seq)
    	// Output:
    	// [0 2 8]
    }
    
    func ExampleEqual() {
    	numbers := []int{0, 42, 8}
    	fmt.Println(slices.Equal(numbers, []int{0, 42, 8}))
    	fmt.Println(slices.Equal(numbers, []int{10}))
    	// Output:
    	// true
    	// false
    }
    
    func ExampleEqualFunc() {
    	numbers := []int{0, 42, 8}
    	strings := []string{"000", "42", "0o10"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:28:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. src/net/dnsclient.go

    	if x.Length != y.Length {
    		return false
    	}
    	for i := 0; i < int(x.Length); i++ {
    		a := x.Data[i]
    		b := y.Data[i]
    		if 'A' <= a && a <= 'Z' {
    			a += 0x20
    		}
    		if 'A' <= b && b <= 'Z' {
    			b += 0x20
    		}
    		if a != b {
    			return false
    		}
    	}
    	return true
    }
    
    // isDomainName checks if a string is a presentation-format domain name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. src/mime/quotedprintable/reader_test.go

    			if strings.Contains(errStr, "invalid bytes after =:") {
    				errStr = "invalid bytes after ="
    			}
    			res[errStr]++
    			if strings.Contains(errStr, "invalid hex byte ") {
    				if strings.HasSuffix(errStr, "0x20") && (strings.Contains(s, "=0 ") || strings.Contains(s, "=A ") || strings.Contains(s, "= ")) {
    					return
    				}
    				if strings.HasSuffix(errStr, "0x3d") && (strings.Contains(s, "=0=") || strings.Contains(s, "=A=")) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. test/codegen/bits.go

    	io64[1] = io64[1] & 0x0000FFFFFFFFFFFF
    	// ppc64x: -"SRD", -"AND", "RLDICL\t[$]60, R[0-9]*, [$]16, R"
    	io64[2] = (io64[2] >> 4) & 0x0000FFFFFFFFFFFF
    	// ppc64x: -"SRD", -"AND", "RLDICL\t[$]36, R[0-9]*, [$]28, R"
    	io64[3] = (io64[3] >> 28) & 0x0000FFFFFFFFFFFF
    
    	// ppc64x: "MOVWZ", "RLWNM\t[$]1, R[0-9]*, [$]28, [$]3, R"
    	io64[4] = uint64(bits.RotateLeft32(io32[0], 1) & 0xF000000F)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top