Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for bbbb (0.03 sec)

  1. pkg/auth/authorizer/abac/abac_test.go

    			Policy: &v0.Policy{
    				User:  "",
    				Group: "b",
    			},
    			ExpectMatch: false,
    		},
    		"v0 group policy does not match substring": {
    			User: user.DefaultInfo{Name: "Foo", Groups: []string{"A", "BBB", "C", user.AllAuthenticated}},
    			Policy: &v0.Policy{
    				User:  "",
    				Group: "B",
    			},
    			ExpectMatch: false,
    		},
    		"v0 group policy matches user in group": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 40K bytes
    - Viewed (0)
  2. 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)
  3. src/text/tabwriter/tabwriter.go

    // tab-separated: non-tab terminated trailing text at the end of a line
    // forms a cell but that cell is not part of an aligned column.
    // For instance, in this example (where | stands for a horizontal tab):
    //
    //	aaaa|bbb|d
    //	aa  |b  |dd
    //	a   |
    //	aa  |cccc|eee
    //
    // the b and c are in distinct columns (the b column is not contiguous
    // all the way). The d and e are not in a column at all (there's no
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/386Ops.go

    		{name: "SQRTSS", argLength: 1, reg: fp11, asm: "SQRTSS"}, // sqrt(arg0), float32
    
    		{name: "SBBLcarrymask", argLength: 1, reg: flagsgp, asm: "SBBL"}, // (int32)(-1) if carry is set, 0 if carry is clear.
    		// Note: SBBW and SBBB are subsumed by SBBL
    
    		{name: "SETEQ", argLength: 1, reg: readflags, asm: "SETEQ"}, // extract == condition from arg0
    		{name: "SETNE", argLength: 1, reg: readflags, asm: "SETNE"}, // extract != condition from arg0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  5. 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