Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,271 for BAR (0.12 sec)

  1. src/cmd/go/testdata/script/mod_import_vendor.txt

    -- 122go.mod --
    module example.com/x
    go 1.22
    
    require "foo.com/internal/bar" v1.0.0
    
    -- go.mod --
    module example.com/x
    go 1.23
    
    require "foo.com/internal/bar" v1.0.0
    
    -- incorrect_modules.txt --
    # foo.com/internal/bar v1.0.0
    ## explicit
    foo.com/internal/bar/a
    
    -- correct_modules.txt --
    # foo.com/internal/bar v1.0.0
    ## explicit
    foo.com/internal/bar/a
    foo.com/internal/bar/b
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/width_test.go

    			requestInfo: &apirequest.RequestInfo{
    				Verb:     "list",
    				APIGroup: "foo.bar",
    				Resource: "events",
    			},
    			counts: map[string]int64{
    				"events.foo.bar": 699,
    			},
    			maxSeats:             10,
    			initialSeatsExpected: 7,
    		},
    		{
    			name:       "request verb is list, resource version not set",
    			requestURI: "http://server/apis/foo.bar/v1/events?limit=399",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. src/go/doc/comment/testdata/link6.txt

    For example, [https://en.wikipedia.org/wiki/John\_Adams\_(miniseries)](https://en.wikipedia.org/wiki/John_Adams_(miniseries)). And [https://example.com/\[foo]/bar](https://example.com/[foo]/bar){. And [https://example.com/(foo)/bar](https://example.com/(foo)/bar)! And [https://example.com/{foo}/bar](https://example.com/{foo}/bar){. And [https://example.com/](https://example.com/))baz{foo}.
    
    \[And [https://example.com/](https://example.com/)].
    
    -- html --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  4. tests/test_response_model_include_exclude.py

        response_model=Model2,
        response_model_exclude={"ref": {"bar"}},
    )
    def simple_exclude():
        return Model2(
            ref=Model1(foo="simple_exclude model foo", bar="simple_exclude model bar"),
            baz="simple_exclude model2 baz",
        )
    
    
    @app.get(
        "/simple_exclude_dict",
        response_model=Model2,
        response_model_exclude={"ref": {"bar"}},
    )
    def simple_exclude_dict():
        return {
            "ref": {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jul 19 19:14:58 UTC 2021
    - 4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ir/func_test.go

    			in:  `foo.Bar[sync/atomic.Uint64]`,
    			pkg: `foo`,
    			sym: "Bar[sync/atomic.Uint64]",
    		},
    		{
    			in:  `example%2ecom.Bar[sync/atomic.Uint64]`,
    			pkg: `example%2ecom`,
    			sym: "Bar[sync/atomic.Uint64]",
    		},
    		{
    			in:  `gopkg.in/yaml%2ev3.Bar[sync/atomic.Uint64]`,
    			pkg: `gopkg.in/yaml%2ev3`,
    			sym: "Bar[sync/atomic.Uint64]",
    		},
    		{
    			// This one is a real symbol name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 13:56:32 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeConventionIntegrationTest.groovy

        }
    
        static String setFooBar(String bar) {
            return setFoo(setBar(bar))
        }
    
        static String setBar(String bar) {
            return "bar = \"${bar}\"\n"
        }
    
        static String setFoo(String contents) {
            return "foo {\n${contents}\n}"
        }
    
        static String setAll(String id, String bar) {
            return setId(id) + "\n" + setFooBar(bar)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 12:50:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/attributes/DefaultImmutableAttributesFactoryTest.groovy

            then:
            attributes.getAttribute(FOO) == "foo"
            attributes.findEntry(FOO).get() == "foo"
            attributes.findEntry("foo").get() == "foo"
    
            attributes.getAttribute(BAR) == "bar"
            attributes.findEntry(BAR).get() == "bar"
            attributes.findEntry("bar").get() == "bar"
    
            attributes.getAttribute(BAZ) == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 07 17:59:06 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  8. src/testing/match_test.go

    		// to match.
    		{"TestFoo/bar/baz", "", "TestFoo", "bar/baz", true, false},
    		{"TestFoo/bar/baz", "TestFoo/bar/baz", "TestFoo", "bar/baz", false, false},
    		{"TestFoo/bar/baz", "TestFoo/bar/baz/skip", "TestFoo", "bar/baz", true, false},
    		{"TestFoo/bar/baz", "", "TestFoo/bar", "baz", true, false},
    		{"TestFoo/bar/baz", "", "TestFoo", "x", false, false},
    		{"TestFoo", "", "TestBar", "x", false, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 14:48:54 UTC 2022
    - 8K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/BuildScriptCompileAvoidanceIntegrationTest.kt

                """,
                multifileAnnotations
            )
            givenKotlinScriptInBuildSrcContains(
                "bar",
                """
                fun bar() = "bar"
                """,
                multifileAnnotations
            )
            withUniqueScript("println($packageName.foo() + $packageName.bar())")
            configureProject().assertBuildScriptCompiled().assertOutputContains("foobar")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Sep 24 17:45:42 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  10. pkg/controller/clusterroleaggregation/clusterroleaggregation_controller_test.go

    				role("saw", map[string]string{"foo": "bar"}, sawRules()),
    				role("other-saw", map[string]string{"foo": "not-bar"}, sawRules()),
    				combinedRole([]map[string]string{{"foo": "bar"}, {"foo": "not-bar"}}),
    			},
    			clusterRoleToSync:        "combined",
    			expectedClusterRole:      combinedRole([]map[string]string{{"foo": "bar"}, {"foo": "not-bar"}}, chiselRules(), hammerRules(), sawRules()),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top