- Sort Score
- Num 10 results
- Language All
Results 161 - 170 of 358 for cookie1 (0.05 seconds)
-
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessCookieResourceProvider.java
package org.codelibs.fess.mylasta.direction.sponsor; import org.codelibs.fess.mylasta.direction.FessConfig; import org.lastaflute.core.security.InvertibleCryptographer; import org.lastaflute.web.servlet.cookie.CookieResourceProvider; /** * The provider of cookie resource. * * @author jflute */ public class FessCookieResourceProvider implements CookieResourceProvider { protected final FessConfig harborConfig;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.6K bytes - Click Count (0) -
docs/en/docs/reference/response.md
# `Response` class You can declare a parameter in a *path operation function* or dependency to be of type `Response` and then you can set data for the response like headers or cookies. You can also use it directly to create an instance of it and return it from your *path operations*. Read more about it in the [FastAPI docs about returning a custom Response](https://fastapi.tiangolo.com/advanced/response-directly/#returning-a-custom-response)
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Feb 04 12:41:54 GMT 2026 - 559 bytes - Click Count (0) -
fastapi/dependencies/utils.py
elif field_info_in == params.ParamTypes.header: dependant.header_params.append(field) else: assert field_info_in == params.ParamTypes.cookie, ( f"non-body parameters must be in path, query, header or cookie: {field.name}" ) dependant.cookie_params.append(field) async def _solve_generator(Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Mar 15 11:44:39 GMT 2026 - 38.7K bytes - Click Count (3) -
docs/zh/docs/index.md
* 自动补全。 * 类型检查。 * 数据校验: * 当数据无效时自动生成清晰的错误信息。 * 即便是多层嵌套的 JSON 对象也会进行校验。 * <dfn title="也被称为:序列化、解析、编组">转换</dfn>输入数据:从网络读取到 Python 数据和类型。读取来源: * JSON。 * 路径参数。 * 查询参数。 * Cookies。 * Headers。 * Forms。 * Files。 * <dfn title="也被称为:序列化、解析、编组">转换</dfn>输出数据:从 Python 数据和类型转换为网络数据(JSON): * 转换 Python 类型(`str`、`int`、`float`、`bool`、`list` 等)。 * `datetime` 对象。 * `UUID` 对象。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 20.7K bytes - Click Count (0) -
docs/fr/docs/tutorial/dependencies/sub-dependencies.md
- Elle dépend de `query_extractor` et affecte la valeur renvoyée au paramètre `q`. - Elle déclare également un cookie `last_query` optionnel, de type `str`. - Si l'utilisateur n'a fourni aucune requête `q`, nous utilisons la dernière requête utilisée, que nous avons enregistrée auparavant dans un cookie. ## Utiliser la dépendance { #use-the-dependency } Nous pouvons ensuite utiliser la dépendance avec :Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:12:41 GMT 2026 - 4.2K bytes - Click Count (0) -
docs/pt/docs/tutorial/dependencies/sub-dependencies.md
* Ela depende do `query_extractor`, e atribui o valor retornado pela função ao parâmetro `q`. * Ela também declara um cookie opcional `last_query`, do tipo `str`. * Se o usuário não passou nenhuma consulta `q`, a última consulta é utilizada, que foi salva em um cookie anteriormente. ## Utilizando a dependência { #use-the-dependency } Então podemos utilizar a dependência com:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 13 13:48:53 GMT 2026 - 4.1K bytes - Click Count (0) -
docs/fr/docs/index.md
* JSON. * Paramètres de chemin. * Paramètres de requête. * Cookies. * En-têtes. * Formulaires. * Fichiers.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 23.8K bytes - Click Count (0) -
docs/tr/docs/tutorial/testing.md
* JSON yerine *Form Data* göndermeniz gerekiyorsa, bunun yerine `data` parametresini kullanın. * *headers* göndermek için, `headers` parametresine bir `dict` verin. * *cookies* için, `cookies` parametresine bir `dict` verin. Backend'e veri geçme hakkında daha fazla bilgi için (`httpx` veya `TestClient` kullanarak) [HTTPX dokümantasyonu](https://www.python-httpx.org)'na bakın. /// info | Bilgi
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 6.3K bytes - Click Count (0) -
docs/zh/docs/tutorial/dependencies/sub-dependencies.md
这里重点说明一下声明的参数: * 尽管该函数自身是依赖项(“dependable”),但还声明了另一个依赖项(它“依赖”于其他对象) * 该函数依赖 `query_extractor`, 并把 `query_extractor` 的返回值赋给参数 `q` * 同时,该函数还声明了类型是 `str` 的可选 cookie(`last_query`) * 用户未提供查询参数 `q` 时,则使用上次使用后保存在 cookie 中的查询 ## 使用依赖项 { #use-the-dependency } 接下来,就可以使用依赖项: {* ../../docs_src/dependencies/tutorial005_an_py310.py hl[23] *} /// info | 信息Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 13 13:37:57 GMT 2026 - 3.8K bytes - Click Count (0) -
docs/uk/docs/tutorial/testing.md
* Якщо потрібно надіслати *Form Data* замість JSON, використовуйте параметр `data`. * Щоб передати заголовки *headers*, використовуйте `dict` у параметрі `headers`. * Для *cookies* використовуйте `dict` у параметрі `cookies`. Докладніше про передачу даних у бекенд (за допомогою `httpx` або `TestClient`) можна знайти в [документації HTTPX](https://www.python-httpx.org). /// info | Інформація
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 8.6K bytes - Click Count (0)