Search Options

Results per page
Sort
Preferred Languages
Advance

Results 891 - 900 of 953 for Web (0.16 sec)

  1. src/main/java/jcifs/http/NtlmHttpFilter.java

     * complete details.
     *
     * @deprecated NTLMv1 only
     */
    /**
     * An HTTP servlet filter that provides NTLM authentication support.
     * This filter allows web applications to authenticate users via NTLM/Windows authentication.
     */
    @Deprecated
    public class NtlmHttpFilter implements Filter {
    
        /**
         * Default constructor.
         */
        public NtlmHttpFilter() {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  2. docs/es/docs/features.md

    * Esto también permite el uso de **generación de código cliente automática** en muchos idiomas.
    
    ### Documentación automática { #automatic-docs }
    
    Interfaces web de documentación y exploración de APIs interactivas. Como el framework está basado en OpenAPI, hay múltiples opciones, 2 incluidas por defecto.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 10:15:01 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  3. docs/uk/docs/index.md

    **Typer** є молодшим братом FastAPI. І це **FastAPI для CLI**. ⌨️ 🚀
    
    ## Вимоги
    
    FastAPI стоїть на плечах гігантів:
    
    * <a href="https://www.starlette.dev/" class="external-link" target="_blank">Starlette</a> для web частини.
    * <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic</a> для частини даних.
    
    ## Вставновлення
    
    <div class="termy">
    
    ```console
    $ pip install fastapi
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Oct 11 17:48:49 UTC 2025
    - 24.2K bytes
    - Viewed (0)
  4. docs/config/README.md

    ```
    
    Once set the healer settings are automatically applied without the need for server restarts.
    
    ## Environment only settings (not in config)
    
    ### Browser
    
    Enable or disable access to console web UI. By default it is set to `on`. You may override this field with `MINIO_BROWSER` environment variable.
    
    Example:
    
    ```sh
    export MINIO_BROWSER=off
    minio server /data
    ```
    
    ### Domain
    
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 18.1K bytes
    - Viewed (1)
  5. docs/ko/docs/tutorial/request-files.md

    하지만 파일이 포함된 경우, `multipart/form-data`로 인코딩됩니다. `File`을 사용하였다면, **FastAPI**는 본문의 적합한 부분에서 파일을 가져와야 한다는 것을 인지합니다.
    
    인코딩과 폼 필드에 대해 더 알고싶다면, <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/POST" class="external-link" target="_blank"><code>POST</code>에 관한<abbr title="Mozilla Developer Network">MDN</abbr>웹 문서</a> 를 참고하기 바랍니다,.
    
    ///
    
    /// warning | 경고
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. docs/pt/docs/features.md

    * Isso também permite o uso de **geração de código do cliente** automaticamente em muitas linguagens.
    
    ### Documentação automática { #automatic-docs }
    
    Documentação interativa da API e navegação web da interface de usuário. Como o framework é baseado no OpenAPI, há várias opções, 2 incluídas por padrão.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Nov 12 16:23:57 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  7. docs/es/docs/advanced/generate-clients.md

    ### Usar el SDK { #using-the-sdk }
    
    Ahora puedes importar y usar el código del cliente. Podría verse así, nota que tienes autocompletado para los métodos:
    
    <img src="/img/tutorial/generate-clients/image02.png">
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  8. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Request.kt

         *     exception by calling [HttpUrl.parse]; it returns null for invalid URLs.
         */
        open fun url(url: String): Builder = url(canonicalUrl(url).toHttpUrl())
    
        // Silently replace web socket URLs with HTTP URLs.
        private fun canonicalUrl(url: String) =
          when {
            url.startsWith("ws:", ignoreCase = true) -> "http:${url.substring(3)}"
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Thu Oct 30 13:46:58 UTC 2025
    - 14.7K bytes
    - Viewed (1)
  9. docs/zh/docs/tutorial/bigger-applications.md

    # 更大的应用 - 多个文件
    
    如果你正在开发一个应用程序或 Web API,很少会将所有的内容都放在一个文件中。
    
    **FastAPI** 提供了一个方便的工具,可以在保持所有灵活性的同时构建你的应用程序。
    
    /// info
    
    如果你来自 Flask,那这将相当于 Flask 的 Blueprints。
    
    ///
    
    ## 一个文件结构示例
    
    假设你的文件结构如下:
    
    ```
    .
    ├── app
    │   ├── __init__.py
    │   ├── main.py
    │   ├── dependencies.py
    │   └── routers
    │   │   ├── __init__.py
    │   │   ├── items.py
    │   │   └── users.py
    │   └── internal
    │       ├── __init__.py
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sun May 11 13:37:26 UTC 2025
    - 18.4K bytes
    - Viewed (0)
  10. docs/zh-hant/docs/index.md

    **程式碼**: <a href="https://github.com/fastapi/fastapi" target="_blank">https://github.com/fastapi/fastapi</a>
    
    ---
    
    FastAPI 是一個現代、快速(高效能)的 web 框架,用於 Python 並採用標準 Python 型別提示。
    
    主要特點包含:
    
    - **快速**: 非常高的效能,可與 **NodeJS** 和 **Go** 效能相當 (歸功於 Starlette and Pydantic)。 [FastAPI 是最快的 Python web 框架之一](#performance)。
    - **極速開發**: 提高開發功能的速度約 200% 至 300%。 \*
    - **更少的 Bug**: 減少約 40% 的人為(開發者)導致的錯誤。 \*
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Oct 11 17:48:49 UTC 2025
    - 18.8K bytes
    - Viewed (0)
Back to top