Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 276 for AA (0.03 sec)

  1. test/ken/complit.go

    package main
    
    type	M	map[int]int
    type	S	struct{ a,b,c int };
    type	SS	struct{ aa,bb,cc S };
    type	SA	struct{ a,b,c [3]int };
    type	SC	struct{ a,b,c []int };
    type	SM	struct{ a,b,c M };
    
    func
    main() {
    	test("s.a", s.a);
    	test("s.b", s.b);
    	test("s.c", s.c);
    
    	test("ss.aa.a", ss.aa.a);
    	test("ss.aa.b", ss.aa.b);
    	test("ss.aa.c", ss.aa.c);
    
    	test("ss.bb.a", ss.bb.a);
    	test("ss.bb.b", ss.bb.b);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 4.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_fuzz_mutate_crash.txt

    	f.Fuzz(func(t *testing.T, b []byte) {
    		if string(b) != "aa" {
    			runtime.Goexit()
    		}
    	})
    }
    
    func FuzzWithFail(f *testing.F) {
    	f.Add([]byte("aa"))
    	f.Fuzz(func(t *testing.T, b []byte) {
    		if string(b) != "aa" {
    			t.Fail()
    		}
    	})
    }
    
    func FuzzWithLogFail(f *testing.F) {
    	f.Add([]byte("aa"))
    	f.Fuzz(func(t *testing.T, b []byte) {
    		if string(b) != "aa" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/impl/SingleDepthFileAccessTrackerTest.groovy

                1 * journal.setLastAccessTime(it, _)
            }
            0 * _
    
            where:
            depth | touchedPaths
            1     | ["a", "b"]
            2     | ["a/aa", "b/bb"]
            3     | ["a/aa/aaa", "b/bb/bbb"]
            4     | ["a/aa/aaa/1", "b/bb/bbb/2"]
            5     | []
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. src/net/dnsconfig_windows.go

    	if err != nil {
    		return
    	}
    
    	for _, aa := range aas {
    		// Only take interfaces whose OperStatus is IfOperStatusUp(0x01) into DNS configs.
    		if aa.OperStatus != windows.IfOperStatusUp {
    			continue
    		}
    
    		// Only take interfaces which have at least one gateway
    		if aa.FirstGatewayAddress == nil {
    			continue
    		}
    
    		for dns := aa.FirstDnsServerAddress; dns != nil; dns = dns.Next {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 10:25:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. 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)
  6. cluster/addons/calico-policy-controller/bgpconfigurations-crd.yaml

                            For standard community use `aa:nn` format, where `aa` and
                            `nn` are 16 bit number. For large community use `aa:nn:mm`
                            format, where `aa`, `nn` and `mm` are 32 bit number. Where,
                            `aa` is an AS Number, `nn` and `mm` are per-AS identifier.
                          pattern: ^(\d+):(\d+)$|^(\d+):(\d+):(\d+)$
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  7. src/text/tabwriter/example_test.go

    	w := tabwriter.NewWriter(os.Stdout, 0, 0, 1, '.', tabwriter.AlignRight|tabwriter.Debug)
    	fmt.Fprintln(w, "a\tb\tc")
    	fmt.Fprintln(w, "aa\tbb\tcc")
    	fmt.Fprintln(w, "aaa\t") // trailing tab
    	fmt.Fprintln(w, "aaaa\tdddd\teeee")
    	w.Flush()
    
    	// output:
    	// ....a|..b|c
    	// ...aa|.bb|cc
    	// ..aaa|
    	// .aaaa|.dddd|eeee
    }
    
    func Example_trailingTab() {
    	// Observe that the third line has no trailing tab,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 23 22:09:32 UTC 2016
    - 2K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/compilerFacility/AbstractFirPluginPrototypeCompilerFacilityTestWithAnalysis.kt

    import org.jetbrains.kotlin.test.services.TestServices
    
    /**
     * The IDE can run analysis before calling CodeGen API. We found some cases that generate different FIR expressions between analysis
     * and CodeGen API. For example, AA generates `FirLiteralExpression` for an initializer of a property, while CodeGen API generates
     * `FirLazyExpression`. The difference can result in crashes. This class helps us test the IDE situation that first calls analysis
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. tests/main_test.go

    	}
    
    	var columns []string
    	if DB.Where("sdsd.zaaa = ?", "sd;;;aa").Pluck("aaa", &columns).Error == nil {
    		t.Errorf("Should got error with invalid SQL")
    	}
    
    	if DB.Model(&User{}).Where("sdsd.zaaa = ?", "sd;;;aa").Pluck("aaa", &columns).Error == nil {
    		t.Errorf("Should got error with invalid SQL")
    	}
    
    	if DB.Where("sdsd.zaaa = ?", "sd;;;aa").Find(&User{}).Error == nil {
    		t.Errorf("Should got error with invalid SQL")
    	}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Mar 24 01:31:58 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv13-AES256-SHA384

    00000070  5f c5 ac e7 85 06 86 a4  21 10 aa 56 18 3a 39 14  |_.......!..V.:9.|
    00000080  03 03 00 01 01 17 03 03  00 17 a8 c3 84 a3 a2 42  |...............B|
    00000090  ba c8 40 ef f8 53 02 58  d7 39 3f b2 34 2f 4e 71  |..@..S.X.9?.4/Nq|
    000000a0  54 17 03 03 02 6d e5 41  6d ac 46 4e 7c 71 5c b9  |T....m.Am.FN|q\.|
    000000b0  c5 aa 8d 7d f2 ef f3 40  22 9d db d3 83 49 45 94  |...}...@"....IE.|
    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