- Sort Score
- Result 10 results
- Languages All
Results 341 - 350 of 1,458 for mesiace (0.05 sec)
-
tests/test_dependency_normal_exceptions.py
raise HTTPException(status_code=400, detail="Invalid user") @app.put("/user/{user_id}") def put_user(user_id: str, name: str = Body(), db: dict = Depends(get_database)): db[user_id] = name return {"message": "OK"} @pytest.fixture(autouse=True) def reset_state_and_db(): global fake_database global state fake_database = initial_fake_database.copy() state = initial_state.copy()
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Feb 24 23:06:37 UTC 2024 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/validation/UriType.java
@Retention(RUNTIME) @Documented @Constraint(validatedBy = UriTypeValidator.class) public @interface UriType { ProtocolType protocolType(); String message() default "{org.lastaflute.validator.constraints.UriType.message}"; Class<?>[] groups() default {}; Class<? extends Payload>[] payload() default {};
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.6K bytes - Viewed (0) -
docs_src/request_files/tutorial001_02_an_py310.py
@app.post("/files/") async def create_file(file: Annotated[bytes | None, File()] = None): if not file: return {"message": "No file sent"} else: return {"file_size": len(file)} @app.post("/uploadfile/") async def create_upload_file(file: UploadFile | None = None): if not file: return {"message": "No upload file sent"} else:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Mar 18 12:29:59 UTC 2023 - 505 bytes - Viewed (0) -
src/main/resources/fess_message_ja.properties
constraints.NotEmpty.message = {item} は未入力です。 constraints.ParametersScriptAssert.message = スクリプト式「{script}」がtrueではありません。 constraints.Range.message = {item} は {min} から {max} の範囲にある必要があります。 constraints.SafeHtml.message = {item} は危険な HTML コンテンツを含んでいます。 constraints.ScriptAssert.message = スクリプト式「{script}」がtrueではありません。 constraints.URL.message = {item} は有効なURLではありません。 constraints.Required.message = {item} が必要です。
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Mar 18 03:05:44 UTC 2023 - 15.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/BuilderProblem.java
* * @return the exception that caused this problem or {@code null} if not applicable */ @Nullable Exception getException(); /** * Gets the message that describes this problem. * * @return the message describing this problem, never {@code null} */ @Nonnull String getMessage(); /** * Gets the severity level of this problem. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Mar 23 05:29:39 UTC 2023 - 3.6K bytes - Viewed (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/transfer/ConsoleMavenTransferListenerTest.java
.build()); StringBuilder message = new StringBuilder("Messages ["); boolean test = true; for (int i = 0; i < 999; i++) { boolean ok = output.containsKey("Progress (1): test-resource (" + i + "/999 B)"); if (!ok) { System.out.println("false : " + i); message.append(i + ","); } test = test & ok;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/Route.kt
) { @JvmName("-deprecated_address") @Deprecated( message = "moved to val", replaceWith = ReplaceWith(expression = "address"), level = DeprecationLevel.ERROR, ) fun address(): Address = address @JvmName("-deprecated_proxy") @Deprecated( message = "moved to val", replaceWith = ReplaceWith(expression = "proxy"), level = DeprecationLevel.ERROR, )
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 4.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/SMBProtocolDecodingException.java
super(); } /** * @param message * @param cause */ public SMBProtocolDecodingException ( String message, Throwable cause ) { super(message, cause); } /** * @param message */ public SMBProtocolDecodingException ( String message ) { super(message); } /** * @param cause */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/CIFSException.java
super(); } /** * * @param message * @param cause */ public CIFSException ( String message, Throwable cause ) { super(message, cause); } /** * * @param message */ public CIFSException ( String message ) { super(message); } /** * * @param cause */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.5K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/MultipartBody.kt
override fun contentType(): MediaType = contentType @JvmName("-deprecated_type") @Deprecated( message = "moved to val", replaceWith = ReplaceWith(expression = "type"), level = DeprecationLevel.ERROR, ) fun type(): MediaType = type @JvmName("-deprecated_boundary") @Deprecated( message = "moved to val", replaceWith = ReplaceWith(expression = "boundary"), level = DeprecationLevel.ERROR, )
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 10.9K bytes - Viewed (0)