Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 81 - 90 of 335 for virtuel (0.05 seconds)

  1. src/packaging/common/packaging.properties

    packaging.fess.heap.min=256m
    packaging.fess.heap.max=1g
    
    # Specifies the maximum file descriptor number
    packaging.os.max.open.files=65535
    
    # Maximum number of VMA (Virtual Memory Areas) a process can own
    packaging.os.max.map.count=262144
    
    # Simple marker to check that properties are correctly overridden
    packaging.type=tar.gz
    
    # Custom header for package scripts
    packaging.scripts.header=
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 10 01:24:02 GMT 2015
    - 797 bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/helper/RelatedContentHelperTest.java

            testData.add(createRelatedContent("python", "Python Programming", ""));
            mockBhv.setTestData(testData);
    
            int count = relatedContentHelper.load();
            assertEquals(1, count); // One virtual host key (empty)
    
            String[] results = relatedContentHelper.getRelatedContents("java");
            assertEquals(1, results.length);
            assertEquals("Java Programming", results[0]);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 14.6K bytes
    - Click Count (0)
  3. docs/de/docs/index.md

    * [Starlette](https://www.starlette.dev/) für die Webanteile.
    * [Pydantic](https://docs.pydantic.dev/) für die Datenanteile.
    
    ## Installation { #installation }
    
    Erstellen und aktivieren Sie eine [virtuelle Umgebung](https://fastapi.tiangolo.com/de/virtual-environments/) und installieren Sie dann FastAPI:
    
    <div class="termy">
    
    ```console
    $ pip install "fastapi[standard]"
    
    ---> 100%
    ```
    
    </div>
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 23.6K bytes
    - Click Count (1)
  4. docs/zh-hant/docs/tutorial/testing.md

    借助它,你可以直接用 [pytest](https://docs.pytest.org/) 來測試 **FastAPI**。
    
    ## 使用 `TestClient` { #using-testclient }
    
    /// info
    
    要使用 `TestClient`,請先安裝 [`httpx`](https://www.python-httpx.org)。
    
    請先建立並啟用一個[虛擬環境](../virtual-environments.md),然後安裝,例如:
    
    ```console
    $ pip install httpx
    ```
    
    ///
    
    匯入 `TestClient`。
    
    建立一個 `TestClient`,把你的 **FastAPI** 應用傳入其中。
    
    建立名稱以 `test_` 開頭的函式(這是 `pytest` 的慣例)。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 5.6K bytes
    - Click Count (0)
  5. docs/zh/docs/tutorial/testing.md

    有了它,你可以直接与**FastAPI**一起使用 [pytest](https://docs.pytest.org/)。
    
    ## 使用 `TestClient` { #using-testclient }
    
    /// info | 信息
    
    要使用 `TestClient`,先要安装 [`httpx`](https://www.python-httpx.org)。
    
    确保你创建并激活一个[虚拟环境](../virtual-environments.md),然后再安装,例如:
    
    ```console
    $ pip install httpx
    ```
    
    ///
    
    导入 `TestClient`。
    
    通过传入你的**FastAPI**应用创建一个 `TestClient` 。
    
    创建名字以 `test_` 开头的函数(这是标准的 `pytest` 约定)。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 5.4K bytes
    - Click Count (0)
  6. docs/en/docs/tutorial/security/oauth2-jwt.md

    ## Install `PyJWT` { #install-pyjwt }
    
    We need to install `PyJWT` to generate and verify the JWT tokens in Python.
    
    Make sure you create a [virtual environment](../../virtual-environments.md), activate it, and then install `pyjwt`:
    
    <div class="termy">
    
    ```console
    $ pip install pyjwt
    
    ---> 100%
    ```
    
    </div>
    
    /// info
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 10.7K bytes
    - Click Count (0)
  7. docs/tr/docs/tutorial/testing.md

    ## `TestClient` Kullanımı { #using-testclient }
    
    /// info | Bilgi
    
    `TestClient` kullanmak için önce [`httpx`](https://www.python-httpx.org)'i kurun.
    
    Bir [Sanal Ortam](../virtual-environments.md) oluşturduğunuzdan, onu aktifleştirdiğinizden ve sonra kurulumu yaptığınızdan emin olun; örneğin:
    
    ```console
    $ pip install httpx
    ```
    
    ///
    
    `TestClient`'ı import edin.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 6.3K bytes
    - Click Count (0)
  8. docs/zh/docs/tutorial/request-forms-and-files.md

    # 请求表单与文件 { #request-forms-and-files }
    
    FastAPI 支持同时使用 `File` 和 `Form` 定义文件和表单字段。
    
    /// info | 信息
    
    接收上传的文件和/或表单数据,首先安装 [`python-multipart`](https://github.com/Kludex/python-multipart)。
    
    请先创建并激活一个[虚拟环境](../virtual-environments.md),然后再安装,例如:
    
    ```console
    $ pip install python-multipart
    ```
    
    ///
    
    ## 导入 `File` 与 `Form` { #import-file-and-form }
    
    {* ../../docs_src/request_forms_and_files/tutorial001_an_py310.py hl[3] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 1.3K bytes
    - Click Count (0)
  9. docs/pt/docs/tutorial/security/oauth2-jwt.md

    ## Instalar `PyJWT` { #install-pyjwt }
    
    Nós precisamos instalar o `PyJWT` para criar e verificar os tokens JWT em Python.
    
    Certifique-se de criar um [ambiente virtual](../../virtual-environments.md), ativá-lo e então instalar o `pyjwt`:
    
    <div class="termy">
    
    ```console
    $ pip install pyjwt
    
    ---> 100%
    ```
    
    </div>
    
    /// info | Informação
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 11.6K bytes
    - Click Count (0)
  10. docs/es/docs/advanced/websockets.md

    # WebSockets { #websockets }
    
    Puedes usar [WebSockets](https://developer.mozilla.org/en-US/docs/Web/API/WebSockets_API) con **FastAPI**.
    
    ## Instalar `websockets` { #install-websockets }
    
    Asegúrate de crear un [entorno virtual](../virtual-environments.md), activarlo e instalar `websockets` (un paquete de Python que facilita usar el protocolo "WebSocket"):
    
    <div class="termy">
    
    ```console
    $ pip install websockets
    
    ---> 100%
    ```
    
    </div>
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 5.5K bytes
    - Click Count (0)
Back to Top