- Sort Score
- Num 10 results
- Language All
Results 171 - 180 of 564 for Install (0.3 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
docs/fr/docs/deployment/manually.md
Lorsque vous installez FastAPI avec quelque chose comme `pip install "fastapi[standard]"`, vous obtenez déjà `uvicorn[standard]` aussi. /// ## Exécuter le programme serveur { #run-the-server-program } Si vous avez installé un serveur ASGI manuellement, vous devrez normalement passer une chaîne d'import dans un format spécial pour qu'il importe votre application FastAPI :
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 7.4K bytes - Click Count (0) -
docs/bucket/retention/README.md
## Get Started ### 1. Prerequisites - Install MinIO - [MinIO Quickstart Guide](https://docs.min.io/community/minio-object-store/operations/deployments/baremetal-deploy-minio-on-redhat-linux.html) - Install `awscli` - [Installing AWS Command Line Interface](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-install.html) ### 2. Set bucket WORM configuration
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Aug 12 18:20:36 GMT 2025 - 4K bytes - Click Count (0) -
docs/ja/docs/deployment/manually.md
## サーバープログラムをインストール { #install-the-server-program } FastAPI をインストールすると、本番サーバーの Uvicorn が同梱されており、`fastapi run` コマンドで起動できます。 ただし、ASGI サーバーを手動でインストールすることもできます。 [仮想環境](../virtual-environments.md)を作成して有効化し、サーバーアプリケーションをインストールしてください。 例として、Uvicorn をインストールするには: <div class="termy"> ```console $ pip install "uvicorn[standard]" ---> 100% ``` </div>Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 7.8K bytes - Click Count (0) -
README.md
## Development ### Build Commands ```bash # Compile the source code mvn compile # Build JAR file mvn package # Clean and rebuild mvn clean compile # Install to local repository mvn install ``` ### Testing ```bash # Run all tests (JUnit 4 based) mvn test # Run specific test class mvn test -Dtest=SpecificTest # Alternative test runner mvn surefire:test
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 09:24:52 GMT 2025 - 6.2K bytes - Click Count (0) -
main.go
// // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. package main // import "github.com/minio/minio" //go:generate go install tool import ( "os" // MUST be first import. _ "github.com/minio/minio/internal/init" minio "github.com/minio/minio/cmd" ) func main() { minio.Main(os.Args)
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Thu Apr 24 23:34:11 GMT 2025 - 1004 bytes - Click Count (0) -
benchmarks/README.md
## Disassembling NOTE: Linux only. Sorry Mac and Windows. Disassembling is fun! Maybe not always useful, but always fun! Generally, you'll want to install `perf` and FCML's `hsdis`. `perf` is generally available via `apg-get install perf` or `pacman -S perf`. FCML is a little more involved. This worked on 2020-08-01: ``` wget https://github.com/swojtasiak/fcml-lib/releases/download/v1.2.2/fcml-1.2.2.tar.gz
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Mon May 03 15:30:50 GMT 2021 - 5.9K bytes - Click Count (0) -
docs/zh/docs/virtual-environments.md
<div class="termy"> ```console $ pip install "fastapi[standard]" ---> 100% ``` </div> //// //// tab | `uv` 如果你有 [`uv`](https://github.com/astral-sh/uv): <div class="termy"> ```console $ uv pip install "fastapi[standard]" ---> 100% ``` </div> //// ### 从 `requirements.txt` 安装 { #install-from-requirements-txt }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 21.4K bytes - Click Count (0) -
.github/ISSUE_TEMPLATE/tensorflow_issue_template.yaml
body: - type: dropdown id: issue-type attributes: label: Issue type description: What type of issue would you like to report? multiple: false options: - Bug - Build/Install - Performance - Support - Feature Request - Documentation Feature Request - Documentation Bug - Others validations: required: true - type: markdownCreated: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Wed Jun 28 18:25:42 GMT 2023 - 3.7K bytes - Click Count (0) -
impl/maven-core/lifecycle-executor.txt
<test>org.apache.maven.plugins:maven-surefire-plugin:test</test> <package>org.apache.maven.plugins:maven-jar-plugin:jar</package> <install>org.apache.maven.plugins:maven-install-plugin:install</install> <deploy>org.apache.maven.plugins:maven-deploy-plugin:deploy</deploy> </phases> </lifecycle> </lifecycles> </configuration>
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 9.7K bytes - Click Count (0) -
buildscripts/minio-iam-ldap-upgrade-import-test.sh
if which curl &>/dev/null; then echo "curl is already installed" else echo "Installing curl:" sudo apt install curl -y fi export GOPATH=/tmp/gopath export PATH="${PATH}":"${GOPATH}"/bin if which mc &>/dev/null; then echo "mc is already installed" else echo "Installing mc:" go install github.com/minio/mc@latest fi if [ ! -x ./minio.${OLD_VERSION} ]; then
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Mon Nov 11 15:01:29 GMT 2024 - 3.4K bytes - Click Count (0)