Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1051 - 1060 of 1,330 for reaper (0.06 seconds)

  1. src/main/resources/fess_label.properties

    labels.roletype_title_details=Role
    labels.roletype_name=Name
    labels.roletype_value=Value
    labels.reqheader_configuration=Request Header
    labels.reqheader_list_name=Name
    labels.reqheader_list_web_crawling_config=Config Name
    labels.reqheader_create_web_config=Create New Web Config
    labels.reqheader_title_details=Request Header
    labels.reqheader_name=Name
    labels.reqheader_value=Value
    labels.reqheader_web_crawling_config=Web Config
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/collect/Iterables.java

       *
       * @param position position of the element to return
       * @return the element at the specified position in {@code iterable}
       * @throws IndexOutOfBoundsException if {@code position} is negative or greater than or equal to
       *     the size of {@code iterable}
       */
      @ParametricNullness
      public static <T extends @Nullable Object> T get(Iterable<T> iterable, int position) {
        checkNotNull(iterable);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Sep 16 18:35:28 GMT 2025
    - 43.8K bytes
    - Click Count (0)
  3. docs/ko/docs/tutorial/cookie-param-models.md

    이를 통해 **여러 위치**에서 **모델을 재사용** 할 수 있고 모든 매개변수에 대한 유효성 검사 및 메타데이터를 한 번에 선언할 수도 있습니다. 😎
    
    /// note | 참고
    
    이 기능은 FastAPI 버전 `0.115.0` 이후부터 지원됩니다. 🤓
    
    ///
    
    /// tip | 팁
    
    동일한 기술이 `Query`, `Cookie`, 그리고 `Header`에 적용됩니다. 😎
    
    ///
    
    ## Pydantic 모델을 사용한 쿠키 { #cookies-with-a-pydantic-model }
    
    **Pydantic 모델**에 필요한 **쿠키** 매개변수를 선언한 다음, 해당 매개변수를 `Cookie`로 선언합니다:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:57:01 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  4. docs/tr/docs/tutorial/server-sent-events.md

    ///
    
    ## `Last-Event-ID` ile Devam Etme { #resuming-with-last-event-id }
    
    Bir tarayıcı bağlantı koptuktan sonra yeniden bağlandığında, son aldığı `id`'yi `Last-Event-ID` header'ında gönderir.
    
    Bunu bir header parametresi olarak okuyup, istemcinin kaldığı yerden akışı sürdürmek için kullanabilirsiniz:
    
    {* ../../docs_src/server_sent_events/tutorial004_py310.py hl[25,27,31] *}
    
    ## POST ile SSE { #sse-with-post }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:51:35 GMT 2026
    - 5.1K bytes
    - Click Count (0)
  5. docs/zh/docs/advanced/security/oauth2-scopes.md

    /// info | 信息
    
    在 OAuth2 中,“作用域”只是一个声明所需特定权限的字符串。
    
    是否包含像 `:` 这样的字符,或者是不是一个 URL,并不重要。
    
    这些细节取决于具体实现。
    
    对 OAuth2 而言,它们都只是字符串。
    
    ///
    
    ## 全局纵览 { #global-view }
    
    首先,让我们快速看看与**用户指南**中 [OAuth2 实现密码(含哈希)、Bearer + JWT 令牌](../../tutorial/security/oauth2-jwt.md) 示例相比有哪些变化。现在开始使用 OAuth2 作用域:
    
    {* ../../docs_src/security/tutorial005_an_py310.py hl[5,9,13,47,65,106,108:116,122:126,130:136,141,157] *}
    
    下面我们逐步回顾这些更改。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 13K bytes
    - Click Count (0)
  6. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

       * than {@code toKey}.
       *
       * <p>The {@link SortedMap#headMap} documentation states that a submap of a submap throws an
       * {@link IllegalArgumentException} if passed a {@code toKey} greater than an earlier {@code
       * toKey}. However, this method doesn't throw an exception in that situation, but instead keeps
       * the original {@code toKey}.
       */
      @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 08 18:10:02 GMT 2026
    - 54.7K bytes
    - Click Count (0)
  7. 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)
  8. 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)
  9. src/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectRequestTest.java

                assertEquals(pathBytes.length, SMBUtil.readInt2(buffer, bodyOffset + 6)); // Path length
            }
        }
    
        @Test
        @DisplayName("Should correctly calculate path offset from header start")
        void testPathOffsetCalculation() throws Exception {
            // Given
            byte[] buffer = new byte[512];
            int headerStart = 64;
    
            // When
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 18.6K bytes
    - Click Count (0)
  10. fastapi/openapi/utils.py

        cookie_params = _get_flat_fields_from_params(flat_dependant.cookie_params)
        parameter_groups = [
            (ParamTypes.path, path_params),
            (ParamTypes.query, query_params),
            (ParamTypes.header, header_params),
            (ParamTypes.cookie, cookie_params),
        ]
        default_convert_underscores = True
        if len(flat_dependant.header_params) == 1:
            first_field = flat_dependant.header_params[0]
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 25.6K bytes
    - Click Count (0)
Back to Top