Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,528 for BAR (0.03 sec)

  1. 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)
  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. src/net/http/header_test.go

    	{" foo ", "foo", true},
    	{"foo,bar", "foo", true},
    	{"bar,foo", "foo", true},
    	{"bar, foo", "foo", true},
    	{"bar,foo, baz", "foo", true},
    	{"bar, foo,baz", "foo", true},
    	{"bar,foo, baz", "foo", true},
    	{"bar, foo, baz", "foo", true},
    	{"FOO", "foo", true},
    	{"FOO ", "foo", true},
    	{" FOO", "foo", true},
    	{" FOO ", "foo", true},
    	{"FOO,BAR", "foo", true},
    	{"BAR,FOO", "foo", true},
    	{"BAR, FOO", "foo", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:07:32 UTC 2022
    - 6.1K 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. src/cmd/go/testdata/script/cgo_trimpath_macro.txt

    }
    -- vendor/v.com/main/foo.c --
    #include "bar.h"
    -- vendor/v.com/c/bar.h --
    #include "stdio.h"
    
    void printfile() {
        printf("%s\n", __FILE__);
    }
    -- main/main.go --
    package main
    
    // #cgo CFLAGS: -I../c
    // #include "stdio.h"
    // void printfile();
    import "C"
    
    func main() {
        C.printfile()
        C.fflush(C.stdout)
    }
    -- main/foo.c --
    #include "bar.h"
    -- c/bar.h --
    #include "stdio.h"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 22 19:56:37 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/apis/core/toleration_test.go

    			toleration: &Toleration{
    				Key:      "foo",
    				Operator: "Exists",
    				Value:    "bar",
    				Effect:   TaintEffectNoSchedule,
    			},
    			tolerationToMatch: &Toleration{
    				Key:      "foo",
    				Operator: "Exists",
    				Value:    "bar",
    				Effect:   TaintEffectNoSchedule,
    			},
    			expectMatch: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 01:44:27 UTC 2017
    - 3.5K bytes
    - Viewed (0)
Back to top