Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for AA (0.08 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java

          assertFalse(aa.compareAndSet(i, -0.0, 7.0));
          assertFalse(aa.weakCompareAndSet(i, -0.0, 7.0));
          assertBitEquals(+0.0, aa.get(i));
          assertTrue(aa.compareAndSet(i, +0.0, -0.0));
          assertBitEquals(-0.0, aa.get(i));
          assertFalse(aa.compareAndSet(i, +0.0, 7.0));
          assertFalse(aa.weakCompareAndSet(i, +0.0, 7.0));
          assertBitEquals(-0.0, aa.get(i));
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java

          assertFalse(aa.compareAndSet(i, -0.0, 7.0));
          assertFalse(aa.weakCompareAndSet(i, -0.0, 7.0));
          assertBitEquals(+0.0, aa.get(i));
          assertTrue(aa.compareAndSet(i, +0.0, -0.0));
          assertBitEquals(-0.0, aa.get(i));
          assertFalse(aa.compareAndSet(i, +0.0, 7.0));
          assertFalse(aa.weakCompareAndSet(i, +0.0, 7.0));
          assertBitEquals(-0.0, aa.get(i));
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 13 14:28:25 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/converter_test.go

    		},
    		"bd": ["d1", "d2"],
    		"aa": 1
    }`
    
    	var inlinedInlinedErrs = []string{
    		`unknown field "aa"`,
    	}
    
    	// combined tests everything together
    	var combinedData = `
    	{
    		"ia": {
    			"aa": 1,
    			"ab": "ab",
    			"unknownI": "foo"
    		},
    		"ha": {
    			"aa": 2,
    			"ab": "ab2",
    			"unknownH": "foo"
    		},
    		"ca":[
    			{
    				"aa":1,
    				"ab":"11",
    				"ac":true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 16:02:13 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  4. src/crypto/tls/key_schedule_test.go

    			args{
    				parseVector(`PRK (32 octets):  9b 21 88 e9 b2 fc 6d 64 d7 1d c3 29 90 0e 20 bb
    				41 91 50 00 f6 78 aa 83 9c bb 79 7c b7 d8 33 2c`),
    				"c e traffic",
    				chTranscript,
    			},
    			parseVector(`expanded (32 octets):  3f bb e6 a6 0d eb 66 c3 0a 32 79 5a ba 0e
    			ff 7e aa 10 10 55 86 e7 be 5c 09 67 8d 63 b6 ca ab 62`),
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/encoding/asn1/marshal_test.go

    	testStruct := struct {
    		Strings []string `asn1:"set"`
    	}{
    		Strings: []string{"a", "aa", "b", "bb", "c", "cc"},
    	}
    
    	// Expected ordering of the SET should be:
    	// a, b, c, aa, bb, cc
    
    	output, err := Marshal(testStruct)
    	if err != nil {
    		t.Errorf("%v", err)
    	}
    
    	expectedOrder := []string{"a", "b", "c", "aa", "bb", "cc"}
    	var resultStruct struct {
    		Strings []string `asn1:"set"`
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 10K bytes
    - Viewed (0)
  8. src/crypto/tls/testdata/Client-TLSv13-ClientCert-RSA-RSAPSS

    00000220  7a ca c0 9c 82 55 74 16  9d e2 84 31 71 28 fd ae  |z....Ut....1q(..|
    00000230  a1 5c 66 aa b4 7e e4 bf  54 fc 95 e7 e0 e5 e7 54  |.\f..~..T......T|
    00000240  54 a9 cf 14 d1 ef 18 a6  70 b8 c6 58 2c ba 7c 74  |T.......p..X,.|t|
    00000250  e4 72 14 aa 2e e1 6d ba  dc 06 9f fd 82 cd 3f 20  |.r....m.......? |
    00000260  3b 46 bf a9 1d 54 ae 3a  40 4a 76 8c 91 de 1c 42  |;F...T.:@Jv....B|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Client-TLSv12-RenegotiateOnce

    000000b0  4a 18 84 80 da 10 ed 83  9a 14 a9 a1 90 54 8e 8b  |J............T..|
    000000c0  d1 32 83 6d e7 7e be 59  f4 66 59 53 75 37 c6 82  |.2.m.~.Y.fYSu7..|
    000000d0  15 aa 56 0a 01 e1 11 ba  64 0c 8e 44 93 60 29 a4  |..V.....d..D.`).|
    000000e0  cc 9f b0 b9 d5 df 9c aa  64 2c ef 0c 9a 18 2a 97  |........d,....*.|
    000000f0  e1 20 07 37 35 28 97 9d  00 53 61 11 81 22 45 9e  |. .75(...Sa.."E.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv13-ClientCert-ECDSA-RSA

    000003b0  15 09 cf ff 82 5e a2 6d  ba 00 53 b8 b3 7c 0e e5  |.....^.m..S..|..|
    000003c0  d1 e2 a2 38 25 88 aa ee  93 c8 d9 d1 88 42 42 90  |...8%........BB.|
    000003d0  43 8d 22 d8 48 02 57 22  6a f4 e9 23 71 f0 64 30  |C.".H.W"j..#q.d0|
    000003e0  6a 68 12 a5 3c 8c 61 5e  bc 73 91 6a 01 3a 14 14  |jh..<.a^.s.j.:..|
    000003f0  86 7c 4d f5 aa cc 2f f5  17 03 03 00 35 7e f6 f5  |.|M.../.....5~..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top