- Sort Score
- Result 10 results
- Languages All
Results 311 - 320 of 599 for installed (0.08 sec)
-
fuzzing/fuzzingserver-test.sh
#!/usr/bin/env bash SCRIPT_DIR="$( cd "$( dirname "$0" )" && pwd )" cd "$SCRIPT_DIR" which wstest if [ $? != 0 ]; then echo "Run 'pip install autobahntestsuite', maybe with 'sudo'." exit 1 fi which jq if [ $? != 0 ]; then echo "Run 'brew install jq'" exit 1 fi trap 'kill $(jobs -pr)' SIGINT SIGTERM EXIT set -ex wstest -m fuzzingserver -s fuzzingserver-config.json & sleep 2 # wait for wstest to start
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Tue Mar 26 02:01:32 UTC 2019 - 673 bytes - Viewed (0) -
docs/de/docs/deployment/manually.md
//// tab | Uvicorn * <a href="https://www.uvicorn.org/" class="external-link" target="_blank">Uvicorn</a>, ein blitzschneller ASGI-Server, basierend auf uvloop und httptools. <div class="termy"> ```console $ pip install "uvicorn[standard]" ---> 100% ``` </div> /// tip | "Tipp" Durch das Hinzufügen von `standard` installiert und verwendet Uvicorn einige empfohlene zusätzliche Abhängigkeiten.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 5.3K bytes - Viewed (0) -
docs/iam/policies/pbac-tests.sh
set -x fi pkill minio pkill kes rm -rf /tmp/xl go install -v github.com/minio/mc@master cp -a $(go env GOPATH)/bin/mc ./mc if [ ! -f ./kes ]; then wget --quiet -O kes https://github.com/minio/kes/releases/latest/download/kes-linux-amd64 && chmod +x kes fi if ! openssl version &>/dev/null; then apt install openssl || sudo apt install opensssl fi # Start KES Server
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jun 25 01:15:27 UTC 2024 - 2.5K bytes - Viewed (0) -
docs/ja/docs/deployment/manually.md
以下の様なASGI対応のサーバをインストールする必要があります: //// tab | Uvicorn * <a href="https://www.uvicorn.org/" class="external-link" target="_blank">Uvicorn</a>, uvloopとhttptoolsを基にした高速なASGIサーバ。 <div class="termy"> ```console $ pip install "uvicorn[standard]" ---> 100% ``` </div> //// /// tip | "豆知識" `standard` を加えることで、Uvicornがインストールされ、いくつかの推奨される依存関係を利用するようになります。
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 2.3K bytes - Viewed (0) -
docs/vi/docs/tutorial/index.md
<div class="termy"> ```console $ pip install "fastapi[all]" ---> 100% ``` </div> ...dó cũng bao gồm `uvicorn`, bạn có thể sử dụng như một server để chạy code của bạn. /// note Bạn cũng có thể cài đặt nó từng phần. Đây là những gì bạn có thể sẽ làm một lần duy nhất bạn muốn triển khai ứng dụng của bạn lên production: ``` pip install fastapi ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 3.2K bytes - Viewed (0) -
Dockerfile.release.fips
FROM golang:1.22-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}.fips -o /go/bin/minio && \
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Sep 15 23:10:23 UTC 2024 - 2.9K bytes - Viewed (0) -
ci/official/containers/ml_build/setup.sources.sh
# ============================================================================== # # Sets up custom apt sources for our TF images. # Prevent apt install tzinfo from asking our location (assumes UTC) export DEBIAN_FRONTEND=noninteractive # Set up shared custom sources apt-get update apt-get install -y gnupg ca-certificates # Deadsnakes: https://launchpad.net/~deadsnakes/+archive/ubuntu/ppa
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Oct 03 21:13:05 UTC 2024 - 1.6K bytes - Viewed (0) -
docs/zh/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 Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 2.4K bytes - Viewed (0) -
docs/ko/docs/tutorial/index.md
<div class="termy"> ```console $ pip install "fastapi[all]" ---> 100% ``` </div> ...이는 코드를 실행하는 서버로 사용할 수 있는 `uvicorn` 또한 포함하고 있습니다. /// note | "참고" 부분적으로 설치할 수도 있습니다. 애플리케이션을 운영 환경에 배포하려는 경우 다음과 같이 합니다: ``` pip install fastapi ``` 추가로 서버 역할을 하는 `uvicorn`을 설치합니다: ``` pip install uvicorn ``` 사용하려는 각 선택적인 의존성에 대해서도 동일합니다. ///
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Oct 04 10:57:17 UTC 2024 - 3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.15.md
* Fix issue in Portworx volume driver causing controller manager to crash ([#76341](https://github.com/kubernetes/kubernetes/pull/76341), [@harsh-px](https://github.com/harsh-px)) * kubeadm: Fix a bug where if couple of CRIs are installed a user override of the CRI during join (via kubeadm join --cri-socket ...) is ignored and kubeadm bails out with an error ([#76505](https://github.com/kubernetes/kubernetes/pull/76505), [@rosti](https://github.com/rosti))
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu May 05 13:44:43 UTC 2022 - 278.9K bytes - Viewed (0)