- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 570 for dev1 (0.04 sec)
-
docs_src/custom_response/tutorial006c.py
from fastapi.responses import RedirectResponse app = FastAPI() @app.get("/pydantic", response_class=RedirectResponse, status_code=302) async def redirect_pydantic():
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Mar 22 01:42:11 UTC 2024 - 237 bytes - Viewed (0) -
docs/pt/docs/virtual-environments.md
* `echo "*"`: irá "imprimir" o texto `*` no terminal (a próxima parte muda isso um pouco) * `>`: qualquer coisa impressa no terminal pelo comando à esquerda de `>` não deve ser impressa, mas sim escrita no arquivo que vai à direita de `>` * `.gitignore`: o nome do arquivo onde o texto deve ser escrito E `*` para Git significa "tudo". Então, ele ignorará tudo no diretório `.venv`. Esse comando criará um arquivo `.gitignore` com o conteúdo:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Sep 10 10:37:13 UTC 2024 - 22.6K bytes - Viewed (0) -
docs/em/docs/tutorial/extra-data-types.md
* `datetime.timedelta`: * 🐍 `datetime.timedelta`. * 📨 & 📨 🔜 🎨 `float` 🌐 🥈. * Pydantic ✔ 🎦 ⚫️ "💾 8️⃣6️⃣0️⃣1️⃣ 🕰 ➕ 🔢", <a href="https://docs.pydantic.dev/latest/concepts/serialization/#json_encoders" class="external-link" target="_blank">👀 🩺 🌅 ℹ</a>. * `frozenset`: * 📨 & 📨, 😥 🎏 `set`: * 📨, 📇 🔜 ✍, ❎ ❎ & 🏭 ⚫️ `set`. * 📨, `set` 🔜 🗜 `list`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 2.6K bytes - Viewed (0) -
ci/official/containers/ml_build/setup.python.sh
VERSION=$1 REQUIREMENTS=$2 # Install Python packages for this container's version if [[ ${VERSION} == "python3.13" ]]; then cat >pythons.txt <<EOF $VERSION $VERSION-dev $VERSION-venv EOF else cat >pythons.txt <<EOF $VERSION $VERSION-dev $VERSION-venv $VERSION-distutils EOF fi /setup.packages.sh pythons.txt # Re-link pyconfig.h from x86_64-linux-gnu into the devtoolset directory
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 16 23:34:34 UTC 2024 - 2.2K bytes - Viewed (0) -
docs/pt/docs/tutorial/extra-data-types.md
* Em requisições e respostas será representado como um `float` de segundos totais. * O Pydantic também permite representá-lo como uma "codificação ISO 8601 diferença de tempo", <a href="https://docs.pydantic.dev/latest/concepts/serialization/" class="external-link" target="_blank">cheque a documentação para mais informações</a>. * `frozenset`: * Em requisições e respostas, será tratado da mesma forma que um `set`:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 2.9K bytes - Viewed (0) -
docs/pt/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md
## Adicionando `dependencies` ao decorador da operação de rota O *decorador da operação de rota* recebe um argumento opcional `dependencies`. Ele deve ser uma lista de `Depends()`: //// tab | Python 3.9+ ```Python hl_lines="19" {!> ../../docs_src/dependencies/tutorial006_an_py39.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="18"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 4.5K bytes - Viewed (0) -
docs/pt/docs/tutorial/path-params-numeric-validations.md
```Python hl_lines="10" {!> ../../docs_src/path_params_numeric_validations/tutorial001.py!} ``` //// /// note | "Nota" Um parâmetro de rota é sempre obrigatório, como se fizesse parte da rota. Então, você deve declará-lo com `...` para marcá-lo como obrigatório. Mesmo que você declare-o como `None` ou defina um valor padrão, isso não teria efeito algum, o parâmetro ainda seria obrigatório. ///
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.6K bytes - Viewed (0) -
.github/SUPPORT.md
Unlike many projects on GitHub, the Go project does not use its bug tracker for general discussion or asking questions. We only use our bug tracker for tracking bugs and tracking proposals going through the [Proposal Process](https://go.dev/s/proposal-process). For asking questions, see: * [The golang-nuts mailing list](https://groups.google.com/d/forum/golang-nuts) * [The Go Forum](https://forum.golangbridge.org/), a web-based forum
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Mar 29 22:00:27 UTC 2023 - 692 bytes - Viewed (0) -
ci/official/utilities/cleanup_summary.sh
# Each failed target there will have its own representation, making failures # easier to find and read. function resultstore_extract { local PYTHON_BIN XML_PATH PYTHON_BIN=$(which python3 2>/dev/null || which python) XML_PATH="$TFCI_OUTPUT_DIR/Bazel_Test_and_Build_Results/sponge_log.xml" "$PYTHON_BIN" \ "$TFCI_GIT_DIR/ci/official/utilities/extract_resultstore_links.py" \ "$TFCI_OUTPUT_DIR/script.log" \
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Aug 07 23:01:25 UTC 2024 - 1.8K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/10-proposal.yml
description: New external API or other notable changes title: "proposal: import/path: proposal title" labels: ["Proposal"] body: - type: markdown attributes: value: "Our proposal process is documented here: https://go.dev/s/proposal-process" - type: textarea id: proposal-details attributes: label: "Proposal Details" description: "Please provide the details of your proposal here." validations:
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Nov 22 20:49:24 UTC 2023 - 471 bytes - Viewed (0)