Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for bbbb (0.15 sec)

  1. 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+":.*}")
    	}
    	return accumulator
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  2. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcherTest.groovy

            ["com.foo.FooTest.*"]    | "com.foo.FooTest"         | "aaa"                 | true
            ["com.foo.FooTest.*"]    | "com.foo.FooTest"         | "bbb"                 | true
            ["com.foo.FooTest.*"]    | "com.foo.FooTestx"        | "bbb"                 | false
    
            ["*.FooTest.*"]          | "com.foo.FooTest"         | "aaa"                 | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. pkg/kubelet/network/dns/dns_test.go

    			hostNames:    []string{"testNS.svc.TEST", "svc.TEST", "TEST", "AAA", "BBB"},
    			resultSearch: []string{"testNS.svc.TEST", "svc.TEST", "TEST", "AAA", "BBB"},
    			events:       []string{},
    		},
    
    		{
    			desc:         "invalid: longer than 256 characters in search path list",
    			hostNames:    []string{"testNS.svc.TEST", "svc.TEST", "TEST", "AAA", strings.Repeat("B", 256), "BBB"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  4. pkg/slices/slices_test.go

    				return len(s) > 1
    			},
    			want: []string{},
    		},
    		{
    			name:     "filter elements with length greater than 1",
    			elements: []string{"a", "bbb", "ccc", ""},
    			fn: func(s string) bool {
    				return len(s) > 1
    			},
    			want: []string{"bbb", "ccc"},
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			filter := Filter(tt.elements, tt.fn)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. pkg/scheduler/apis/config/validation/validation_pluginargs_test.go

    			},
    			expect: "name part must be non-empty",
    		},
    		{
    			name: "IgnoredResources: name has too many slash",
    			args: config.NodeResourcesFitArgs{
    				IgnoredResources: []string{"example.com/aaa/bbb"},
    				ScoringStrategy:  defaultScoringStrategy,
    			},
    			expect: "a qualified name must consist of alphanumeric characters",
    		},
    		{
    			name: "IgnoredResources: valid args",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  6. pkg/kube/inject/webhook.go

    					pair := strings.SplitN(pairs[i], "=", 2)
    					// The first part is the variable name which can not be empty
    					// the second part is the variable value which can be empty but has to exist
    					// for example, aaa=bbb, aaa= are valid, but =aaa or = are not valid, the
    					// invalid ones will be ignored.
    					if len(pair[0]) > 0 && len(pair) == 2 {
    						newRes = append(newRes, pair...)
    					}
    				}
    				return newRes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
Back to top