Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 779 for BAR (0.02 sec)

  1. src/test/java/org/codelibs/fess/helper/DuplicateHostHelperTest.java

            foo.setDuplicateHostName("foo.com");
            duplicateHostHelper.duplicateHostList.add(foo);
            DuplicateHost bar = new DuplicateHost();
            bar.setRegularName("www.bar.com");
            bar.setDuplicateHostName("mail.bar.com");
            duplicateHostHelper.duplicateHostList.add(bar);
            DuplicateHost hoge = new DuplicateHost();
            hoge.setRegularName("www.foo.com");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/matcher/template_test.go

    	}{
    		{
    			name: "matchOneOnly",
    			path: "/foo/bar/{*}",
    			want: &uri_template.UriTemplateMatchConfig{
    				PathTemplate: "/foo/bar/*",
    			},
    		},
    		{
    			name: "matchAnyOnly",
    			path: "/foo/{**}/bar",
    			want: &uri_template.UriTemplateMatchConfig{
    				PathTemplate: "/foo/**/bar",
    			},
    		},
    		{
    			name: "matchAnyAndOne",
    			path: "/{*}/foo/{**}/bar",
    			want: &uri_template.UriTemplateMatchConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/authentication/serviceaccount/util_test.go

    		{Namespace: "foo", Name: "bar", Username: "system:serviceaccount:bar", Expect: false},
    		{Namespace: "foo", Name: "bar", Username: ":bar", Expect: false},
    		{Namespace: "foo", Name: "bar", Username: "foo:bar", Expect: false},
    		{Namespace: "foo", Name: "bar", Username: "", Expect: false},
    
    		{Namespace: "foo2", Name: "bar", Username: "system:serviceaccount:foo:bar", Expect: false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/HashBiMapTest.java

        map.put("quux", 3);
    
        map.remove("bar");
        assertThat(map.entrySet())
            .containsExactly(Maps.immutableEntry("foo", 1), Maps.immutableEntry("quux", 3))
            .inOrder();
      }
    
      public void testInsertionOrderAfterRemoveLast() {
        BiMap<String, Integer> map = HashBiMap.create();
        map.put("foo", 1);
        map.put("bar", 2);
        map.put("quux", 3);
    
        map.remove("quux");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/CombinatorsTest.kt

            assertFailure(
                parser("bar"),
                "Expecting symbol 'foo', but got 'bar' instead"
            )
        }
    
        @Test
        fun `can parse sequence of symbols`() {
            val parser = combinator.symbol("foo") * combinator.symbol("bar")
            assertSuccess(parser("foo bar"))
            assertSuccess(parser("foo /*comment*/  bar"))
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  6. tests/test_jsonable_encoder.py

        with pytest.raises(ValidationError):
            ModelWithAlias(foo="Bar")
    
    
    def test_encode_model_with_alias():
        model = ModelWithAlias(Foo="Bar")
        assert jsonable_encoder(model) == {"Foo": "Bar"}
    
    
    def test_encode_model_with_default():
        model = ModelWithDefault(foo="foo", bar="bar")
        assert jsonable_encoder(model) == {"foo": "foo", "bar": "bar", "bla": "bla"}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/defaultValues/typeQualifier.kt

    fun test() {
        <expr>Foo</expr>.Bar().bar()
    }
    
    class Foo {
        class Bar {
            fun bar() {}
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:53:11 UTC 2024
    - 105 bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/compilerPluginUsage.txt

    public final class CodeFragment$run$Bar {
        // source: 'fragment.kt'
        enclosing method CodeFragment.run()V
        inner (local) class CodeFragment$run$Bar Bar
        inner (local) class CodeFragment$run$Foo Foo
        public method <init>(): void
    }
    
    public class CodeFragment$run$Foo {
        // source: 'fragment.kt'
        enclosing method CodeFragment.run()V
        inner (local) class CodeFragment$run$Foo Foo
        public method <init>(): void
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 16 19:18:28 UTC 2024
    - 707 bytes
    - Viewed (0)
  9. test/fixedbugs/issue26411.go

    			},
    		},
    		{
    			code: `
    package main
    
    func main() {
    
                bar:
       bar:
    bar:
    bar            :
    }
    `,
    
    			errors: []string{
    				"^.+:6:13: label bar defined and not used\n",
    				".+:7:4: label bar already defined at .+:6:13\n",
    				".+:8:1: label bar already defined at .+:6:13\n",
    				".+:9:1: label bar already defined at .+:6:13\n$",
    			},
    		},
    	}
    
    	for i, test := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/multicluster/httproute-referencegrant.yaml

    spec:
      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /bar
        backendRefs:
        - group: multicluster.x-k8s.io
          kind: ServiceImport
          name: bar
          namespace: bar
    ---
    kind: ReferenceGrant
    apiVersion: gateway.networking.k8s.io/v1beta1
    metadata:
      name: bar
      namespace: bar
    spec:
      from:
      - group: gateway.networking.k8s.io
        kind: HTTPRoute
        namespace: foo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 598 bytes
    - Viewed (0)
Back to top