Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for tenth (0.07 sec)

  1. src/runtime/os_linux.go

    	//
    	// But to scale down to very small amounts of application work, to observe
    	// even CPU usage of "one tenth" of the requested period, set the initial
    	// timing delay in a different way: So that "one tenth" of a period of CPU
    	// spend shows up as a 10% chance of one sample (for an expected value of
    	// 0.1 samples), and so that "two and six tenths" periods of CPU spend show
    	// up as a 60% chance of 3 samples and a 40% chance of 2 samples (for an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/constants/constants.go

    	RemoveContainerRetry = 5
    
    	// MinimumAddressesInServiceSubnet defines minimum amount of nodes the Service subnet should allow.
    	// We need at least ten, because the DNS service is always at the tenth cluster clusterIP
    	MinimumAddressesInServiceSubnet = 10
    
    	// MaximumBitsForServiceSubnet defines maximum possible size of the service subnet in terms of bits.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. docs/pt/docs/python-types.md

    Mas então você deve chamar "esse método que converte a primeira letra em maiúscula".
    
    Era `upper`? Era `uppercase`? `first_uppercase`? `capitalize`?
    
    Em seguida, tente com o velho amigo do programador, o preenchimento automático do editor.
    
    Você digita o primeiro parâmetro da função, `first_name`, depois um ponto (`.`) e, em seguida, pressiona `Ctrl + Space` para acionar a conclusão.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperLoggingIntegrationTest.groovy

            then:
            failure.assertOutputContains("Could not unzip")
            failure.assertNotOutput("Could not set executable permissions")
        }
    
        def "wrapper prints progress which contains all tenths of percentages except zero"() {
            given:
            prepareWrapper()
    
            when:
            result = wrapperExecuter.run()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. docs/pt/docs/tutorial/first-steps.md

    Você também pode devolver modelos Pydantic (você verá mais sobre isso mais tarde).
    
    Existem muitos outros objetos e modelos que serão convertidos automaticamente para JSON (incluindo ORMs, etc). Tente usar seus favoritos, é altamente provável que já sejam compatíveis.
    
    ## Recapitulando
    
    * Importe `FastAPI`.
    * Crie uma instância do `app`.
    * Coloque o **decorador que define a operação** (como `@app.get("/")`).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. docs/pt/docs/tutorial/handling-errors.md

    O `RequestValidationError` contém o `body` que ele recebeu de dados inválidos.
    
    Você pode utilizá-lo enquanto desenvolve seu app para conectar o *body* e debugá-lo, e assim retorná-lo ao usuário, etc.
    
    Tente enviar um item inválido como este:
    
    ```JSON
    {
      "title": "towel",
      "size": "XL"
    }
    ```
    
    Você receberá uma *response* informando-o de que a data é inválida, e contendo o *body* recebido:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top