Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 80 for mesmos (1.08 sec)

  1. docs/pt/docs/tutorial/query-params.md

    No exemplo acima eles tem valores padrão de `skip=0` e `limit=10`.
    
    Então, se você for até a URL:
    
    ```
    http://127.0.0.1:8000/items/
    ```
    
    Seria o mesmo que ir para:
    
    ```
    http://127.0.0.1:8000/items/?skip=0&limit=10
    ```
    
    Mas, se por exemplo você for para:
    
    ```
    http://127.0.0.1:8000/items/?skip=20
    ```
    
    Os valores dos parâmetros na sua função serão:
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  2. docs/pt/docs/tutorial/cookie-params.md

    # Parâmetros de Cookie
    
    Você pode definir parâmetros de Cookie da mesma maneira que define paramêtros com `Query` e `Path`.
    
    ## Importe `Cookie`
    
    Primeiro importe `Cookie`:
    
    ```Python hl_lines="3"
    {!../../../docs_src/cookie_params/tutorial001.py!}
    ```
    
    ## Declare parâmetros de `Cookie`
    
    Então declare os paramêtros de cookie usando a mesma estrutura que em `Path` e `Query`.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue May 10 00:09:54 GMT 2022
    - 1.1K bytes
    - Viewed (0)
  3. docs/es/docs/tutorial/path-params.md

    Puedes usar las mismas declaraciones de tipos con `str`, `float`, `bool` y otros tipos de datos más complejos.
    
    Exploraremos varios de estos tipos en los próximos capítulos del tutorial.
    
    ## El orden importa
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 9.4K bytes
    - Viewed (0)
  4. cmd/update.go

    	internalLogIf(GlobalContext, err)
    
    	return err == nil
    }
    
    // IsDCOS returns true if minio is running in DCOS.
    func IsDCOS() bool {
    	// http://mesos.apache.org/documentation/latest/docker-containerizer/
    	// Mesos docker containerizer sets this value
    	return env.Get("MESOS_CONTAINER_NAME", "") != ""
    }
    
    // IsKubernetes returns true if minio is running in kubernetes.
    func IsKubernetes() bool {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed Apr 24 04:08:47 GMT 2024
    - 18.7K bytes
    - Viewed (0)
  5. docs/pt/docs/deployment.md

        * O conteúdo está encriptado, mesmo embora ele esteja sendo enviado com o protocolo HTTP.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Aug 18 16:16:54 GMT 2022
    - 16.8K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/values.yaml

        # Mesh ID means Mesh Identifier. It should be unique within the scope where
        # meshes will interact with each other, but it is not required to be
        # globally/universally unique. For example, if any of the following are true,
        # then two meshes must have different Mesh IDs:
        # - Meshes will have their telemetry aggregated in one place
        # - Meshes will be federated together
        # - Policy will be written referencing one mesh from the other
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 16:58:23 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  7. manifests/charts/gateways/istio-egress/values.yaml

        # Mesh ID means Mesh Identifier. It should be unique within the scope where
        # meshes will interact with each other, but it is not required to be
        # globally/universally unique. For example, if any of the following are true,
        # then two meshes must have different Mesh IDs:
        # - Meshes will have their telemetry aggregated in one place
        # - Meshes will be federated together
        # - Policy will be written referencing one mesh from the other
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  8. manifests/charts/gateways/istio-ingress/values.yaml

        # Mesh ID means Mesh Identifier. It should be unique within the scope where
        # meshes will interact with each other, but it is not required to be
        # globally/universally unique. For example, if any of the following are true,
        # then two meshes must have different Mesh IDs:
        # - Meshes will have their telemetry aggregated in one place
        # - Meshes will be federated together
        # - Policy will be written referencing one mesh from the other
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 13K bytes
    - Viewed (0)
  9. docs/pt/docs/benchmarks.md

        * Você não conseguiria escrever uma aplicação em Uvicorn diretamente. Isso significa que seu código deveria conter, mais ou menos, todo o código fornecido pelo Starlette (ou **FastAPI**). E se você fizesse isso, sua aplicação final poderia ter a mesma sobrecarga que utilizar um _framework_ que minimiza o código e _bugs_ da sua aplicação.
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 12 00:06:16 GMT 2022
    - 3.9K bytes
    - Viewed (0)
  10. docs/pt/docs/index.md

    * **Fácil**: Projetado para ser fácil de aprender e usar. Menos tempo lendo documentação.
    * **Enxuto**: Minimize duplicação de código. Múltiplos recursos para cada declaração de parâmetro. Menos bugs.
    * **Robusto**: Tenha código pronto para produção. E com documentação interativa automática.
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Mon Apr 29 05:18:04 GMT 2024
    - 18.6K bytes
    - Viewed (0)
Back to top