- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 1,134 for instale (0.07 sec)
-
Dockerfile.release.old_cpu
FROM golang:1.24-alpine AS build ARG TARGETARCH ARG RELEASE ENV GOPATH=/go ENV CGO_ENABLED=0 # Install curl and minisign RUN apk add -U --no-cache ca-certificates && \ apk add -U --no-cache curl && \ go install aead.dev/minisign/cmd/minisign@v0.2.1 # Download minio binary and signature files RUN curl -s -q https://dl.min.io/server/minio/release/linux-${TARGETARCH}/archive/minio.${RELEASE} -o /go/bin/minio && \Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Wed Apr 09 14:28:39 UTC 2025 - 3.1K bytes - Viewed (0) -
.github/workflows/pre-commit.yml
uses: astral-sh/setup-uv@v7 with: cache-dependency-glob: | requirements**.txt pyproject.toml uv.lock - name: Install Dependencies run: | uv venv uv pip install -r requirements.txt - name: Run prek - pre-commit id: precommit run: uvx prek run --from-ref origin/${GITHUB_BASE_REF} --to-ref HEAD --show-diff-on-failureRegistered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 23 11:17:16 UTC 2025 - 3K bytes - Viewed (0) -
docs/federation/lookup/README.md
and `bucket2.domain.com`. #### MINIO_PUBLIC_IPS This is comma separated list of IP addresses to which buckets created on this MinIO instance will resolve to. For example, a bucket `bucket1` created on current MinIO instance will be accessible as `bucket1.domain.com`, and the DNS entry for `bucket1.domain.com` will point to IP address set in `MINIO_PUBLIC_IPS`.
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 4.2K bytes - Viewed (0) -
docs/es/docs/advanced/advanced-dependencies.md
## Crear una instance { #create-an-instance } Podríamos crear una instance de esta clase con: {* ../../docs_src/dependencies/tutorial011_an_py39.py hl[18] *} Y de esa manera podemos "parametrizar" nuestra dependencia, que ahora tiene `"bar"` dentro de ella, como el atributo `checker.fixed_content`. ## Usar la instance como una dependencia { #use-the-instance-as-a-dependency }Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 16 16:33:45 UTC 2025 - 9.8K bytes - Viewed (0) -
CLAUDE.md
**EncodingHelper**: Charset detection with BOM **UrlConvertHelper**: URL normalization --- ## Development Workflow ### Build Commands ```bash mvn clean install # Build all mvn clean install -DskipTests # Skip tests mvn test # Run tests mvn formatter:format # Format code mvn license:format # Update license headers ``` ### Code Style
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 28 17:31:34 UTC 2025 - 10.7K bytes - Viewed (0) -
docs/ja/docs/tutorial/index.md
<div class="termy"> ```console $ pip install "fastapi[all]" ---> 100% ``` </div> ...これには、コードを実行するサーバーとして使用できる `uvicorn`も含まれます。 /// note | 備考 パーツ毎にインストールすることも可能です。 以下は、アプリケーションを本番環境にデプロイする際に行うであろうものです: ``` pip install fastapi ``` また、サーバーとして動作するように`uvicorn` をインストールします: ``` pip install "uvicorn[standard]" ``` そして、使用したい依存関係をそれぞれ同様にインストールします。
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 3.3K bytes - Viewed (0) -
Dockerfile.hotfix
FROM golang:1.24-alpine as build ARG TARGETARCH ARG RELEASE ENV GOPATH=/go ENV CGO_ENABLED=0 # Install curl and minisign RUN apk add -U --no-cache ca-certificates && \ apk add -U --no-cache curl && \ go install aead.dev/minisign/cmd/minisign@v0.2.1 # Download minio binary and signature files RUN curl -s -q https://dl.min.io/server/minio/hotfixes/linux-${TARGETARCH}/archive/minio.${RELEASE} -o /go/bin/minio && \Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Wed Apr 09 14:28:39 UTC 2025 - 3.1K bytes - Viewed (0) -
impl/maven-core/src/test/projects/lifecycle-executor/project-with-multiple-executions/pom.xml
<artifactId>maven-deploy-plugin</artifactId> <version>0.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>0.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.8K bytes - Viewed (0) -
docs/zh-hant/docs/tutorial/index.md
確保你建立一個[虛擬環境](../virtual-environments.md){.internal-link target=_blank},啟用它,然後**安裝 FastAPI**: <div class="termy"> ```console $ pip install "fastapi[standard]" ---> 100% ``` </div> /// note 當你使用 `pip install "fastapi[standard]"` 安裝時,會包含一些預設的可選標準依賴項。 如果你不想包含那些可選的依賴項,你可以使用 `pip install fastapi` 來安裝。 /// ## 進階使用者指南 還有一個**進階使用者指南**你可以稍後閱讀。 **進階使用者指南**建立在這個教學之上,使用相同的概念,並教你一些額外的功能。Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 17 21:16:46 UTC 2024 - 5.9K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/DefaultLifecyclesStub.java
import static org.apache.maven.lifecycle.internal.stub.LifecycleExecutionPlanCalculatorStub.INITIALIZE; import static org.apache.maven.lifecycle.internal.stub.LifecycleExecutionPlanCalculatorStub.INSTALL; import static org.apache.maven.lifecycle.internal.stub.LifecycleExecutionPlanCalculatorStub.PACKAGE; import static org.apache.maven.lifecycle.internal.stub.LifecycleExecutionPlanCalculatorStub.POST_CLEAN;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.5K bytes - Viewed (0)