- Sort Score
- Num 10 results
- Language All
Results 151 - 160 of 377 for edited (0.04 seconds)
-
docs/es/docs/tutorial/extra-data-types.md
* `int` * `float` * `str` * `bool` Pero también puedes usar tipos de datos más complejos. Y seguirás teniendo las mismas funcionalidades como hasta ahora: * Gran soporte de editor. * Conversión de datos de requests entrantes. * Conversión de datos para datos de response. * Validación de datos. * Anotación y documentación automática. ## Otros tipos de datos { #other-data-types }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 2.8K bytes - Click Count (0) -
docs/de/docs/tutorial/path-params.md
{* ../../docs_src/path_params/tutorial002_py310.py hl[7] *} In diesem Fall wird `item_id` als `int` deklariert, also als Ganzzahl. /// check | Testen Dadurch erhalten Sie Editor-Unterstützung innerhalb Ihrer Funktion, mit Fehlerprüfungen, Codevervollständigung, usw. /// ## Daten-<dfn title="auch bekannt als: Serialisierung, Parsen, Marshalling">Konversion</dfn> { #data-conversion }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 10K bytes - Click Count (0) -
docs/en/docs/tutorial/debugging.md
# Debugging { #debugging } You can connect the debugger in your editor, for example with Visual Studio Code or PyCharm. ## Call `uvicorn` { #call-uvicorn } In your FastAPI application, import and run `uvicorn` directly: {* ../../docs_src/debugging/tutorial001_py310.py hl[1,15] *} ### About `__name__ == "__main__"` { #about-name-main }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 2.4K bytes - Click Count (0) -
docs/tr/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md
/// tip | İpucu Bazı editörler, kullanılmayan function parametrelerini kontrol eder ve bunları hata olarak gösterebilir. Bu `dependencies` yaklaşımıyla, editör/araç hatalarına takılmadan dependency'lerin çalıştırılmasını sağlayabilirsiniz. Ayrıca kodunuzda kullanılmayan bir parametreyi gören yeni geliştiricilerin bunun gereksiz olduğunu düşünmesi gibi bir kafa karışıklığını da azaltabilir.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 3.3K bytes - Click Count (0) -
docs/de/docs/tutorial/debugging.md
# Debugging { #debugging } Sie können den Debugger in Ihrem Editor verbinden, zum Beispiel mit Visual Studio Code oder PyCharm. ## `uvicorn` aufrufen { #call-uvicorn } Importieren und führen Sie `uvicorn` direkt in Ihrer FastAPI-Anwendung aus: {* ../../docs_src/debugging/tutorial001_py310.py hl[1,15] *} ### Über `__name__ == "__main__"` { #about-name-main }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 2.7K bytes - Click Count (0) -
SECURITY.md
the issue and determines the impact it has. 2. A member of the security team will respond and either confirm or reject the security report. If the report is rejected the response explains why. 3. Code is audited to find any potential similar problems. 4. Fixes are prepared for the latest release. 5. On the date that the fixes are applied a security advisory will be published on <https://blog.min.io>.
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sat Feb 12 00:51:25 GMT 2022 - 2.2K bytes - Click Count (0) -
docs/tr/docs/tutorial/path-params.md
{* ../../docs_src/path_params/tutorial002_py310.py hl[7] *} Bu durumda, `item_id` bir `int` olarak tanımlanır. /// check | Ek bilgi Bu sayede, fonksiyon içinde hata denetimi, kod tamamlama vb. konularda editör desteğine kavuşursunuz. /// ## Veri <dfn title="diğer adlarıyla: serileştirme, ayrıştırma, marshalling">dönüştürme</dfn> { #data-conversion }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 9.7K bytes - Click Count (0) -
android/guava/src/com/google/common/cache/LoadingCache.java
import java.util.concurrent.ExecutionException; /** * A semi-persistent mapping from keys to values. Values are automatically loaded by the cache, and * are stored in the cache until either evicted or manually invalidated. The common way to build * instances is using {@link CacheBuilder}. * * <p>Implementations of this interface are expected to be thread-safe, and can be safely accessed * by multiple concurrent threads.Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 03 12:40:22 GMT 2026 - 8.5K bytes - Click Count (0) -
docs/de/docs/index.md
```Python ... "item_name": item.name ... ``` ... zu: ```Python ... "item_price": item.price ... ``` ... und sehen Sie, wie Ihr Editor die Attribute automatisch vervollständigt und ihre Typen kennt: Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 23.6K bytes - Click Count (1) -
docs/en/docs/tutorial/query-params-str-validations.md
/// note FastAPI will know that the value of `q` is not required because of the default value `= None`. Having `str | None` will allow your editor to give you better support and detect errors. /// ## Additional validation { #additional-validation }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 16.3K bytes - Click Count (0)