- Sort Score
- Num 10 results
- Language All
Results 241 - 250 of 392 for cookey (0.04 seconds)
-
docs/uk/llm-prompt.md
- digest (HTTP): дайджест - basic authentication (HTTP): базова автентифікація - JSON schema: Схема JSON - password flow: потік паролю - mobile: мобільний - body: тіло - form: форма - path: шлях - query: запит - cookie: кукі - header: заголовок - startup: запуск - shutdown: вимкнення - lifespan: тривалість життя - authorization: авторизація - forwarded header: направлений заголовок - dependable: залежний - dependent: залежний
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Feb 04 16:47:51 GMT 2026 - 4K bytes - Click Count (0) -
docs/es/docs/tutorial/query-param-models.md
``` ## Resumen { #summary } Puedes usar **modelos de Pydantic** para declarar **parámetros query** en **FastAPI**. 😎 /// tip | Consejo Alerta de spoiler: también puedes usar modelos de Pydantic para declarar cookies y headers, pero leerás sobre eso más adelante en el tutorial. 🤫Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Dec 16 16:33:45 GMT 2025 - 2.3K bytes - Click Count (0) -
fastapi/security/open_id_connect_url.py
It is also useful when you want to have authentication that can be provided in one of multiple optional ways (for example, with OpenID Connect or in a cookie). """ ), ] = True, ): self.model = OpenIdConnectModel( openIdConnectUrl=openIdConnectUrl, description=description )Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Mon Mar 16 10:16:48 GMT 2026 - 3.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java
@Test public void test_append_booleanValue() { StringBuilder buf = new StringBuilder(); Supplier<Object> supplier = () -> Boolean.TRUE; monitorTarget.append(buf, "boolKey", supplier); assertEquals("\"boolKey\":\"true\"", buf.toString()); } // Test append method with Date value (other object type) @Test public void test_append_dateValue() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/filter/WebApiFilterTest.java
private HttpServletResponse createMockHttpServletResponse() { return new HttpServletResponse() { @Override public void addCookie(jakarta.servlet.http.Cookie cookie) { } @Override public boolean containsHeader(String name) { return false; } @Override
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 26.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/api/WebApiManagerTest.java
return stringWriter.toString(); } // Minimal implementations for other required methods @Override public void addCookie(jakarta.servlet.http.Cookie cookie) { } @Override public boolean containsHeader(String name) { return headers.containsKey(name); } @Override
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 26.9K bytes - Click Count (0) -
docs/de/docs/tutorial/query-param-models.md
``` ## Zusammenfassung { #summary } Sie können **Pydantic-Modelle** verwenden, um **Query-Parameter** in **FastAPI** zu deklarieren. 😎 /// tip | Tipp Spoiler-Alarm: Sie können auch Pydantic-Modelle verwenden, um Cookies und Header zu deklarieren, aber darüber werden Sie später im Tutorial lesen. 🤫Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Sep 20 15:10:09 GMT 2025 - 2.6K bytes - Click Count (0) -
docs/en/docs/tutorial/query-param-models.md
} ] } ``` ## Summary { #summary } You can use **Pydantic models** to declare **query parameters** in **FastAPI**. 😎 /// tip Spoiler alert: you can also use Pydantic models to declare cookies and headers, but you will read about that later in the tutorial. 🤫Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Aug 31 09:15:41 GMT 2025 - 2.2K bytes - Click Count (0) -
docs/es/docs/advanced/using-request-directly.md
# Usar el Request Directamente { #using-the-request-directly } Hasta ahora, has estado declarando las partes del request que necesitas con sus tipos. Tomando datos de: * El path como parámetros. * Headers. * Cookies. * etc. Y al hacerlo, **FastAPI** está validando esos datos, convirtiéndolos y generando documentación para tu API automáticamente. Pero hay situaciones donde podrías necesitar acceder al objeto `Request` directamente.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 2.4K bytes - Click Count (0) -
docs/es/docs/tutorial/testing.md
* Si necesitas enviar *Form Data* en lugar de JSON, usa el parámetro `data` en su lugar. * Para pasar *headers*, usa un `dict` en el parámetro `headers`. * Para *cookies*, un `dict` en el parámetro `cookies`. Para más información sobre cómo pasar datos al backend (usando `httpx` o el `TestClient`) revisa la [documentación de HTTPX](https://www.python-httpx.org). /// info | Información
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 6.1K bytes - Click Count (0)