- Sort Score
- Result 10 results
- Languages All
Results 391 - 400 of 420 for instantiate (0.09 sec)
-
src/test/java/org/codelibs/fess/dict/kuromoji/KuromojiCreatorTest.java
assertNotNull("test"); assertEquals(1, 1); } // Test placeholder for future implementation public void test_placeholder() { // This test verifies the test class can be instantiated and run String testValue = "test"; assertNotNull(testValue); assertEquals("test", testValue); } // Additional test for coverage public void test_additionalCoverage() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 1.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/synonym/SynonymCreatorTest.java
assertNotNull("test"); assertEquals(1, 1); } // Test placeholder for future implementation public void test_placeholder() { // This test verifies the test class can be instantiated and run String testValue = "test"; assertNotNull(testValue); assertEquals("test", testValue); } // Additional test for coverage public void test_additionalCoverage() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/constants/SuggestConstants.java
*/ package org.codelibs.fess.suggest.constants; /** * This class contains constants used in the Fess Suggest module. * It is a utility class and should not be instantiated. */ public final class SuggestConstants { // Private constructor to prevent instantiation private SuggestConstants() { } /** An empty string constant. */
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 1.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/CrawlingParameterUtil.java
/** * Utility class for managing crawling parameters using ThreadLocal variables. * This class provides methods to set and get various parameters related to the crawling process. * * <p>This class is final and cannot be instantiated.</p> * * <p>The following parameters are managed:</p> * <ul> * <li>{@link UrlQueue} - The queue of URLs to be crawled.</li> * <li>{@link CrawlerContext} - The context of the current crawling process.</li>
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/Base64.java
*/ public class Base64 { /** * Private constructor to prevent instantiation of this utility class. */ private Base64() { // Utility class - not instantiable } private static final String ALPHABET = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /** * Base-64 encodes the supplied block of data. Line wrapping is not
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ServletRuntimeExceptionTest.java
} } public void test_serialization() { // Test that the serialVersionUID is properly defined // This test verifies that the class can be instantiated and has the serial version UID ServletException servletException = new ServletException("Serialization test"); ServletRuntimeException runtimeException = new ServletRuntimeException(servletException);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 5.8K bytes - Viewed (0) -
cmd/warm-backend.go
} // remoteVersionID represents the version id of an object in the remote tier. // Its usage is remote tier cloud implementation specific. type remoteVersionID string // newWarmBackend instantiates the tier type specific WarmBackend, runs // checkWarmBackend on it. func newWarmBackend(ctx context.Context, tier madmin.TierConfig, probe bool) (d WarmBackend, err error) { switch tier.Type { case madmin.S3:
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Oct 31 22:10:24 UTC 2024 - 4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/constants/FieldNames.java
* <li>{@link #ANALYZER_SETTINGS_CONTENTS_READING_ANALYZER} - The contents reading analyzer settings field.</li> * </ul> * * This class cannot be instantiated. */ public final class FieldNames { /** The unique identifier field. */ public static final String ID = "_id"; /** The text content field. */ public static final String TEXT = "text";
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 4.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/XmlUtil.java
* * This class provides methods to escape special characters in XML strings, * strip invalid XML characters, and parse XML content into a map of data. * * <p> * The class is final and cannot be instantiated. * </p> * * <h2>Methods:</h2> * <ul> * <li>{@link #escapeXml(String)}: Escapes special characters in an XML string.</li>
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/BufferCache.java
*/ public class BufferCache { /** * Private constructor to prevent instantiation of this utility class. */ private BufferCache() { // Utility class - not instantiable } private static final int MAX_BUFFERS = Config.getInt("jcifs.smb1.smb.maxBuffers", 16); private static final int MAX_BUFFER_SIZE = 0x100000; // 1MB maximum
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 4.2K bytes - Viewed (0)