Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 411 - 420 of 509 for holder (0.06 seconds)

  1. docs/zh/docs/tutorial/cookie-param-models.md

    如果您有一组相关的 **cookie**,您可以创建一个 **Pydantic 模型**来声明它们。🍪
    
    这将允许您在**多个地方**能够**重用模型**,并且可以一次性声明所有参数的验证方式和元数据。😎
    
    /// note | 注意
    
    自 FastAPI 版本 `0.115.0` 起支持此功能。🤓
    
    ///
    
    /// tip | 提示
    
    此技术同样适用于 `Query` 、 `Cookie` 和 `Header` 。😎
    
    ///
    
    ## 带有 Pydantic 模型的 Cookie { #cookies-with-a-pydantic-model }
    
    在 **Pydantic** 模型中声明所需的 **cookie** 参数,然后将参数声明为 `Cookie` :
    
    {* ../../docs_src/cookie_param_models/tutorial001_an_py310.py hl[9:12,16] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 13:37:57 GMT 2026
    - 3K bytes
    - Click Count (0)
  2. src/main/java/jcifs/http/NetworkExplorer.java

            out.println("<b><a class=\"plain\" href=\".\">normal</a> | <a class=\"plain\" href=\"?fmt=detail\">detailed</a></b>");
            out.println("<p><table border='0' cellspacing='0' cellpadding='0'><tr><td>");
    
            out.print("<A style=\"width: " + maxLen);
            out.print("; height: 18;\" HREF=\"");
            out.print(path);
            out.println("\"><b>&uarr;</b></a>");
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 23.4K bytes
    - Click Count (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java

                                    destination.setLastModified(System.currentTimeMillis());
                                }
                            } catch (UnsupportedOperationException e) {
                                // older wagons throw this. Just get() instead
                                wagon.get(remotePath, temp);
    
                                downloaded = true;
                            }
                        } else {
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Sat Apr 05 11:52:05 GMT 2025
    - 29.9K bytes
    - Click Count (0)
  4. src/main/resources/fess_message.properties

    # ----------------------------------------------------------
    # Lasta Taglib
    # ------------
    errors.front_header=
    errors.front_footer=
    errors.front_prefix=<div class="alert alert-warning">
    errors.front_suffix=</div>
    errors.header = <ul class="has-error">
    errors.footer = </ul>
    errors.prefix = <li><i class="fa fa-exclamation-circle"></i>
    errors.suffix = </li>
    # ----------------------------------------------------------
    # Javax Validator
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 12.4K bytes
    - Click Count (0)
  5. src/main/resources/fess_message_en.properties

    # ========================================================================================
    # Framework Default
    # =================
    # ----------------------------------------------------------
    # Lasta Taglib
    # ------------
    errors.header = <ul class="has-error">
    errors.footer = </ul>
    errors.prefix = <li><i class="fa fa-exclamation-circle"></i>
    errors.suffix = </li>
    # ----------------------------------------------------------
    # Javax Validator
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 12.4K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/app/service/WebConfigService.java

        /**
         * Behavior class for web authentication operations.
         */
        @Resource
        protected WebAuthenticationBhv webAuthenticationBhv;
    
        /**
         * Behavior class for request header operations.
         */
        @Resource
        protected RequestHeaderBhv requestHeaderBhv;
    
        /**
         * Fess configuration settings.
         */
        @Resource
        protected FessConfig fessConfig;
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 6.6K bytes
    - Click Count (0)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/MediaType.kt

        level = DeprecationLevel.ERROR,
      )
      fun subtype(): String = subtype
    
      /**
       * Returns the encoded media type, like "text/plain; charset=utf-8", appropriate for use in a
       * Content-Type header.
       */
      override fun toString(): String = mediaType
    
      override fun equals(other: Any?): Boolean = other is MediaType && other.mediaType == mediaType
    
      override fun hashCode(): Int = mediaType.hashCode()
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 5.9K bytes
    - Click Count (0)
  8. src/main/java/jcifs/smb1/netbios/SessionServicePacket.java

            if (n != HEADER_LENGTH) {
                if (n == -1) {
                    return -1;
                }
                throw new IOException("unexpected EOF reading netbios session header");
            }
            return buffer[bufferIndex] & 0xFF;
        }
    
        int type, length;
    
        /**
         * Writes the packet to the specified byte array in wire format.
         *
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 5.2K bytes
    - Click Count (0)
  9. docs/zh-hant/docs/advanced/middleware.md

    任何指向 `http` 或 `ws` 的請求都會被重新導向至對應的安全協定。
    
    {* ../../docs_src/advanced_middleware/tutorial001_py310.py hl[2,6] *}
    
    ## `TrustedHostMiddleware` { #trustedhostmiddleware }
    
    強制所有傳入請求正確設定 `Host` 標頭,以防範 HTTP Host Header 攻擊。
    
    {* ../../docs_src/advanced_middleware/tutorial002_py310.py hl[2,6:8] *}
    
    支援以下參數:
    
    - `allowed_hosts` - 允許作為主機名稱的網域名稱清單。支援萬用字元網域(例如 `*.example.com`)以比對子網域。若要允許任意主機名稱,可使用 `allowed_hosts=["*"]`,或乾脆不要加上此中介軟體。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  10. docs/tr/docs/advanced/websockets.md

    ## `Depends` ve Diğerlerini Kullanma { #using-depends-and-others }
    
    WebSocket endpoint'lerinde `fastapi` içinden import edip şunları kullanabilirsiniz:
    
    * `Depends`
    * `Security`
    * `Cookie`
    * `Header`
    * `Path`
    * `Query`
    
    Diğer FastAPI endpoint'leri/*path operations* ile aynı şekilde çalışırlar:
    
    {* ../../docs_src/websockets_/tutorial002_an_py310.py hl[68:69,82] *}
    
    /// info
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 5.9K bytes
    - Click Count (0)
Back to Top