- Sort Score
- Result 10 results
- Languages All
Results 1001 - 1010 of 1,983 for Long (0.05 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/badword/AdminBadwordAction.java
// ============ private static OptionalEntity<BadWord> getEntity(final CreateForm form, final String username, final long currentTime) { switch (form.crudMode) { case CrudMode.CREATE: return OptionalEntity.of(new BadWord()).map(entity -> { entity.setCreatedBy(username);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 18.3K bytes - Viewed (0) -
src/main/java/jcifs/SmbConstants.java
/** * Message is a response from server flag. */ int FLAGS_RESPONSE = 0x80; /** * No flags2 set in SMB header. */ int FLAGS2_NONE = 0x0000; /** * Long file names are supported flag. */ int FLAGS2_LONG_FILENAMES = 0x0001; /** * Extended attributes are supported flag. */ int FLAGS2_EXTENDED_ATTRIBUTES = 0x0002; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/ResultOffsetExceededException.java
package org.codelibs.fess.exception; /** * This exception is thrown when the requested result offset exceeds the limit. */ public class ResultOffsetExceededException extends FessSystemException { private static final long serialVersionUID = 1L; /** * Constructor. * @param message The exception message. */ public ResultOffsetExceededException(final String message) { super(message); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ClIndexOutOfBoundsException.java
/** * Exception that wraps {@link IndexOutOfBoundsException}. * * @author wyukawa */ public class ClIndexOutOfBoundsException extends IndexOutOfBoundsException { private static final long serialVersionUID = -824874776607593608L; /** * Creates a {@link ClIndexOutOfBoundsException}. */ public ClIndexOutOfBoundsException() { super(); } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 1.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/usability/plugin/ExpressionDocumentationException.java
* under the License. */ package org.apache.maven.usability.plugin; /** * ExpressionDocumentationException */ @Deprecated public class ExpressionDocumentationException extends Exception { static final long serialVersionUID = 1; public ExpressionDocumentationException(String message, Throwable cause) { super(message, cause); } public ExpressionDocumentationException(String message) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 52.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
} catch (InterruptedException e) { // Ignore } }); testThread.start(); long startTime = System.currentTimeMillis(); method.invoke(crawler, testThread); long endTime = System.currentTimeMillis(); assertTrue("Thread should have been joined", endTime - startTime >= 100); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 30.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/LdapConfigurationException.java
*/ package org.codelibs.fess.exception; /** * An exception thrown when LDAP configuration is invalid. */ public class LdapConfigurationException extends FessSystemException { private static final long serialVersionUID = 1L; /** * Constructs a new LDAP configuration exception with the specified detail message. * * @param message The detail message. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ThemeExceptionTest.java
assertEquals(message, exception.getMessage()); } public void test_veryLongMessage() { // Test with very long message StringBuilder sb = new StringBuilder(); for (int i = 0; i < 1000; i++) { sb.append("Long message part ").append(i).append(" "); } String longMessage = sb.toString();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/ScriptEngineException.java
*/ package org.codelibs.fess.exception; /** * This exception is thrown when a script engine error occurs. */ public class ScriptEngineException extends FessSystemException { private static final long serialVersionUID = 1L; /** * Constructor. * @param message The exception message. */ public ScriptEngineException(final String message) { super(message); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0)