- Sort Score
- Num 10 results
- Language All
Results 261 - 270 of 951 for warnings (0.05 seconds)
-
docs/zh/docs/tutorial/request-forms-and-files.md
创建文件和表单参数的方式与 `Body` 和 `Query` 一样: {* ../../docs_src/request_forms_and_files/tutorial001_an_py310.py hl[10:12] *} 文件和表单字段作为表单数据上传与接收。 并且你可以将部分文件声明为 `bytes`,将部分文件声明为 `UploadFile`。 /// warning | 警告 可在一个*路径操作*中声明多个 `File` 与 `Form` 参数,但不能同时声明要接收 JSON 的 `Body` 字段。因为此时请求体的编码为 `multipart/form-data`,不是 `application/json`。 这不是 **FastAPI** 的问题,而是 HTTP 协议的规定。 /// ## 小结 { #recap }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 1.3K bytes - Click Count (0) -
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTest.java
} /** * Test that getPassword() is deprecated and logs warning */ @Test @DisplayName("Test deprecated getPassword() method warning") public void testDeprecatedGetPasswordWarning() { NtlmPasswordAuthenticator auth = new NtlmPasswordAuthenticator("user", "TestPass123!"); // This should log a warning about using deprecated method String password = auth.getPassword();Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 23.3K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/ExecutionEventCatapult.java
import org.apache.maven.execution.ExecutionEvent; import org.apache.maven.execution.MavenSession; import org.apache.maven.plugin.MojoExecution; /** * Assists in firing execution events. <strong>Warning:</strong> This is an internal utility interface that is only * public for technical reasons, it is not part of the public API. In particular, this interface can be changed or * deleted without prior notice. * */
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.5K bytes - Click Count (0) -
docs/zh/llm-prompt.md
### `///` admonitions - Keep the admonition keyword in English (do not translate `note`, `tip`, etc.). - If a title is present, prefer these canonical titles: - `/// tip | 提示` - `/// note | 注意` - `/// warning | 警告` - `/// info | 信息`
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Mon Dec 29 18:54:20 GMT 2025 - 1.4K bytes - Click Count (0) -
docs/fr/docs/advanced/path-operation-advanced-configuration.md
# Configuration avancée des chemins d'accès { #path-operation-advanced-configuration } ## ID d’opération OpenAPI { #openapi-operationid } /// warning | Alertes Si vous n’êtes pas un « expert » d’OpenAPI, vous n’en avez probablement pas besoin. /// Vous pouvez définir l’OpenAPI `operationId` à utiliser dans votre chemin d’accès avec le paramètre `operation_id`. Vous devez vous assurer qu’il est unique pour chaque opération.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 8K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/validation/DefaultModelValidator.java
this.result = result; } @Override public void add(ModelProblemCollectorRequest req) { if (!ModelProblem.Severity.WARNING.equals(req.getSeverity())) { result.addMessage(req.getMessage()); } } }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 2.4K bytes - Click Count (0) -
.ci/packer_cache.sh
## therefore we run master _AFTER_ we run 6.8 which uses an earlier gradle version export JAVA_HOME="${HOME}"/.java/${ES_BUILD_JAVA}Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Mon Jun 14 16:16:36 GMT 2021 - 1.9K bytes - Click Count (0) -
docs/ko/docs/how-to/migrate-from-pydantic-v1-to-pydantic-v2.md
FastAPI 0.119.0 버전에서는 v2로의 마이그레이션을 쉽게 하기 위해, Pydantic v2 내부에서 Pydantic v1을(`pydantic.v1`로) 부분적으로 지원하기 시작했습니다. FastAPI 0.126.0 버전에서는 Pydantic v1 지원을 중단했지만, `pydantic.v1`은 잠시 동안 계속 지원했습니다. /// warning | 경고 Pydantic 팀은 최신 Python 버전에서 Pydantic v1 지원을 중단했으며, 시작 버전은 **Python 3.14**입니다. 여기에는 `pydantic.v1`도 포함되며, Python 3.14 이상에서는 더 이상 지원되지 않습니다. Python의 최신 기능을 사용하려면 Pydantic v2를 사용하고 있는지 확인해야 합니다. ///
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 6.3K bytes - Click Count (0) -
docs/ko/docs/advanced/path-operation-advanced-configuration.md
# 경로 처리 고급 구성 { #path-operation-advanced-configuration } ## OpenAPI operationId { #openapi-operationid } /// warning | 경고 OpenAPI “전문가”가 아니라면, 아마 이 내용은 필요하지 않을 것입니다. /// 매개변수 `operation_id`를 사용해 *경로 처리*에 사용할 OpenAPI `operationId`를 설정할 수 있습니다. 각 작업마다 고유하도록 보장해야 합니다. {* ../../docs_src/path_operation_advanced_configuration/tutorial001_py310.py hl[6] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 7.6K bytes - Click Count (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/DefaultSettingsBuilder.java
settings = settingsReader.read(settingsSource.getInputStream(), options); problems.add( SettingsProblem.Severity.WARNING, e.getMessage(), e.getLineNumber(), e.getColumnNumber(), e); } } catch (SettingsParseException e) { problems.add( SettingsProblem.Severity.FATAL,Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 9.5K bytes - Click Count (0)