- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 1,455 for MESSAGE (0.92 sec)
-
src/main/java/org/codelibs/core/exception/ClUnsupportedOperationException.java
} /** * {@link ClUnsupportedOperationException}を作成します。 * * @param message * メッセージ */ public ClUnsupportedOperationException(final String message) { super(message); } /** * {@link ClUnsupportedOperationException}を作成します。 * * @param message * メッセージ * @param cause * 元の例外 */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/LookupException.java
private static final long serialVersionUID = -6259322450070320286L; public LookupException(String message) { super(message); } /** * @param message the message to give * @param e the {@link Exception} */ public LookupException(String message, Exception e) { super(message, e); } /** * @param e the {@link Exception} */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 1.5K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/transfer/Slf4jMavenTransferListener.java
TransferResource resource = event.getResource(); StringBuilder message = new StringBuilder(); message.append(action).append(' ').append(direction).append(' ').append(resource.getRepositoryId()); message.append(": "); message.append(resource.getRepositoryUrl()).append(resource.getResourceName()); out.info(message.toString()); } @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.7K bytes - Viewed (0) -
common-protos/k8s.io/api/apiserverinternal/v1alpha1/generated.proto
// The reason for the condition's last transition. // +required optional string reason = 5; // A human readable message indicating details about the transition. // +required optional string message = 6; } // A list of StorageVersions. message StorageVersionList { // Standard list metadata. // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 4.1K bytes - Viewed (0) -
docs_src/background_tasks/tutorial002_an_py310.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Mar 18 12:29:59 UTC 2023 - 683 bytes - Viewed (0) -
common-protos/k8s.io/api/core/v1/generated.proto
// Optional: Path at which the file to which the container's termination message // will be written is mounted into the container's filesystem. // Message written is intended to be brief final status, such as an assertion failure message. // Will be truncated by the node if greater than 4096 bytes. The total message length across // all containers will be limited to 12kb. // Defaults to /dev/termination-log.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 255.8K bytes - Viewed (0) -
common-protos/k8s.io/api/autoscaling/v2beta2/generated.proto
// +optional optional string reason = 4; // message is a human-readable explanation containing details about // the transition // +optional optional string message = 5; } // HorizontalPodAutoscalerList is a list of horizontal pod autoscaler objects. message HorizontalPodAutoscalerList { // metadata is the standard list metadata. // +optional
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 21K bytes - Viewed (0) -
common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto
optional string Expression = 1; // Message represents the message displayed when validation fails. The message is required if the Expression contains // line breaks. The message must not contain line breaks. // If unset, the message is "failed rule: {Rule}". // e.g. "must be a URL with the host matching spec.host" // If the Expression contains line breaks. Message is required. // The message must not contain line breaks.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 25.7K bytes - Viewed (0) -
src/main/resources/fess_message_ko.properties
constraints.NotBlank.message = {item}은 미입력입니다. 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 Jul 07 06:11:30 UTC 2018 - 11.1K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/ExecutionError.java
*/ @Deprecated protected ExecutionError(@CheckForNull String message) { super(message); } /** * Creates a new instance with the given detail message and cause. Prefer to provide a * non-nullable {@code cause}, as many users expect to find one. */ public ExecutionError(@CheckForNull String message, @CheckForNull Error cause) { super(message, cause); } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Mar 07 17:52:19 UTC 2024 - 3.8K bytes - Viewed (0)