- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 46 for Threadpool (0.07 seconds)
-
docs/de/docs/tutorial/request-files.md
```Python contents = myfile.file.read() ``` /// note | Technische Details zu `async` Wenn Sie die `async`-Methoden verwenden, führt **FastAPI** die Datei-Methoden in einem <abbr title="Mehrere unabhängige Kindprozesse">Threadpool</abbr> aus und erwartet sie. /// /// note | Technische Details zu Starlette
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 8.3K bytes - Click Count (0) -
docs/pt/docs/advanced/stream-data.md
/// Para evitar bloquear o loop de eventos, você pode simplesmente declarar a função de operação de rota com `def` normal em vez de `async def`. Assim, o FastAPI a executará em um worker de threadpool, evitando bloquear o loop principal. {* ../../docs_src/stream_data/tutorial002_py310.py ln[30:34] hl[31] *} /// tip | DicaCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:13 GMT 2026 - 5.7K bytes - Click Count (0) -
docs/de/docs/async.md
/// ### Pfadoperation-Funktionen { #path-operation-functions } Wenn Sie eine *Pfadoperation-Funktion* mit normalem `def` anstelle von `async def` deklarieren, wird sie in einem externen Threadpool ausgeführt, der dann `await`et wird, anstatt direkt aufgerufen zu werden (da dies den Server blockieren würde).Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 27.3K bytes - Click Count (0) -
docs/es/docs/tutorial/request-files.md
```Python contents = myfile.file.read() ``` /// note | Detalles Técnicos de `async` Cuando usas los métodos `async`, **FastAPI** ejecuta los métodos del archivo en un threadpool y los espera. /// /// note | Detalles Técnicos de Starlette
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 7.6K bytes - Click Count (0) -
docs/tr/docs/tutorial/request-files.md
```Python contents = myfile.file.read() ``` /// note | `async` Teknik Detaylar `async` method’ları kullandığınızda, **FastAPI** dosya method’larını bir threadpool içinde çalıştırır ve bunları await eder. /// /// note | Starlette Teknik Detaylar
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 7.5K bytes - Click Count (0) -
docs/uk/docs/async.md
/// ### Функції операції шляху { #path-operation-functions } Коли ви оголошуєте функцію операції шляху зі звичайним `def` замість `async def`, вона виконується у зовнішньому пулі потоків (threadpool), який потім «очікується», замість прямого виклику (оскільки прямий виклик блокував би сервер).Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 36.6K bytes - Click Count (0) -
RELEASE.md
* Add optional `use_unbounded_threadpool` argument to `map`, to specify that the `map` should use an unbounded threadpool instead of the default pool that is based on the number of cores on the machine. This can improve throughput for map functions which perform IO or otherwise release the CPU.
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Mon Mar 30 18:31:38 GMT 2026 - 746.5K bytes - Click Count (3) -
.teamcity/scripts/CheckWrapper.java
* java .teamcity/scripts/CheckWrapper.java < commits.txt * * Reads commit SHAs from stdin (one per line), checks wrapper per commit. */ public class CheckWrapper { private static final ExecutorService THREAD_POOL = Executors.newCachedThreadPool(); private static final Pattern ALLOWED_WRAPPER_VERSION = Pattern.compile("^[0-9.]+(-(rc|milestone|m)-[0-9]+)?$"); // Keep the same extraction semantics as the old sed:
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Jan 20 03:53:25 GMT 2026 - 6.4K bytes - Click Count (0) -
.teamcity/scripts/CheckBadMerge.java
* * If any "bad" merge commit is found, it will print the details and exit with non-zero code. */ public class CheckBadMerge { private static final ExecutorService THREAD_POOL = Executors.newCachedThreadPool(); private static final List<String> MONITORED_PATHS = Collections.unmodifiableList(Arrays.asList( "subprojects/docs/src/docs/release/notes.md",
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 30 16:25:09 GMT 2026 - 9K bytes - Click Count (0) -
src/main/java/jcifs/SmbResourceException.java
private static final long serialVersionUID = 1L; /** * Resource type that caused the error */ public enum ResourceType { FILE_HANDLE, CONNECTION, MEMORY, DISK_SPACE, QUOTA, LOCK, BUFFER, THREAD_POOL } private final ResourceType resourceType; private final long availableResources; private final long requestedResources; /** * Creates a resource exception *Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 5.6K bytes - Click Count (0)