- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 296 for occurred (0.09 sec)
-
src/main/resources/CLMessages.properties
ECL0066=NamingException occurred, because {0} ECL0067=NoSuchAlgorithmException occurred, because {0} ECL0068=InvalidKeyException occurred, because {0} ECL0069=NoSuchPaddingException occurred, because {0} ECL0070=Field({1}) of class({0}) not found ECL0071=SQLException(Message=[{0}], ErrorCode={1}, SQLState={2}) occurred ECL0072=SQLException(SQL=[{0}], Message=[{1}], ErrorCode={2}, SQLState={3}) occurred ECL0091=Illegal URL({0})
Registered: 2025-05-24 08:58 - Last Modified: 2024-03-07 01:58 - 3.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/cache/RequestResult.java
*/ REP result, /** * Any error that occurred during processing; null if the request was successful */ Throwable error) { /** * Determines if the request was processed successfully. * * @return true if no error occurred during processing (error is null), false otherwise */
Registered: 2025-05-24 08:56 - Last Modified: 2025-02-07 00:45 - 2.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolverResult.java
* that occurred during resolution, the available versions, and their source repositories. * * <p>The versions returned by this interface are guaranteed to be in ascending order.</p> * * @since 4.0.0 */ @Experimental public interface VersionRangeResolverResult extends Result<VersionRangeResolverRequest> { /** * Gets the exceptions that occurred while resolving the version range. *
Registered: 2025-05-24 08:56 - Last Modified: 2025-01-29 08:17 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/exception/SuggesterException.java
* to create an exception instance with a message, a cause, or both. * * <p>Usage examples:</p> * <pre> * throw new SuggesterException("An error occurred"); * throw new SuggesterException(new IOException("IO error")); * throw new SuggesterException("An error occurred", new IOException("IO error")); * </pre> * * @see RuntimeException */ public class SuggesterException extends RuntimeException {
Registered: 2025-06-06 09:08 - Last Modified: 2025-03-15 06:51 - 1.5K bytes - Viewed (0) -
guava/src/com/google/common/cache/RemovalListener.java
package com.google.common.cache; import com.google.common.annotations.GwtCompatible; /** * An object that can receive a notification when an entry is removed from a cache. The removal * resulting in notification could have occurred to an entry being manually removed or replaced, or * due to eviction resulting from timed expiration, exceeding a maximum size, or garbage collection. *
Registered: 2025-05-30 12:43 - Last Modified: 2024-12-21 03:10 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/CurlResponse.java
/** * Sets the exception that occurred while accessing the content. * * @param e the exception to set. */ public void setContentException(final Exception e) { contentException = e; } /** * Gets the exception that occurred while accessing the content, if any. * * @return the exception, or null if no exception occurred. */
Registered: 2025-05-24 08:59 - Last Modified: 2025-05-10 01:44 - 6.7K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/RemovalListener.java
package com.google.common.cache; import com.google.common.annotations.GwtCompatible; /** * An object that can receive a notification when an entry is removed from a cache. The removal * resulting in notification could have occurred to an entry being manually removed or replaced, or * due to eviction resulting from timed expiration, exceeding a maximum size, or garbage collection. *
Registered: 2025-05-30 12:43 - Last Modified: 2024-12-21 03:10 - 2K bytes - Viewed (0) -
cmd/namespace-lock.go
} } // dsync's distributed lock instance. type distLockInstance struct { rwMutex *dsync.DRWMutex opsID string } // Lock - block until write lock is taken or timeout has occurred. func (di *distLockInstance) GetLock(ctx context.Context, timeout *dynamicTimeout) (LockContext, error) { lockSource := getSource(2) start := UTCNow() newCtx, cancel := context.WithCancel(ctx)
Registered: 2025-05-25 19:28 - Last Modified: 2024-09-29 22:40 - 9.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverResult.java
*/ @Experimental public interface DependencyResolverResult extends Result<DependencyResolverRequest> { /** * Gets the exceptions that occurred while building the dependency graph. * * @return the exceptions that occurred, never {@code null} */ @Nonnull List<Exception> getExceptions(); /** * Gets the root node of the dependency graph. *
Registered: 2025-05-24 08:56 - Last Modified: 2025-03-05 14:29 - 6.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/MultipleCrawlingAccessException.java
*/ package org.codelibs.fess.crawler.exception; import java.io.PrintStream; import java.io.PrintWriter; /** * An exception that indicates multiple crawling access exceptions occurred. * This exception holds an array of Throwable objects representing the individual causes. * It extends CrawlingAccessException and provides methods to print the stack traces of all causes. * */
Registered: 2025-05-25 03:50 - Last Modified: 2025-03-15 06:52 - 2.1K bytes - Viewed (0)