Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,528 for BAR (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. subprojects/core/src/test/groovy/org/gradle/plugin/internal/DefaultPluginIdTest.groovy

            new DefaultPluginId("foo.bar").qualified
        }
    
        def "qualify if unqualified"() {
            expect:
            new DefaultPluginId("foo").withNamespace("bar").toString() == "bar.foo"
        }
    
        def "throws exception when trying to add multiple namespaces"() {
            when:
            new DefaultPluginId("foo.bar").withNamespace("bar")
            then:
            thrown IllegalArgumentException
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 24 07:29:33 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/config/host/name_test.go

    		},
    		{
    			"non-wildcard domain",
    			"bar.com", "foo.com", false,
    		},
    		{
    			"non-wildcard domain - order doesn't matter",
    			"foo.com", "bar.com", false,
    		},
    
    		{
    			"domain does not match subdomain",
    			"bar.foo.com", "foo.com", false,
    		},
    		{
    			"domain does not match subdomain - order doesn't matter",
    			"foo.com", "bar.foo.com", false,
    		},
    
    		{
    			"wildcard matches subdomains",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 29 15:57:39 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/trampoline_reuse_test.txt

    # Note, this program does not run. Presumably, 'DWORD $0' is simpler to
    # assembly 2^26 or so times.
    #
    # We build something which should be laid out as such:
    #
    # bar.Bar
    # main.Func1
    # bar.Bar+400-tramp0
    # main.BigAsm
    # main.Func2
    # bar.Bar+400-tramp1
    #
    # bar.Bar needs to be placed far enough away to generate relocations
    # from main package calls. and main.Func1 and main.Func2 are placed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 14:31:23 UTC 2022
    - 2.7K bytes
    - Viewed (0)
Back to top