- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 1,627 for message (0.07 sec)
-
common-protos/k8s.io/api/imagepolicy/v1alpha1/generated.proto
} // ImageReviewContainerSpec is a description of a container within the pod creation request. message ImageReviewContainerSpec { // This can be in the form image:tag or image@SHA:012345679abcdef. // +optional optional string image = 1; } // ImageReviewSpec is a description of the pod creation request. message ImageReviewSpec { // Containers is a list of a subset of the information in each container of the Pod being created.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 3.2K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelProblemCollectorRequest.java
this.exception = exception; return this; } public String getMessage() { return message; } public ModelProblemCollectorRequest setMessage(String message) { this.message = message; return this; } public InputLocation getLocation() { return location; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/WebApiException.java
return statusCode; } public WebApiException(final int statusCode, final String message, final Throwable cause) { super(message, cause); this.statusCode = statusCode; } public WebApiException(final int statusCode, final String message) { super(message); this.statusCode = statusCode; } public WebApiException(final int statusCode, final Exception e) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.3K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/UncheckedTimeoutException.java
public UncheckedTimeoutException() {} public UncheckedTimeoutException(@CheckForNull String message) { super(message); } public UncheckedTimeoutException(@CheckForNull Throwable cause) { super(cause); } public UncheckedTimeoutException(@CheckForNull String message, @CheckForNull Throwable cause) { super(message, cause); } private static final long serialVersionUID = 0;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Apr 04 09:45:04 UTC 2023 - 1.4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/RepositoryMetadataResolutionException.java
* */ @Deprecated public class RepositoryMetadataResolutionException extends Exception { public RepositoryMetadataResolutionException(String message) { super(message); } public RepositoryMetadataResolutionException(String message, Exception e) { super(message, e); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/activation/ProfileActivationException.java
private static final long serialVersionUID = -90820222109103638L; public ProfileActivationException(String message, Throwable cause) { super(message, cause); } public ProfileActivationException(String message) { super(message); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/BuildAbort.java
/** * A special throwable used to signal a graceful abort of the build. */ public class BuildAbort extends Error { public BuildAbort(String message) { super(message); } public BuildAbort(String message, Throwable cause) { super(message, cause); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.1K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/AbstractTester.java
* TestCase#assertNull(String, Object)}. * * <p>The {@link TestCase} version (which is from JUnit 3) produces a failure message that does * not include the value of the object. * * @since NEXT */ public static void assertNull(String message, Object object) { assertEquals(message, null, object); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 28 21:41:47 UTC 2024 - 3.4K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/AbstractTester.java
* TestCase#assertNull(String, Object)}. * * <p>The {@link TestCase} version (which is from JUnit 3) produces a failure message that does * not include the value of the object. * * @since NEXT */ public static void assertNull(String message, Object object) { assertEquals(message, null, object); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 28 21:41:47 UTC 2024 - 3.4K bytes - Viewed (0) -
tests/test_tutorial/test_background_tasks/test_tutorial002_an.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Mar 18 12:29:59 UTC 2023 - 571 bytes - Viewed (0)