Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,460 for BAR (0.02 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/fields_test.go

    		fieldpath.MakePathOrDie("foo", 0, "bar"),
    		fieldpath.MakePathOrDie("foo", 0),
    		fieldpath.MakePathOrDie("foo", 1, "bar", "baz"),
    		fieldpath.MakePathOrDie("foo", 1, "bar"),
    		fieldpath.MakePathOrDie("qux", fieldpath.KeyByFields("name", "first")),
    		fieldpath.MakePathOrDie("qux", fieldpath.KeyByFields("name", "first"), "bar"),
    		fieldpath.MakePathOrDie("qux", fieldpath.KeyByFields("name", "second"), "bar"),
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 3.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. 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)
  9. src/html/template/html_test.go

    		{"", ""},
    		{"Hello, World!", "Hello, World!"},
    		{"foo&amp;bar", "foo&amp;bar"},
    		{`Hello <a href="www.example.com/">World</a>!`, "Hello World!"},
    		{"Foo <textarea>Bar</textarea> Baz", "Foo Bar Baz"},
    		{"Foo <!-- Bar --> Baz", "Foo  Baz"},
    		{"<", "<"},
    		{"foo < bar", "foo < bar"},
    		{`Foo<script type="text/javascript">alert(1337)</script>Bar`, "FooBar"},
    		{`Foo<div title="1>2">Bar`, "FooBar"},
    		{`I <3 Ponies!`, `I <3 Ponies!`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 19 22:45:50 UTC 2015
    - 2.8K bytes
    - Viewed (0)
  10. 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)
Back to top