Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for AAAA (0.27 sec)

  1. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcherTest.groovy

            ["*.foo.*"]              | "com.foo.bar.BarTest"     | "aaaa"                | true
            ["*.foo.*"]              | "foo.Test"                | "aaaa"                | false
            ["*.foo.*"]              | "fooTest"                 | "aaaa"                | false
            ["*.foo.*"]              | "foo"                     | "aaaa"                | false
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. src/encoding/base32/base32_test.go

    		{"", -1},
    		{"!!!!", 0},
    		{"x===", 0},
    		{"AA=A====", 2},
    		{"AAA=AAAA", 3},
    		{"MMMMMMMMM", 8},
    		{"MMMMMM", 0},
    		{"A=", 1},
    		{"AA=", 3},
    		{"AA==", 4},
    		{"AA===", 5},
    		{"AAAA=", 5},
    		{"AAAA==", 6},
    		{"AAAAA=", 6},
    		{"AAAAA==", 7},
    		{"A=======", 1},
    		{"AA======", -1},
    		{"AAA=====", 3},
    		{"AAAA====", -1},
    		{"AAAAA===", -1},
    		{"AAAAAA==", 6},
    		{"AAAAAAA=", -1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    		expectedMetrics string
    		expectedErr     bool
    	}{
    		{
    			desc:            "aaaa with limit 1",
    			requestBody:     strings.NewReader("aaaa"),
    			limit:           1,
    			expectedMetrics: "",
    			expectedErr:     true,
    		},
    		{
    			desc:        "aaaa with limit 5",
    			requestBody: strings.NewReader("aaaa"),
    			limit:       5,
    			expectedMetrics: `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  4. src/index/suffixarray/suffixarray_test.go

    	},
    
    	{
    		"all a's",
    		"aaaaaaaaaa", // 10 a's
    		[]string{
    			"",
    			"a",
    			"aa",
    			"aaa",
    			"aaaa",
    			"aaaaa",
    			"aaaaaa",
    			"aaaaaaa",
    			"aaaaaaaa",
    			"aaaaaaaaa",
    			"aaaaaaaaaa",
    			"aaaaaaaaaaa", // 11 a's
    			".",
    			".*",
    			"a+",
    			"aa+",
    			"aaaa[b]?",
    			"aaa*",
    		},
    	},
    
    	{
    		"abc",
    		"abc",
    		[]string{
    			"a",
    			"b",
    			"c",
    			"ab",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    			Discovery: kubeadmapi.Discovery{
    				BootstrapToken: &kubeadmapi.BootstrapTokenDiscovery{
    					Token:             "abcdef.1234567890123456",
    					APIServerEndpoint: "1.2.3.4:6443",
    					CACertHashes:      []string{"aaaa"},
    				},
    				TLSBootstrapToken: "abcdef.1234567890123456",
    			},
    			NodeRegistration: kubeadmapi.NodeRegistrationOptions{
    				Name:      "aaa",
    				CRISocket: criPath,
    			},
    		}, true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  6. cmd/utils.go

    	}
    
    	return logger.SetReqInfo(r.Context(), reqInfo)
    }
    
    // Used for registering with rest handlers (have a look at registerStorageRESTHandlers for usage example)
    // If it is passed ["aaaa", "bbbb"], it returns ["aaaa", "{aaaa:.*}", "bbbb", "{bbbb:.*}"]
    func restQueries(keys ...string) []string {
    	var accumulator []string
    	for _, key := range keys {
    		accumulator = append(accumulator, key, "{"+key+":.*}")
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  7. src/net/lookup_test.go

    					switch {
    					case network == "ip4" && !v4Ok:
    						t.Skip("IPv4 is not supported")
    					case network == "ip6" && !v6Ok:
    						t.Skip("IPv6 is not supported")
    					}
    
    					// google.com has both A and AAAA records.
    					const host = "google.com"
    					ips, err := DefaultResolver.LookupIP(context.Background(), network, host)
    					if err != nil {
    						testenv.SkipFlakyNet(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  8. test/codegen/comparisons.go

    func equalVarString2(a string) bool {
    	b := string("ZZ")
    	// amd64:-".*memequal"
    	// arm64:-".*memequal"
    	// ppc64x:-".*memequal"
    	return a[:2] == b
    }
    
    func equalConstString4() bool {
    	a := string("AAAA")
    	b := string("ZZZZ")
    	// amd64:-".*memequal"
    	// arm64:-".*memequal"
    	// ppc64x:-".*memequal"
    	return a == b
    }
    
    func equalVarString4(a string) bool {
    	b := string("ZZZZ")
    	// amd64:-".*memequal"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/cpumanager/policy_static_test.go

    				"badValue1": "",
    			},
    			expectedError: true,
    		},
    		{
    			description: "bad multiple arg",
    			policyOptions: map[string]string{
    				"badValue1": "",
    				"badvalue2": "aaaa",
    			},
    			expectedError: true,
    		},
    		{
    			description: "good arg",
    			policyOptions: map[string]string{
    				FullPCPUsOnlyOption: "true",
    			},
    			expectedError: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 40.8K bytes
    - Viewed (0)
Back to top