Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,669 for BAR (0.02 sec)

  1. src/internal/godebug/godebug_test.go

    		want    string
    	}{
    		{"", New("#"), ""},
    		{"", foo, ""},
    		{"foo=bar", foo, "bar"},
    		{"foo=bar,after=x", foo, "bar"},
    		{"before=x,foo=bar,after=x", foo, "bar"},
    		{"before=x,foo=bar", foo, "bar"},
    		{",,,foo=bar,,,", foo, "bar"},
    		{"foodecoy=wrong,foo=bar", foo, "bar"},
    		{"foo=", foo, ""},
    		{"foo", foo, ""},
    		{",foo", foo, ""},
    		{"foo=bar,baz", New("#loooooooong"), ""},
    	}
    	for _, tt := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. tests/test_annotated.py

            ("/default?foo=bar", 200, {"foo": "bar"}),
            ("/required?foo=bar", 200, {"foo": "bar"}),
            ("/required", 422, foo_is_missing),
            ("/required?foo=", 422, foo_is_short),
            ("/multiple?foo=bar", 200, {"foo": "bar"}),
            ("/multiple", 422, foo_is_missing),
            ("/multiple?foo=", 422, foo_is_short),
            ("/unrelated?foo=bar", 200, {"foo": "bar"}),
            ("/unrelated", 422, foo_is_missing),
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/util/DefaultJavaForkOptionsTest.groovy

            options.environment = ["FOO": "bar"]
            other.environment = ["FOO": "bar", "BAR": "foo"]
    
            then:
            !options.isCompatibleWith(other)
        }
    
        def "is compatible with the same system properties"() {
            def other = new DefaultJavaForkOptions(resolver, fileCollectionFactory, new DefaultJavaDebugOptions())
    
            when:
            options.systemProperties = ["foo": "bar", "bar": "foo"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  8. 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)
  9. pkg/apis/networking/validation/validation_test.go

    			ingressClass: makeValidIngressClass("test123", "foo.co/bar",
    				setParams(makeIngressClassParams(nil, "foo", "bar", utilpointer.String("Cluster"), nil)),
    			),
    			expectedErrs: field.ErrorList{},
    		},
    		"valid name, valid controller, invalid scope": {
    			ingressClass: makeValidIngressClass("test123", "foo.co/bar",
    				setParams(makeIngressClassParams(nil, "foo", "bar", nil, utilpointer.String("foo_ns"))),
    			),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  10. 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)
Back to top