Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 276 for AA (0.03 sec)

  1. src/cmd/compile/internal/test/testdata/fp_test.go

    	// Intended to create register pressure which forces
    	// asymmetric op into different code paths.
    	aa, ab, ac, ad, ba, bb, bc, bd, ca, cb, cc, cd, da, db, dc, dd := manysub_ssa(1000.0, 100.0, 10.0, 1.0)
    
    	expect64(t, "aa", aa, 11.0)
    	expect64(t, "ab", ab, 900.0)
    	expect64(t, "ac", ac, 990.0)
    	expect64(t, "ad", ad, 999.0)
    
    	expect64(t, "ba", ba, -900.0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 35K bytes
    - Viewed (0)
  2. src/crypto/tls/testdata/Client-TLSv10-ExportKeyingMaterial

    00000270  00 bc cf 9c 7d b7 40 20  01 5f aa d3 16 61 09 a2  |....}.@ ._...a..|
    00000280  76 fd 13 c3 cc e1 0c 5c  ee b1 87 82 f1 6c 04 ed  |v......\.....l..|
    00000290  73 bb b3 43 77 8d 0c 1c  f1 0f a1 d8 40 83 61 c9  |s..Cw.......@.a.|
    000002a0  4c 72 2b 9d ae db 46 06  06 4d f4 c1 b3 3e c0 d1  |Lr+...F..M...>..|
    000002b0  bd 42 d4 db fe 3d 13 60  84 5c 21 d3 3b e9 fa e7  |.B...=.`.\!.;...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. src/crypto/rsa/testdata/pss-vect.txt.bz2

    8e 8b 79 7a a4 3b 88 26 84 33 3e 17 89 3f e9 ca a6 aa 29 9f 7e d1 a1 8e e2 c5 48 64 b7 b2 b9 9b 72 61 8f b0 25 74 d1 39 ef 50 f0 19 c9 ee f4 16 97 13 38 e7 d4 70 # Salt: 71 0b 9c 47 47 d8 00 d4 de 87 f1 2a fd ce 6d f1 81 07 cc 77 # Signature: 66 60 26 fb a7 1b d3 e7 cf 13 15 7c c2 c5 1a 8e 4a a6 84 af 97 78 f9 18 49 f3 43 35 d1 41 c0 01 54 c4 19 76 21 f9 62 4a 67 5b 5a bc 22 ee 7d 5b aa ff aa e1 c9 ba ca 2c c3 73 b3 f3 3e 78 e6 14 3c 39 5a 91 aa 7f ac a6 64 eb 73 3a fd 14 d8 82 72 59 d9 9a 75 50...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 27.9K bytes
    - Viewed (0)
  4. src/crypto/tls/testdata/Server-TLSv13-Ed25519

    >>> Flow 1 (client to server)
    00000000  16 03 01 00 ca 01 00 00  c6 03 03 08 d3 0c d5 aa  |................|
    00000010  d7 b1 55 99 bc fa a7 17  09 ed 93 47 96 44 70 28  |..U........G.Dp(|
    00000020  03 b7 c6 40 ee 98 fe 30  83 86 ea 20 d0 89 76 54  |...@...0... ..vT|
    00000030  87 71 b7 9c b7 fd f2 19  15 5f 3b 39 c9 ad 6b 97  |.q......._;9..k.|
    00000040  89 6e c4 69 cc 83 b1 f0  e7 94 68 85 00 04 13 03  |.n.i......h.....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. src/crypto/tls/testdata/Client-TLSv12-P256-ECDHE

    00000010  35 80 c6 04 f5 69 05 bb  5c 38 78 d3 99 2f ad e6  |5....i..\8x../..|
    00000020  56 20 d4 79 89 1a 51 54  14 ac 6d 20 06 6d 1a bd  |V .y..QT..m .m..|
    00000030  04 cf 4f 42 3d aa 31 3b  fb dc c1 85 42 c3 6d 12  |..OB=.1;....B.m.|
    00000040  27 98 be 4b 88 93 45 0e  78 ba d8 13 c0 2f 00 00  |'..K..E.x..../..|
    00000050  11 ff 01 00 01 00 00 0b  00 04 03 00 01 02 00 17  |................|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. src/regexp/onepass_test.go

    	{`^(?:(?:a{0,})*?)$`, false},
    	{`^(?:(?:a+)*)$`, true},
    	{`^(?:(?:a|(?:aa)))$`, true},
    	{`^(?:[^\s\S])$`, true},
    	{`^(?:(?:a{3,4}){0,})$`, false},
    	{`^(?:(?:(?:a*)+))$`, true},
    	{`^[a-c]+$`, true},
    	{`^[a-c]*$`, true},
    	{`^(?:a*)$`, true},
    	{`^(?:(?:aa)|a)$`, true},
    	{`^[a-c]*`, false},
    	{`^...$`, true},
    	{`^(?:a|(?:aa))$`, true},
    	{`^a((b))c$`, true},
    	{`^a.[l-nA-Cg-j]?e$`, true},
    	{`^a((b))$`, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/SuppressedExceptionTestingIntegrationTest.groovy

                        return input.toUpperCase();
                    }
    
                    @Test
                    void failingWithSuppressedExceptionTest() {
                        Assertions.assertEquals("AA", toUpper("aa"));
                    }
    
                    @Test
                    void failingWithCustomSuppressedExceptionTest() {
                        Assertions.assertEquals("BB", toUpper("bb"));
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. test/string_lit.go

    				bc = int(b[i])
    			}
    			if ac != bc {
    				print("\ta[", i, "] = ", ac, "; b[", i, "] =", bc, "\n")
    			}
    		}
    		panic("string_lit")
    	}
    }
    
    const (
    	gx1    = "本☺"
    	gx2    = "\xFF\xFF本☺"
    	gx2fix = "\uFFFD\uFFFD本☺"
    )
    
    var (
    	gr1 = []rune(gx1)
    	gr2 = []rune(gx2)
    	gb1 = []byte(gx1)
    	gb2 = []byte(gx2)
    )
    
    func main() {
    	ecode = 0
    	s :=
    		"" +
    			" " +
    			"'`" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 13 01:17:02 UTC 2013
    - 3.6K bytes
    - Viewed (0)
  9. pkg/config/host/names_test.go

    		// Prove we sort alphabetically:
    		{
    			host.Names{"b", "a"},
    			host.Names{"a", "b"},
    		},
    		{
    			host.Names{"bb", "cc", "aa"},
    			host.Names{"aa", "bb", "cc"},
    		},
    		// Prove we sort longest first, alphabetically:
    		{
    			host.Names{"b", "a", "aa"},
    			host.Names{"aa", "a", "b"},
    		},
    		{
    			host.Names{"foo.com", "bar.com", "foo.bar.com"},
    			host.Names{"foo.bar.com", "bar.com", "foo.com"},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 10:35:13 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv13-ALPN

    000002c0  3f 76 d1 76 aa 5d da c4  29 ca d7 22 c4 44 b4 e8  |?v.v.]..)..".D..|
    000002d0  64 b6 6d 0f 16 cd d9 e9  62 17 91 64 03 0f 99 8f  |d.m.....b..d....|
    000002e0  c6 97 c8 4b c9 45 c4 31  e4 1f a8 b0 aa 67 02 e7  |...K.E.1.....g..|
    000002f0  20 68 2a 89 f9 b8 e8 ce  93 d0 a3 1b 0d d1 4c 45  | h*...........LE|
    00000300  c2 19 ac aa 87 43 95 ae  c4 56 56 fe 4b 0e af db  |.....C...VV.K...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top