Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 758 for somme (0.12 sec)

  1. tests/test_tutorial/test_body/test_tutorial001_py310.py

        response = client.post(
            "/items/", json={"name": "Foo", "price": "50.5", "description": "Some Foo"}
        )
        assert response.status_code == 200
        assert response.json() == {
            "name": "Foo",
            "price": 50.5,
            "description": "Some Foo",
            "tax": None,
        }
    
    
    @needs_py310
    def test_post_with_str_float_description_tax(client: TestClient):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. docs/fr/docs/features.md

    * Conçue avec ces standards après une analyse méticuleuse. Plutôt qu'en rajoutant des surcouches après coup.
    * Cela permet d'utiliser de la **génération automatique de code client** dans beaucoup de langages.
    
    ### Documentation automatique
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheValueSourceIntegrationTest.groovy

                println("ValueSource result = \${vsResult.get()}")
                println("some.property = \${System.getProperty("some.property")}")
            """
    
            when:
            configurationCacheRun("-Dsome.property=1")
    
            then:
            configurationCache.assertStateStored()
            outputContains("some.property = 1")
            problems.assertResultHasProblems(result) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. tests/integration/telemetry/policy/helper_test.go

        istio: egressgateway
      servers:
      - port:
          number: 80
          name: http
          protocol: HTTP
        hosts:
        - "some-external-site.com"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: route-via-egressgateway
    spec:
      hosts:
        - "some-external-site.com"
      gateways:
      - istio-egressgateway
      - mesh
      http:
        - match:
          - gateways:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. plugin/pkg/admission/gc/gc_admission_test.go

    		},
    		{
    			name:       "super-user, create, some ownerReferences have blockOwnerDeletion=true",
    			username:   "super",
    			resource:   api.SchemeGroupVersion.WithResource("pods"),
    			newObj:     podWithOwnerRefs(blockRC1, blockRC2, blockNode),
    			checkError: expectNoError,
    		},
    		{
    			name:               "super-user, create, some ownerReferences have blockOwnerDeletion=true, hangingRESTMapper",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitInteractiveIntegrationTest.groovy

        def incubatingPrompt = "Generate build using new APIs and behavior (some features may change in the next minor release)?"
        def basicType = "4: Basic (build structure only)"
        def basicTypeOption = 4
        def applicationOption = 1
        def defaultProjectName = "some-thing"
        def defaultFileName = "some-file"
        def projectNamePrompt = "Project name (default: $defaultProjectName)"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 18.9K bytes
    - Viewed (1)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r70/TestDisplayNameJUnit5CrossVersionSpec.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/AbstractSymbolTest.kt

            description = "Symbol restoring for some symbols in current test is not supported yet",
        )
    
        val DO_NOT_CHECK_SYMBOL_RESTORE_K1 by directive(
            description = "Symbol restoring for some symbols in current test is not supported yet in K1",
        )
    
        val DO_NOT_CHECK_SYMBOL_RESTORE_K2 by directive(
            description = "Symbol restoring for some symbols in current test is not supported yet in K2",
        )
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskConfigurationIntegrationTest.groovy

                    bar.get()
                }
    
                task some { dependsOn tasks.withType(SomeTask) }
            """
    
            expect:
            succeeds("some")
    
            and:
            executed ":foo", ":baz", ":fizz", ":fuzz", ":some"
        }
    
        def "can lookup task created by rules"() {
            buildFile << """
                tasks.addRule("create some tasks") { taskName ->
                    if (taskName == "bar") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. src/os/signal/doc.go

    synchronous when caused by program execution, not when sent using
    [os.Process.Kill] or the kill program or some similar mechanism. In
    general, except as discussed below, Go programs will convert a
    synchronous signal into a run-time panic.
    
    The remaining signals are asynchronous signals. They are not
    triggered by program errors, but are instead sent from the kernel or
    from some other program.
    
    Of the asynchronous signals, the SIGHUP signal is sent when a program
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top