Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 351 - 360 of 392 for cookey (0.09 seconds)

  1. docs/en/docs/_llm-test.md

    * the response body
    * the JSON body
    * the form body
    * the file body
    * the function body
    
    * the parameter
    * the body parameter
    * the path parameter
    * the query parameter
    * the cookie parameter
    * the header parameter
    * the form parameter
    * the function parameter
    
    * the event
    * the startup event
    * the startup of the server
    * the shutdown event
    * the lifespan event
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 11K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java

            }
    
            @Override
            public String getAuthType() {
                throw new UnsupportedOperationException();
            }
    
            @Override
            public jakarta.servlet.http.Cookie[] getCookies() {
                throw new UnsupportedOperationException();
            }
    
            @Override
            public long getDateHeader(String name) {
                throw new UnsupportedOperationException();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 26.5K bytes
    - Click Count (0)
  3. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Reader.kt

      ): List<Header> {
        continuation.left = length
        continuation.padding = padding
        continuation.flags = flags
        continuation.streamId = streamId
    
        // TODO: Concat multi-value headers with 0x0, except COOKIE, which uses 0x3B, 0x20.
        // http://tools.ietf.org/html/draft-ietf-httpbis-http2-17#section-8.1.2.5
        hpackReader.readHeaders()
        return hpackReader.getAndResetHeaderList()
      }
    
      @Throws(IOException::class)
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Mar 15 09:02:18 GMT 2026
    - 19.7K bytes
    - Click Count (0)
  4. docs/zh-hant/docs/tutorial/query-params-str-validations.md

    注意預設值仍然是 `None`,所以這個參數仍是可選。
    
    不過,現在在 `Annotated` 裡有 `Query(max_length=50)`,我們就告訴 FastAPI 要對這個值做「額外驗證」,最多 50 個字元即可。😎
    
    /// tip | 提示
    
    這裡用的是 `Query()`,因為這是「查詢參數」。稍後你會看到 `Path()`、`Body()`、`Header()`、`Cookie()` 等,它們也接受與 `Query()` 相同的參數。
    
    ///
    
    FastAPI 現在會:
    
    - 驗證資料,確保長度最多 50 個字元
    - 當資料不合法時,回給用戶端清楚的錯誤
    - 在 OpenAPI 的路徑操作中文件化該參數(因此會出現在自動文件 UI)
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 14.8K bytes
    - Click Count (0)
  5. docs/de/docs/tutorial/query-params-str-validations.md

    /// tip | Tipp
    
    Hier verwenden wir `Query()`, weil dies ein **Query-Parameter** ist. Später werden wir andere wie `Path()`, `Body()`, `Header()`, und `Cookie()` sehen, die auch dieselben Argumente wie `Query()` akzeptieren.
    
    ///
    
    FastAPI wird nun:
    
    * Die Daten **validieren**, um sicherzustellen, dass die Länge maximal 50 Zeichen beträgt
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 18.7K bytes
    - Click Count (0)
  6. docs/pt/docs/tutorial/query-params-str-validations.md

    /// tip | Dica
    
    Aqui estamos usando `Query()` porque este é um parâmetro de consulta. Mais adiante veremos outros como `Path()`, `Body()`, `Header()` e `Cookie()`, que também aceitam os mesmos argumentos que `Query()`.
    
    ///
    
    Agora o FastAPI vai:
    
    * Validar os dados garantindo que o comprimento máximo seja de 50 caracteres
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 17.2K bytes
    - Click Count (0)
  7. docs/ko/docs/_llm-test.md

    * 경로 처리 데코레이터
    * 경로 처리 함수
    
    * body
    * 요청 body
    * 응답 body
    * JSON body
    * form body
    * file body
    * 함수 body
    
    * parameter
    * body parameter
    * path parameter
    * query parameter
    * cookie parameter
    * header parameter
    * form parameter
    * function parameter
    
    * event
    * startup event
    * 서버 startup
    * shutdown event
    * lifespan event
    
    * handler
    * event handler
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 11.7K bytes
    - Click Count (0)
  8. fastapi/param_functions.py

            openapi_examples=openapi_examples,
            deprecated=deprecated,
            include_in_schema=include_in_schema,
            json_schema_extra=json_schema_extra,
            **extra,
        )
    
    
    def Cookie(  # noqa: N802
        default: Annotated[
            Any,
            Doc(
                """
                Default value if the parameter field is not set.
                """
            ),
        ] = Undefined,
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 68K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java

            final String username = systemHelper.getUsername();
            if (!org.codelibs.fess.Constants.GUEST_USER.equals(username)) {
                return username;
            }
            // For guest users, use cookie-based userCode for session identification
            return ComponentUtil.getUserInfoHelper().getUserCode();
        }
    
        /**
         * Returns the maximum message length for chat messages.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 06:06:55 GMT 2026
    - 25.8K bytes
    - Click Count (0)
  10. docs/tr/docs/tutorial/query-params-str-validations.md

    /// tip | İpucu
    
    Burada `Query()` kullanıyoruz çünkü bu bir **query parametresi**. İleride `Path()`, `Body()`, `Header()` ve `Cookie()` gibi, `Query()` ile aynı argümanları kabul eden diğerlerini de göreceğiz.
    
    ///
    
    FastAPI artık şunları yapacak:
    
    * Verinin uzunluğunun en fazla 50 karakter olduğundan emin olacak şekilde **doğrulayacak**
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 17.3K bytes
    - Click Count (0)
Back to Top