Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 104 for bbbb (0.11 sec)

  1. 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)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    		{
    			name:            "Valid .a['bbb.c']",
    			fieldPath:       ".a['bbb.c']",
    			pathOfFieldPath: path,
    			schema:          &schema,
    		},
    		{
    			name:            "Valid .a['bbb.c'].a-b34",
    			fieldPath:       ".a['bbb.c'].a-b34",
    			pathOfFieldPath: path,
    			schema:          &schema,
    		},
    		{
    			name:            "Valid .a['bbb.c']['a-b34']",
    			fieldPath:       ".a['bbb.c']['a-b34']",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/publicsuffix/PublicSuffixDatabaseTest.kt

        assertThat(publicSuffixDatabase.getEffectiveTldPlusOne("bar.foo.my.square.com"))
          .isEqualTo("foo.my.square.com")
      }
    
      @Test fun boundarySearches() {
        val buffer =
          Buffer()
            .writeUtf8("bbb\n")
            .writeUtf8("ddd\n")
            .writeUtf8("fff\n")
        publicSuffixDatabase.setListBytes(buffer.readByteArray(), byteArrayOf())
        assertThat(publicSuffixDatabase.getEffectiveTldPlusOne("aaa")).isNull()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    		},
    		{
    			name:            "valid with .",
    			fieldPath:       ".a['bbb.c']",
    			pathOfFieldPath: path,
    			schema:          &sts,
    			validFieldPath:  path.Child("a", "bbb.c"),
    		},
    		{
    			name:            "Unclosed ]",
    			fieldPath:       ".a['bbb.c'",
    			pathOfFieldPath: path,
    			schema:          &sts,
    			errDetail:       "unexpected end of JSON path",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/anames.go

    	"ROUNDSD",
    	"ROUNDSS",
    	"RSM",
    	"RSQRTPS",
    	"RSQRTSS",
    	"SAHF",
    	"SALB",
    	"SALL",
    	"SALQ",
    	"SALW",
    	"SARB",
    	"SARL",
    	"SARQ",
    	"SARW",
    	"SARXL",
    	"SARXQ",
    	"SBBB",
    	"SBBL",
    	"SBBQ",
    	"SBBW",
    	"SCASB",
    	"SCASL",
    	"SCASQ",
    	"SCASW",
    	"SETCC",
    	"SETCS",
    	"SETEQ",
    	"SETGE",
    	"SETGT",
    	"SETHI",
    	"SETLE",
    	"SETLS",
    	"SETLT",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformerTest.java

            url = "http://hoge/aaa/../index.html";
            assertEquals("http://hoge/index.html", htmlTransformer.normalizeUrl(url));
    
            url = "http://hoge/aaa/bbb/../../index.html";
            assertEquals("http://hoge/index.html", htmlTransformer.normalizeUrl(url));
    
            url = "/../index.html";
            assertEquals(url, htmlTransformer.normalizeUrl(url));
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	SBBQ R11, R11                           // 4d19db or 4d1bdb
    	SBBB $7, (BX)                           // 801b07
    	SBBB $7, (R11)                          // 41801b07
    	SBBB $7, DL                             // 80da07
    	SBBB $7, R11                            // 4180db07
    	SBBB DL, (BX)                           // 1813
    	SBBB R11, (BX)                          // 44181b
    	SBBB DL, (R11)                          // 411813
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 21:38:44 UTC 2021
    - 581.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top