Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 616 for BAR (0.02 sec)

  1. 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)
  2. 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)
  3. src/mime/quotedprintable/reader_test.go

    		in, want string
    		err      any
    	}{
    		{in: "", want: ""},
    		{in: "foo bar", want: "foo bar"},
    		{in: "foo bar=3D", want: "foo bar="},
    		{in: "foo bar=3d", want: "foo bar="}, // lax.
    		{in: "foo bar=\n", want: "foo bar"},
    		{in: "foo bar\n", want: "foo bar\n"}, // somewhat lax.
    		{in: "foo bar=0", want: "foo bar=0"}, // lax
    		{in: "foo bar=0D=0A", want: "foo bar\r\n"},
    		{in: " A B        \r\n C ", want: " A B\r\n C"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcherTest.groovy

            ["*Foo+Bar*"]                       | "Foo+Bar"                 | "test"                | true
            ["*Foo+Bar*"]                       | "Foo+Bar"                 | "xxxx"                | true
            ["*Foo+Bar*"]                       | "com.Foo+Bar"             | "xxxx"                | true
            ["*Foo+Bar*"]                       | "FooBar"                  | "xxxx"                | false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. tests/main.py

        if query is None:
            return "foo bar"
        return f"foo bar {query}"
    
    
    @app.get("/query/int/default")
    def get_query_type_int_default(query: int = 10):
        return f"foo bar {query}"
    
    
    @app.get("/query/param")
    def get_query_param(query=Query(default=None)):
        if query is None:
            return "foo bar"
        return f"foo bar {query}"
    
    
    @app.get("/query/param-required")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/IsolatableSerializerRegistryTest.groovy

            and:
            newIsolatables[0].isolate().getFoo() == "bar"
            newIsolatables[1].isolate().getFoo() == "baz"
        }
    
        def "can serialize/deserialize generated immutable Managed values"() {
            def instantiator = TestUtil.objectInstantiator()
            def managedValue1 = instantiator.named(TestManagedTypes.ImmutableManagedThing, "bar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/project/NewDefaultProjectTest.groovy

            def a = createChildProject(project, "a")
    
            [project, a].each { it.task "foo"; it.task "bar" }
    
            when:
            def rootTasks = project.getAllTasks(true)
            def aTasks = a.getAllTasks(true)
    
            then:
            rootTasks.size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. src/os/path_windows_test.go

    		{`long.txt`, `\\?\C:\cwd\long.txt`},
    		{`C:long.txt`, `\\?\C:\cwd\long.txt`},
    		{`C:\long\.\bar\baz`, `\\?\C:\long\bar\baz`},
    		{`C:long\.\bar\baz`, `\\?\C:\cwd\long\bar\baz`},
    		{`C:\long\..\bar\baz`, `\\?\C:\bar\baz`},
    		{`C:long\..\bar\baz`, `\\?\C:\cwd\bar\baz`},
    		{`C:\long\foo\\bar\.\baz\\`, `\\?\C:\long\foo\bar\baz\`},
    		{`C:\long\..`, `\\?\C:\`},
    		{`C:\.\long\..\.`, `\\?\C:\`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:37:32 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/jsonmergepatch/patch_test.go

          foo: 0
          bar: 2
        threeWay:
          foo:
            baz: 1
        result:
          foo:
            baz: 1
          bar: 2
      - description: patch from map to scalar
        original:
          foo:
            baz: 1
        modified:
          foo: 0
        current:
          foo:
            baz: 1
          bar: 2
        threeWay:
          foo: 0
        result:
          foo: 0
          bar: 2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/DeprecatedFeatureUsageTest.groovy

            null                                   | null
            Documentation.userManual("foo", "bar") | "https://docs.gradle.org/${GradleVersion.current().version}/userguide/foo.html#bar"
            Documentation.upgradeGuide(42, "bar")  | "https://docs.gradle.org/${GradleVersion.current().version}/userguide/upgrading_version_42.html#bar"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 16:09:54 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top