Search Options

Results per page
Sort
Preferred Languages
Advance

Results 331 - 340 of 542 for INSTALL (0.04 sec)

  1. docs/es/docs/advanced/websockets.md

    ## Instalar `websockets` { #install-websockets }
    
    Asegรบrate de crear un [entorno virtual](../virtual-environments.md){.internal-link target=_blank}, activarlo e instalar `websockets` (un paquete de Python que facilita usar el protocolo "WebSocket"):
    
    <div class="termy">
    
    ```console
    $ pip install websockets
    
    ---> 100%
    ```
    
    </div>
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  2. docs/bucket/replication/test_del_marker_proxying.sh

    	pkill -9 minio || sudo pkill -9 minio
    	rm -rf /tmp/sitea
    	rm -rf /tmp/siteb
    	echo "done"
    }
    
    cleanup
    
    export MINIO_CI_CD=1
    export MINIO_BROWSER=off
    
    make install-race
    
    # Start MinIO instances
    echo -n "Starting MinIO instances ..."
    minio server --address 127.0.0.1:9001 --console-address ":10000" "http://127.0.0.1:9001/tmp/sitea/data/disterasure/xl{1...4}" \
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Sun Sep 29 22:40:36 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/builder/BuilderCommonTest.java

                            + "stub-plugin-test-compile, "
                            + "stub-plugin-test, "
                            + "stub-plugin-package, "
                            + "stub-plugin-install], "
                            + "you should define versions in pluginManagement section of your pom.xml or parent");
        }
    
        @Test
        void testHandleBuildError() throws Exception {}
    
        @Test
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. docs/distributed/decom-encrypted-kes.sh

    fi
    
    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
    (./kes server --dev 2>&1 >kes-server.log) &
    kes_pid=$!
    sleep 5s
    API_KEY=$(grep "API Key" <kes-server.log | awk -F" " '{print $3}')
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 7.1K bytes
    - Viewed (1)
  5. docs/de/docs/deployment/docker.md

    ///
    
    <details>
    <summary>Dockerfile-Vorschau ๐Ÿ‘€</summary>
    
    ```Dockerfile
    FROM python:3.9
    
    WORKDIR /code
    
    COPY ./requirements.txt /code/requirements.txt
    
    RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
    
    COPY ./app /code/app
    
    CMD ["fastapi", "run", "app/main.py", "--port", "80"]
    
    # Wenn Sie hinter einem Proxy wie Nginx oder Traefik sind, fรผgen Sie --proxy-headers hinzu
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 02 17:32:56 UTC 2025
    - 33.6K bytes
    - Viewed (0)
  6. docs/pt/docs/tutorial/request-form-models.md

    Certifique-se de criar um [ambiente virtual](../virtual-environments.md){.internal-link target=_blank}, ativรก-lo, e entรฃo instalar. Por exemplo:
    
    ```console
    $ pip install python-multipart
    ```
    
    ///
    
    /// note | Nota
    
    Isto รฉ suportado desde a versรฃo `0.113.0` do FastAPI. ๐Ÿค“
    
    ///
    
    ## Modelos Pydantic para Formulรกrios { #pydantic-models-for-forms }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Nov 12 16:23:57 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  7. docs/ko/docs/tutorial/testing.md

    [virtual environment](../virtual-environments.md){.internal-link target=_blank} ๋ฅผ ๋งŒ๋“ค๊ณ , ํ™œ์„ฑํ™” ์‹œํ‚จ ๋’ค์— ์„ค์น˜ํ•˜์„ธ์š”. ์˜ˆ์‹œ:
    
    ```console
    $ pip install httpx
    ```
    
    ///
    
    `TestClient` ๋ฅผ ์ž„ํฌํŠธํ•˜์„ธ์š”.
    
    **FastAPI** ์–ดํ”Œ๋ฆฌ์ผ€์ด์…˜์„ ์ „๋‹ฌํ•˜์—ฌ `TestClient` ๋ฅผ ๋งŒ๋“œ์„ธ์š”.
    
    ์ด๋ฆ„์ด `test_` ๋กœ ์‹œ์ž‘ํ•˜๋Š” ํ•จ์ˆ˜๋ฅผ ๋งŒ๋“œ์„ธ์š”(`pytest` ์˜ ํ‘œ์ค€์ ์ธ ๊ด€๋ก€์ž…๋‹ˆ๋‹ค).
    
    `httpx` ๋ฅผ ์‚ฌ์šฉํ•˜๋Š” ๊ฒƒ๊ณผ ๊ฐ™์€ ๋ฐฉ์‹์œผ๋กœ `TestClient` ๊ฐ์ฒด๋ฅผ ์‚ฌ์šฉํ•˜์„ธ์š”.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Oct 11 17:48:49 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  8. tests/tests_test.go

    		if dbDSN == "" {
    			dbDSN = gaussdbDSN
    		}
    		db, err = gorm.Open(gaussdb.New(gaussdb.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 Dec 28 09:35:17 UTC 2025
    - Last Modified: Mon Jul 21 02:46:58 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  9. architecture/standards/0007-java-pre-requisite.md

    2024-12-20
    
    ## Context
    
    ### Embedding a Java runtime in the Gradle distribution
    
    There have been discussions on embedding a Java runtime in the Gradle distribution.
    This would allow users to run Gradle without having to install a Java runtime beforehand.
    This capability could help increase Gradle adoption outside of the JVM ecosystem.
    
    Gradle can be invoked in different ways:
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Jan 07 08:44:20 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  10. docs/ko/docs/tutorial/request-form-models.md

    [๊ฐ€์ƒ ํ™˜๊ฒฝ](../virtual-environments.md){.internal-link target=_blank}์„ ์ƒ์„ฑํ•˜๊ณ  ํ™œ์„ฑํ™”ํ•œ ๋‹ค์Œ, ์•„๋ž˜์™€ ๊ฐ™์ด ์„ค์น˜ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค:
    
    ```console
    $ pip install python-multipart
    ```
    
    ///
    
    /// note | ์ฐธ๊ณ 
    
    ์ด ๊ธฐ๋Šฅ์€ FastAPI ๋ฒ„์ „ `0.113.0` ์ดํ›„๋ถ€ํ„ฐ ์ง€์›๋ฉ๋‹ˆ๋‹ค. ๐Ÿค“
    
    ///
    
    ## Pydantic ๋ชจ๋ธ์„ ์‚ฌ์šฉํ•œ ํผ
    
    **ํผ ํ•„๋“œ**๋กœ ๋ฐ›๊ณ  ์‹ถ์€ ํ•„๋“œ๋ฅผ **Pydantic ๋ชจ๋ธ**๋กœ ์„ ์–ธํ•œ ๋‹ค์Œ, ๋งค๊ฐœ๋ณ€์ˆ˜๋ฅผ `Form`์œผ๋กœ ์„ ์–ธํ•˜๋ฉด ๋ฉ๋‹ˆ๋‹ค:
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Mon Dec 09 12:44:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top