- Sort Score
- Num 10 results
- Language All
Results 671 - 680 of 750 for consume (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
README.md
----------------------------------- You can download the release source from our [download page][maven-download]. Contributing ------------ If you are interested in the development of Maven, please consult the documentation first and afterward you are welcome to join the developers mailing list to ask questions or discuss new ideas/features/bugs etc. Take a look into the [contribution guidelines](CONTRIBUTING.md). License
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Mar 25 08:06:02 GMT 2026 - 5.9K bytes - Click Count (0) -
docs/ru/docs/tutorial/request-files.md
Убедитесь, что вы создали [виртуальное окружение](../virtual-environments.md), активировали его, а затем установили пакет, например: ```console $ pip install python-multipart ``` Это связано с тем, что загружаемые файлы передаются как "данные формы". /// ## Импорт `File` { #import-file } Импортируйте `File` и `UploadFile` из модуля `fastapi`:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 11.4K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/TopKSelector.java
} /** * Adds each member of {@code elements} as a candidate for the top {@code k} elements. This * operation takes amortized linear time in the length of {@code elements}. The iterator is * consumed after this operation completes. * * <p>If all input data to this {@code TopKSelector} is in a single {@code Iterator}, prefer * {@link Ordering#leastOf(Iterator, int)}, which provides a simpler API for that use case.Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Aug 31 13:15:26 GMT 2025 - 11.3K bytes - Click Count (0) -
docs/zh/docs/deployment/docker.md
* 构建你的 FastAPI 镜像: <div class="termy"> ```console $ docker build -t myimage . ---> 100% ``` </div> /// tip | 提示 注意末尾的 `.`,它等价于 `./`,用于告诉 Docker 使用哪个目录来构建容器镜像。 此处就是当前目录(`.`)。 /// ### 启动 Docker 容器 { #start-the-docker-container } * 基于你的镜像运行一个容器: <div class="termy"> ```console $ docker run -d --name mycontainer -p 80:80 myimage ```
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 24.8K bytes - Click Count (0) -
docs/uk/docs/deployment/docker.md
``` fastapi[standard]>=0.113.0,<0.114.0 pydantic>=2.7.0,<3.0.0 ``` І зазвичай ви встановлюватимете ці залежності пакетів через `pip`, наприклад: <div class="termy"> ```console $ pip install -r requirements.txt ---> 100% Successfully installed fastapi pydantic ``` </div> /// info | Інформація
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 44.2K bytes - Click Count (0) -
internal/config/notify/help.go
Type: "number", }, config.HelpKV{ Key: target.AmqpPublisherConfirms, Description: "enable consumer acknowledgement and publisher confirms, use this along with queue_dir for guaranteed delivery of all events", Optional: true, Type: "on|off", }, config.HelpKV{ Key: target.AmqpQueueDir, Description: queueDirComment, Optional: true, Type: "path", },
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Sep 06 23:06:30 GMT 2024 - 19.2K bytes - Click Count (0) -
docs/uk/docs/tutorial/bigger-applications.md
```python from app.main import app ``` Таким чином команда `fastapi` знатиме, де знайти ваш застосунок. /// Note | Примітка Ви також могли б передати шлях команді, наприклад: ```console $ fastapi dev app/main.py ``` Але тоді вам доведеться щоразу пам'ятати, щоб передавати правильний шлях, коли ви викликаєте команду `fastapi`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 27.4K bytes - Click Count (0) -
docs/ja/docs/tutorial/security/first-steps.md
手動でインストールするには、[仮想環境](../../virtual-environments.md)を作成して有効化し、次のコマンドでインストールしてください: ```console $ pip install python-multipart ``` これは、**OAuth2**が `username` と `password` を送信するために、「フォームデータ」を使うからです。 /// 例を実行します: <div class="termy"> ```console $ fastapi dev <span style="color: green;">INFO</span>: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) ```
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 10.8K bytes - Click Count (0) -
internal/dsync/drwmutex.go
"context" "errors" "math/rand" "slices" "sort" "strconv" "sync" "time" xioutil "github.com/minio/minio/internal/ioutil" "github.com/minio/minio/internal/mcontext" "github.com/minio/pkg/v3/console" "github.com/minio/pkg/v3/env" ) // Indicator if logging is enabled. var dsyncLog bool // Retry unit interval var lockRetryMinInterval time.Duration
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 20.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/GenerateThumbnailJobTest.java
String processOutput = "Test output"; RuntimeException throwException = null; @Override public JobProcess startProcess(String sessionId, List<String> cmdList, java.util.function.Consumer<ProcessBuilder> pbConsumer) { if (throwException != null) { throw throwException; } startProcessCalled = true; capturedSessionId = sessionId;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 19K bytes - Click Count (0)