Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,093 for BAR (0.06 sec)

  1. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensionsTest.kt

            val container = mock<PolymorphicDomainObjectContainer<DomainObjectBase>> {
                on { getByName("alice") } doReturn alice
                on { maybeCreate("alice", DomainObjectBase.Foo::class.java) } doReturn alice
                on { create(eq("bob"), eq(DomainObjectBase.Bar::class.java), any<Action<DomainObjectBase.Bar>>()) } doReturn bob
                on { create("john") } doReturn default
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 22:58:28 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. tests/test_tutorial/test_dependencies/test_tutorial004_an_py310.py

                200,
                {"items": [{"item_name": "Bar"}, {"item_name": "Baz"}], "q": "foo"},
            ),
            (
                "/items?q=bar&limit=2",
                200,
                {"items": [{"item_name": "Foo"}, {"item_name": "Bar"}], "q": "bar"},
            ),
            (
                "/items?q=bar&skip=1&limit=1",
                200,
                {"items": [{"item_name": "Bar"}], "q": "bar"},
            ),
            (
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. pkg/config/host/names.go

    // e.g.:
    // NamesForNamespace(["ns1/foo.com","ns2/bar.com"], "ns1")   = Names(["foo.com"])
    // NamesForNamespace(["ns1/foo.com","ns2/bar.com"], "ns3")   = Names([])
    // NamesForNamespace(["ns1/foo.com","*/bar.com"], "ns1")     = Names(["foo.com","bar.com"])
    // NamesForNamespace(["ns1/foo.com","*/bar.com"], "ns3")     = Names(["bar.com"])
    // NamesForNamespace(["foo.com","ns2/bar.com"], "ns2")       = Names(["foo.com","bar.com"])
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 01 19:19:22 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  4. src/mime/mediatype_test.go

    		}
    	}
    }
    
    func TestConsumeMediaParam(t *testing.T) {
    	tests := [...][4]string{
    		{" ; foo=bar", "foo", "bar", ""},
    		{"; foo=bar", "foo", "bar", ""},
    		{";foo=bar", "foo", "bar", ""},
    		{";FOO=bar", "foo", "bar", ""},
    		{`;foo="bar"`, "foo", "bar", ""},
    		{`;foo="bar"; `, "foo", "bar", "; "},
    		{`;foo="bar"; foo=baz`, "foo", "bar", "; foo=baz"},
    		{` ; boundary=----CUT;`, "boundary", "----CUT", ";"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 26 17:58:37 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/openapi/compiling_test.go

    	}{
    		{
    			expression:       "foo.foo == bar.bar",
    			expectEvalResult: true,
    		},
    		{
    			expression:         "foo.bar == 'value'",
    			expectCompileError: true,
    		},
    		{
    			expression:       "foo.foo == 'value'",
    			expectEvalResult: true,
    		},
    		{
    			expression:       "bar.bar == 'value'",
    			expectEvalResult: true,
    		},
    		{
    			expression:       "foo.common + bar.common <= 2",
    			expectEvalResult: false, // 3 > 2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/builder/iptables_builder_test.go

    				builder.AppendRuleV6(iptableslog.UndefinedCommand, "chain", "table", "-f", "fu", "-b", "bar")
    				builder.AppendRuleV6(iptableslog.UndefinedCommand, "chain", "table", "-f", "foo", "-b", "baz")
    			},
    			true,
    		},
    		{
    			"insert-multi-v4",
    			true,
    			false,
    			func(builder *IptablesRuleBuilder) {
    				builder.InsertRuleV4(iptableslog.UndefinedCommand, "chain", "table", 1, "-f", "foo", "-b", "bar")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/str/str_test.go

    		{"foo", "/", false},
    		{"foo", "foo", true},
    		{"foo", "foo/", false},
    		{"foo", "/foo", false},
    		{"foo/bar", "", true},
    		{"foo/bar", "foo", true},
    		{"foo/bar", "foo/", true},
    		{"foo/bar", "/foo", false},
    		{"foo/bar", "foo/bar", true},
    		{"foo/bar", "foo/bar/", false},
    		{"foo/bar", "/foo/bar", false},
    	} {
    		got := HasPathPrefix(tt.s, tt.prefix)
    		if got != tt.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 25 16:49:13 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectCollectionExtensionsTest.kt

                onCreateWithAction("bar", barObject)
            }
    
            container {
                // invoke syntax
                val foo by creating { foo = "foo" }
                assertThat(foo.foo, equalTo("foo"))
            }
    
            container.apply {
                // regular syntax
                val bar by creating { foo = "bar" }
                assertThat(bar.foo, equalTo("bar"))
            }
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/grpcgen/lds_test.go

    			in: []string{
    				"bar",
    				"bar.ns",
    				"bar.ns.svc",
    				"bar.ns.svc.cluster.local",
    				"foo:80",
    				"foo.ns:81",
    				"foo.ns.svc:82",
    				"foo.ns.svc.cluster.local:83",
    			},
    			want: listenerNames{
    				"bar":        {RequestedNames: sets.New("bar")},
    				"bar.ns":     {RequestedNames: sets.New("bar.ns")},
    				"bar.ns.svc": {RequestedNames: sets.New("bar.ns.svc")},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 30 20:07:58 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/group_by_dialect.mlir

      "foo.someop"() ({
        "bar.a"(%arg0) : (f32) -> f32
        "bar.b"(%arg1) : (f32) -> f32
        "bar.c"(%0) : (f32) -> f32
      }, {}): () -> ()
      return
    }
    
    // CHECK: func @handles_regions_that_use_arguments
    // CHECK: call [[foo:@[^(]*]](%arg0, %arg1, %0)
    // CHECK: func [[bar:@[^(]*]]
    // CHECK-SAME: dialect = "bar"
    // CHECK: bar.a
    // CHECK: bar.b
    // CHECK: bar.c
    // CHECK: func [[foo]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 28 23:43:21 UTC 2022
    - 5.7K bytes
    - Viewed (0)
Back to top