- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 618 for pause (0.03 sec)
-
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/app/service/SearchLogService.java
} if (values.length > 1) { cb.query().setUpdatedAt_LessEqual(LocalDateTime.parse(values[1], formatter)); } } catch (final Exception e) { if (logger.isDebugEnabled()) { logger.debug("Failed to parse {}", pager.requestedTimeRange, e); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 32.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/ScriptEngineException.java
super(message); } /** * Constructor. * @param message The exception message. * @param cause The cause of the exception. */ public ScriptEngineException(final String message, final Throwable cause) { super(message, cause); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SMBSignatureValidationException.java
*/ public SMBSignatureValidationException() { } /** * Constructs an SMB signature validation exception with message and cause. * * @param msg the detail message describing the validation failure * @param rootCause the underlying cause of the validation failure */ public SMBSignatureValidationException(final String msg, final Throwable rootCause) { super(msg, rootCause); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java
StringBuilder buf = new StringBuilder(); Exception cause = new IllegalArgumentException("Root cause"); Exception exception = new RuntimeException("Wrapper exception", cause); monitorTarget.appendException(buf, exception); assertTrue(buf.toString().contains("Wrapper exception")); assertTrue(buf.toString().contains("Root cause")); assertTrue(buf.toString().contains("IllegalArgumentException"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/testers/TestExceptions.java
static final class SomeUncheckedException extends RuntimeException {} static final class SomeChainingException extends RuntimeException { public SomeChainingException(Throwable cause) { super(cause); } } private TestExceptions() {}
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 1.3K 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) -
src/main/resources/fess_label_fr.properties
labels.suggestWord=Suggérer un mot labels.targetLabel=Étiquette labels.term=Terme labels.fields=Champs labels.ex_q=Requête étendue labels.oldPassword=Mot de passe actuel labels.newPassword=Nouveau mot de passe labels.confirmNewPassword=Nouveau mot de passe (confirmer) labels.menu_system=Système labels.menu_wizard=Assistant labels.menu_crawl_config=Général labels.menu_scheduler_config=Planificateur
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 45.6K 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/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)