Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for AA (0.08 sec)

  1. src/reflect/all_test.go

    	for i := 0; i < len(b); i++ {
    		if b[i] != c[i] {
    			t.Fatalf("b != c before test")
    		}
    	}
    	a1 := a
    	b1 := b
    	aa := ValueOf(&a1).Elem()
    	ab := ValueOf(&b1).Elem()
    	for tocopy := 1; tocopy <= 7; tocopy++ {
    		aa.SetLen(tocopy)
    		Copy(ab, aa)
    		aa.SetLen(8)
    		for i := 0; i < tocopy; i++ {
    			if a[i] != b[i] {
    				t.Errorf("(i) tocopy=%d a[%d]=%d, b[%d]=%d",
    					tocopy, i, a[i], i, b[i])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CacheTest.kt

      @Test
      fun partialRangeResponsesDoNotCorruptCache() {
        // 1. Request a range.
        // 2. Request a full document, expecting a cache miss.
        server.enqueue(
          MockResponse.Builder()
            .body("AA")
            .code(HttpURLConnection.HTTP_PARTIAL)
            .addHeader("Expires: " + formatDate(1, TimeUnit.HOURS))
            .addHeader("Content-Range: bytes 1000-1001/2000")
            .build(),
        )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/asm9.go

    	return op | (s&31)<<21 | (a&31)<<16 | uimm&0xFFFF
    }
    
    func OP_BR(op uint32, li uint32, aa uint32) uint32 {
    	return op | li&0x03FFFFFC | aa<<1
    }
    
    func OP_BC(op uint32, bo uint32, bi uint32, bd uint32, aa uint32) uint32 {
    	return op | (bo&0x1F)<<21 | (bi&0x1F)<<16 | bd&0xFFFC | aa<<1
    }
    
    func OP_BCR(op uint32, bo uint32, bi uint32) uint32 {
    	return op | (bo&0x1F)<<21 | (bi&0x1F)<<16
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  4. src/crypto/x509/x509_test.go

                        99:38:35:d4:d5:ac:6f:cf:a0:cb:42:8c:07:eb:21:
                        17:31:3a:eb:91:7b:62:43:a4:75:5f:ef:a7:2f:94:
                        f8:69:0b:d4:ec:09:e6:00:c0:8c:dd:07:63:0b:e4:
                        77:aa:60:18:3c:a0:e0:ae:0a:ea:0e:52:3b:b4:fa:
                        6a:30:1b:50:62:21:73:53:33:01:60:a1:6b:99:58:
                        00:f3:77:c6:0f:46:19:ca:c2:5d:cd:f5:e2:52:4d:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			},
    			expectedCost: 5,
    		},
    		{name: "cost for extended lib calculated correctly: join",
    			obj:    objs("20", "200M"),
    			schema: schemas(stringType, stringType),
    			valid: []string{
    				"size(['aa', 'bb', 'cc', 'd', 'e', 'f', 'g', 'h', 'i', 'j'].join(' ')) > 0",
    			},
    			expectedCost: 7,
    		},
    		{name: "IP and CIDR",
    			obj:    objs("20", "200M"),
    			schema: schemas(stringType, stringType),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  6. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // counties
    aa.no
    ah.no
    bu.no
    fm.no
    hl.no
    hm.no
    jan-mayen.no
    mr.no
    nl.no
    nt.no
    of.no
    ol.no
    oslo.no
    rl.no
    sf.no
    st.no
    svalbard.no
    tm.no
    tr.no
    va.no
    vf.no
    // primary and lower secondary schools per county
    gs.aa.no
    gs.ah.no
    gs.bu.no
    gs.fm.no
    gs.hl.no
    gs.hm.no
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    </pre>
    
    <pre>
    'a'
    'ä'
    '本'
    '\t'
    '\000'
    '\007'
    '\377'
    '\x07'
    '\xff'
    '\u12e4'
    '\U00101234'
    '\''         // rune literal containing single quote character
    'aa'         // illegal: too many characters
    '\xa'        // illegal: too few hexadecimal digits
    '\0'         // illegal: too few octal digits
    '\uDFFF'     // illegal: surrogate half
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top