- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 103 for pontos (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
docs/pt/docs/tutorial/debugging.md
* "Add configuration...". * Selecionar "Python" * Executar o depurador com a opção "`Python: Current File (Integrated Terminal)`". Em seguida, ele iniciará o servidor com seu código **FastAPI**, parará em seus pontos de interrupção, etc. Veja como pode parecer: <img src="/img/tutorial/debugging/image01.png"> --- Se você usar o Pycharm, você pode: * Abrir o menu "Executar".
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 2.6K bytes - Click Count (0) -
docs/pt/docs/python-types.md
```Python first_name="john", last_name="doe" ``` É uma coisa diferente. Estamos usando dois pontos (`:`), não sinal de igual (`=`). E adicionar type hints normalmente não muda o que acontece do que aconteceria sem eles. Mas agora, imagine que você está novamente no meio da criação dessa função, mas com type hints. No mesmo ponto, você tenta acionar o preenchimento automático com o `Ctrl+Space` e vê:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 11.7K bytes - Click Count (0) -
docs/pt/docs/environment-variables.md
O valor da variável `PATH` é uma longa string composta por diretórios separados por dois pontos `:` no Linux e macOS, e por ponto e vírgula `;` no Windows. Por exemplo, a variável de ambiente `PATH` poderia ter esta aparência: //// tab | Linux, macOS ```plaintext /usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin ```
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 8.4K bytes - Click Count (0) -
docs/pt/docs/async.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 25.2K bytes - Click Count (0) -
docs/SMB3_IMPLEMENTATION_PLAN.md
- 1 QA engineer for test infrastructure - 1 DevOps engineer for CI/CD setup ### Timeline - **Total Duration**: 6-8 months for all features - **Phases 1-2**: 2-3 months (High priority) - **Phases 3-4**: 2 months (Medium priority) - **Phases 5-6**: 2-3 months (Low priority) ### Infrastructure - Windows Server test lab - RDMA-capable test hardware - Continuous integration environment
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 10.7K bytes - Click Count (0) -
docs/pt/docs/history-design-future.md
Quando comecei a criar o **FastAPI** de fato, a maior parte das peças já estavam encaixadas, o design estava definido, os requisitos e ferramentas já estavam prontos, e o conhecimento sobre os padrões e especificações estavam claros e frescos. ## Futuro { #future } Nesse ponto, já está claro que o **FastAPI** com suas ideias está sendo útil para muitas pessoas.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 4.4K bytes - Click Count (0) -
doc/initial/7-ports.md
## Ports {#ports}...Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Mon Jan 22 18:07:49 GMT 2024 - 19 bytes - Click Count (0) -
doc/next/7-ports.md
## Ports {#ports} ### Darwin {#darwin} <!-- go.dev/issue/75836 --> As [announced](go1.26#darwin) in the Go 1.26 release notes, Go 1.27 requires macOS 13 Ventura or later;Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Mon Jan 26 21:07:04 GMT 2026 - 226 bytes - Click Count (0) -
docs/es/docs/tutorial/debugging.md
* "Add configuration...". * Seleccionar "Python". * Ejecutar el depurador con la opción "`Python: Current File (Integrated Terminal)`". Luego, iniciará el servidor con tu código **FastAPI**, deteniéndose en tus puntos de interrupción, etc. Así es como podría verse: <img src="/img/tutorial/debugging/image01.png"> --- Si usas PyCharm, puedes: * Abrir el menú "Run". * Seleccionar la opción "Debug...".
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 2.6K bytes - Click Count (0) -
docs/pt/docs/advanced/advanced-python-types.md
from typing import Union def say_hi(name: Union[str, None]): print(f"Hi {name}!") ``` O `typing` também tem um atalho para declarar que algo pode ser `None`, com `Optional`. Aqui vai uma dica do meu ponto de vista bem subjetivo: * 🚨 Evite usar `Optional[SomeType]` * Em vez disso ✨ use **`Union[SomeType, None]`** ✨.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 13 13:48:53 GMT 2026 - 2.1K bytes - Click Count (0)