Search Options

Results per page
Sort
Preferred Languages
Advance

Results 411 - 420 of 599 for installed (0.1 sec)

  1. manifests/charts/UPDATING-CHARTS.md

    To avoid this, the project attempts to minimize additions to the `values.yaml` API where possible.
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Aug 15 16:31:46 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. docs/en/docs/fastapi-cli.md

    # FastAPI CLI
    
    **FastAPI CLI** is a command line program that you can use to serve your FastAPI app, manage your FastAPI project, and more.
    
    When you install FastAPI (e.g. with `pip install "fastapi[standard]"`), it includes a package called `fastapi-cli`, this package provides the `fastapi` command in the terminal.
    
    To run your FastAPI app for development, you can use the `fastapi dev` command:
    
    <div class="termy">
    
    ```console
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. docs/em/docs/tutorial/request-forms.md

    # πŸ“¨ πŸ’½
    
    πŸ•β” πŸ‘† πŸ’ͺ πŸ“¨ πŸ“¨ πŸ‘ ↩️ 🎻, πŸ‘† πŸ’ͺ βš™οΈ `Form`.
    
    /// info
    
    βš™οΈ πŸ“¨, πŸ₯‡ ❎ <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>.
    
    🀢 β“‚. `pip install python-multipart`.
    
    ///
    
    ## πŸ—„ `Form`
    
    πŸ—„ `Form` βšͺ️➑️ `fastapi`:
    
    ```Python hl_lines="1"
    {!../../docs_src/request_forms/tutorial001.py!}
    ```
    
    ## πŸ”¬ `Form` πŸ”’
    
    ✍ πŸ“¨ πŸ”’ 🎏 🌌 πŸ‘† πŸ”œ `Body` βš–οΈ `Query`:
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. docs/bucket/replication/setup_3site_replication.sh

    go install -v github.com/minio/multipart-debug@latest
    
    upload_id=$(multipart-debug --endpoint 127.0.0.1:9001 --accesskey minio --secretkey minio123 multipart new --bucket bucket --object new-test-encrypted-object --encrypt)
    
    dd if=/dev/urandom bs=1 count=7048531 of=/tmp/7048531.txt
    dd if=/dev/urandom bs=1 count=2847391 of=/tmp/2847391.txt
    
    sudo apt install jq -y
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Sep 24 08:03:58 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. tests/tests_test.go

    		if dbDSN == "" {
    			dbDSN = postgresDSN
    		}
    		db, err = gorm.Open(postgres.New(postgres.Config{
    			DSN:                  dbDSN,
    			PreferSimpleProtocol: true,
    		}), cfg)
    	case "sqlserver":
    		// go install github.com/microsoft/go-sqlcmd/cmd/sqlcmd@latest
    		// SQLCMDPASSWORD=LoremIpsum86 sqlcmd -U sa -S localhost:9930
    		// CREATE DATABASE gorm;
    		// GO
    		// CREATE LOGIN gorm WITH PASSWORD = 'LoremIpsum86';
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Mon Sep 30 03:21:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. istioctl/pkg/install/k8sversion/version.go

    // IsK8VersionSupported checks minimum supported Kubernetes version for Istio.
    // If the K8s version is not at least the `MinK8SVersion`, it logs a message warning the user that they
    // may experience problems if they proceed with the install.
    func IsK8VersionSupported(c kube.Client, l clog.Logger) error {
    	serverVersion, err := c.GetKubernetesVersion()
    	if err != nil {
    		return fmt.Errorf("error getting Kubernetes version: %w", err)
    	}
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Oct 30 21:50:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. docs/bucket/notifications/README.md

    | [`NSQ`](#NSQ)                     |                             |                                 |
    
    ## Prerequisites
    
    - Install and configure MinIO Server from [here](https://min.io/docs/minio/linux/index.html#procedure).
    - Install and configure MinIO Client from [here](https://min.io/docs/minio/linux/reference/minio-mc.html#quickstart).
    
    ```
    $ mc admin config get myminio | grep notify
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. docs/ko/docs/tutorial/request-forms-and-files.md

    `File` κ³Ό `Form` 을 μ‚¬μš©ν•˜μ—¬ 파일과 폼을 ν•¨κ»˜ μ •μ˜ν•  수 μžˆμŠ΅λ‹ˆλ‹€.
    
    /// info | "정보"
    
    파일과 폼 데이터λ₯Ό ν•¨κ»˜, λ˜λŠ” 각각 μ—…λ‘œλ“œν•˜κΈ° μœ„ν•΄ λ¨Όμ € <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>λ₯Ό μ„€μΉ˜ν•΄μ•Όν•©λ‹ˆλ‹€.
    
    예 ) `pip install python-multipart`.
    
    ///
    
    ## `File` 및 `Form` μ—…λ‘œλ“œ
    
    ```Python hl_lines="1"
    {!../../docs_src/request_forms_and_files/tutorial001.py!}
    ```
    
    ## `File` 및 `Form` λ§€κ°œλ³€μˆ˜ μ •μ˜
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. istioctl/pkg/checkinject/testdata/check-inject/never-match-injector.yaml

    apiVersion: admissionregistration.k8s.io/v1
    kind: MutatingWebhookConfiguration
    metadata:
      labels:
        app: sidecar-injector
        install.operator.istio.io/owning-resource-namespace: istio-system
        istio.io/rev: default
        operator.istio.io/component: Pilot
        operator.istio.io/managed: Reconcile
        operator.istio.io/version: 1.15.1
        release: istio
      name: istio-sidecar-injector-deactivated
    webhooks:
      - admissionReviewVersions:
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. istioctl/pkg/tag/util.go

    	}
    	return result
    }
    
    // PreviousInstallExists checks whether there is an existing Istio installation. Should be used in installer when deciding
    // whether to make an installation the default.
    func PreviousInstallExists(ctx context.Context, client kubernetes.Interface) bool {
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Oct 09 16:05:45 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top