- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 877 for pause (0.02 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainFactoryException.java
public ToolchainFactoryException(String message) { super(message); } public ToolchainFactoryException(String message, Throwable cause) { super(message, cause); } public ToolchainFactoryException(Throwable cause) { super(cause); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Feb 11 12:33:57 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/CommandExecutionException.java
*/ public CommandExecutionException(final String message) { super(message); } /** * Constructor with error message and cause. * @param message The error message describing the command execution failure. * @param e The cause of the exception. */ public CommandExecutionException(final String message, final Throwable e) { super(message, e); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/MultiChannelManagerBasicTest.java
}); // Check that the root cause is CIFSException assertTrue(exception instanceof java.lang.reflect.InvocationTargetException); Throwable cause = ((java.lang.reflect.InvocationTargetException) exception).getCause(); assertTrue(cause instanceof CIFSException); assertTrue(cause.getMessage().contains("Failed to create multi-channel transport")); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcException.java
*/ public DcerpcException(final String msg) { super(msg); } /** * Constructs a DcerpcException with the specified message and root cause * * @param msg the error message * @param rootCause the underlying cause of this exception */ public DcerpcException(final String msg, final Throwable rootCause) { super(msg); this.rootCause = rootCause; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0) -
android-test/src/test/kotlin/okhttp/android/test/NonRobolectricOkHttpClientTest.kt
* See the License for the specific language governing permissions and * limitations under the License. * */ package okhttp.android.test import assertk.all import assertk.assertFailure import assertk.assertions.cause import assertk.assertions.hasClass import assertk.assertions.hasMessage import assertk.assertions.isNotNull import java.io.IOException import org.junit.Test import org.junit.runner.RunWith
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 28 07:33:49 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbException.java
*/ public SmbException() { } /** * Constructs an SmbException with the specified error code and root cause * * @param errcode the SMB error code * @param rootCause the underlying cause of this exception */ public SmbException(final int errcode, final Throwable rootCause) { super(getMessageByCode(errcode), rootCause);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/NoSuchFieldRuntimeException.java
* Target class * @param fieldName * Field name * @param cause * The cause of the exception */ public NoSuchFieldRuntimeException(final Class<?> targetClass, final String fieldName, final Throwable cause) { super("ECL0070", asArray(targetClass.getName(), fieldName), cause); this.targetClass = targetClass; this.fieldName = fieldName; } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/parser/QueryParser.java
* The query is processed through the filter chain before being parsed. * * @param query the query string to parse * @return the parsed Query object * @throws QueryParseException if the query cannot be parsed */ public Query parse(final String query) { return filterChain.parse(query); } /** * Creates a new Lucene query parser with the current configuration.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/query/StoredLtrQueryBuilder.java
/** The name of the query. */ public static final String NAME = "sltr"; /** The parse field for the model name. */ public static final ParseField MODEL_NAME = new ParseField("model"); /** The parse field for the featureset name. */ public static final ParseField FEATURESET_NAME = new ParseField("featureset"); /** The parse field for the store name. */ public static final ParseField STORE_NAME = new ParseField("store");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
import org.codelibs.fess.util.ComponentUtil; import org.dbflute.optional.OptionalEntity; /** * Character mapping file handler for managing character mapping dictionaries. * This class provides functionality to load, parse, and manage character mapping * rules that define how input characters should be transformed to output characters * during text analysis and search processing. * * Character mapping files contain mapping rules in the format:
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.9K bytes - Viewed (0)