- Sort Score
- Num 10 results
- Language All
Results 1101 - 1110 of 1,817 for _parameters (0.06 seconds)
-
src/main/java/jcifs/smb1/Config.java
* properties will then populate the <code>Config</code> as well potentially * overwriting properties from the file. Thus properties provided on the * commandline with the <code>-Dproperty.name=value</code> VM parameter * will override properties from the configuration file. * <p> * There are several ways to set jCIFS properties. See * the <a href="../overview-summary.html#scp">overview page of the API * documentation</a> for details.
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 14.5K bytes - Click Count (0) -
docs/ko/docs/tutorial/schema-extra-example.md
JSON 스키마는 `examples`를 가지고 있지 않았고, 따라서 OpenAPI는 그들만의 `example` 필드를 수정된 버전에 추가했습니다. OpenAPI는 또한 `example`과 `examples` 필드를 명세서의 다른 부분에 추가했습니다: * [`Parameter Object` (명세서에 있는)](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#parameter-object)는 FastAPI의 다음 기능에서 쓰였습니다: * `Path()` * `Query()` * `Header()` * `Cookie()`Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 10.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/accesstoken/CreateForm.java
* Defines what operations and resources this token can access. */ @CustomSize(maxKey = "form.admin.max.input.size") public String permissions; /** * The parameter name for the access token. * This field specifies how the token should be passed in API requests. * Maximum length is 10000 characters. */ @Size(max = 10000) public String parameterName;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 3.4K bytes - Click Count (0) -
docs/ko/docs/advanced/response-cookies.md
# 응답 쿠키 { #response-cookies } ## `Response` 매개변수 사용하기 { #use-a-response-parameter } *경로 처리 함수*에서 `Response` 타입의 매개변수를 선언할 수 있습니다. 그런 다음 해당 *임시* 응답 객체에서 쿠키를 설정할 수 있습니다. {* ../../docs_src/response_cookies/tutorial002_py310.py hl[1, 8:9] *} 그런 다음 일반적으로 하듯이 필요한 어떤 객체든 반환할 수 있습니다(`dict`, 데이터베이스 모델 등). 그리고 `response_model`을 선언했다면 반환한 객체를 거르고 변환하는 데 여전히 사용됩니다.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 2.5K bytes - Click Count (0) -
docs/pt/docs/tutorial/body-nested-models.md
## Campos do tipo Lista com um parâmetro de tipo { #list-fields-with-type-parameter } Mas o Python tem uma maneira específica de declarar listas com tipos internos ou "parâmetros de tipo": ### Declare uma `list` com um parâmetro de tipo { #declare-a-list-with-a-type-parameter } Para declarar tipos que têm parâmetros de tipo (tipos internos), como `list`, `dict`, `tuple`,Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 7.3K bytes - Click Count (0) -
docs/zh/docs/tutorial/body-updates.md
如果要接收部分更新,建议在 Pydantic 模型的 `.model_dump()` 中使用 `exclude_unset` 参数。 比如,`item.model_dump(exclude_unset=True)`。 这会生成一个 `dict`,只包含创建 `item` 模型时显式设置的数据,不包含默认值。 然后再用它生成一个只含已设置(在请求中发送)数据、且省略默认值的 `dict`: {* ../../docs_src/body_updates/tutorial002_py310.py hl[32] *} ### 使用 Pydantic 的 `update` 参数 { #using-pydantics-update-parameter }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 3.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/accesstoken/AdminAccesstokenAction.java
*/ public static final String ROLE = "admin-accesstoken"; /** * The token parameter. */ public static final String TOKEN = "token"; /** * The expires parameter. */ public static final String EXPIRES = "expires"; /** * The expired time parameter. */ public static final String EXPIRED_TIME = "expiredTime";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 27 07:01:25 GMT 2025 - 15.9K bytes - Click Count (0) -
ADDING_NEW_LANGUAGE.md
2. **Access the Admin UI:** ``` http://localhost:8080/admin/ ``` 3. **Test language selection:** - Check if your language appears in the language dropdown - Force your language by adding URL parameter: `?browser_lang=[locale]` - Example: `http://localhost:8080/admin/?browser_lang=sv` 4. **Verify translations:** - Navigate through different admin pages - Check that labels and messages appear in your language
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 06 11:36:30 GMT 2025 - 10.4K bytes - Click Count (1) -
docs/uk/docs/tutorial/schema-extra-example.md
OpenAPI також додала поля `example` і `examples` до інших частин специфікації: * [`Parameter Object` (у специфікації)](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#parameter-object), який використовувався утилітами FastAPI: * `Path()` * `Query()` * `Header()` * `Cookie()`Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 13.3K bytes - Click Count (0) -
docs/es/docs/advanced/response-cookies.md
# Cookies de Response { #response-cookies } ## Usar un parámetro `Response` { #use-a-response-parameter } Puedes declarar un parámetro de tipo `Response` en tu *path operation function*. Y luego puedes establecer cookies en ese objeto de response *temporal*. {* ../../docs_src/response_cookies/tutorial002_py310.py hl[1, 8:9] *}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)