- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 1,023 for _methods_ (0.11 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/XmlUtil.java
/** * Utility class for XML-related operations. * * 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/org/codelibs/fess/suggest/index/writer/SuggestBulkFileWriter.java
/** * SuggestBulkFileWriter is an implementation of the SuggestWriter interface. * This class is responsible for writing and deleting suggest items in bulk. * * <p>Currently, the methods in this class throw UnsupportedOperationException * as they are not yet implemented.</p> * * @see SuggestWriter */ public class SuggestBulkFileWriter implements SuggestWriter { /**
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 2.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/CustomSizeValidatorTest.java
// Verify required methods exist try { CustomSizeValidator.class.getMethod("initialize", CustomSize.class); CustomSizeValidator.class.getMethod("isValid", CharSequence.class, ConstraintValidatorContext.class); assertTrue("Required methods exist", true); } catch (final NoSuchMethodException e) { fail("Required methods should exist: " + e.getMessage()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 5.2K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/TransWaitNamedPipeResponseTest.java
import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.ValueSource; /** * Unit tests for {@link TransWaitNamedPipeResponse}. * * The implementation contains only trivial methods that return {@code 0} * or construct a string representation. The tests focus on: * * <ul> * <li>happy‑path behaviour</li> * <li>boundary arguments (e.g., negative indices, large values)</li>
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/container/CrawlerContainer.java
*/ package org.codelibs.fess.crawler.container; import org.codelibs.core.lang.StringUtil; /** * The CrawlerContainer interface provides methods for managing components * within a crawler container. It includes methods to retrieve components, * check availability, and destroy the container. Additionally, it provides * a default method to initialize the container with specific protocol handlers. * */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 2.6K bytes - Viewed (0) -
api/maven-api-di/src/main/java/org/apache/maven/api/di/Inject.java
* <p> * This annotation is used to identify injection points where the container should * provide an instance of the requested type. It can be applied to: * <ul> * <li>Constructors</li> * <li>Methods</li> * <li>Fields</li> * </ul> * <p> * Example usage: * <pre> * public class MyService { * private final Repository repository; * * {@literal @}Inject
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jan 30 23:28:59 UTC 2025 - 1.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/IntervalController.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.crawler.interval; /** * The {@code IntervalController} interface defines methods for controlling * the delay intervals in a web crawler. It includes constants representing * different types of processing states and a method to introduce a delay * based on the type of processing. * <p> * Constants:
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 1.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessMessagesTest.java
return field.getLong(null); } catch (Exception e) { fail("Failed to get serialVersionUID: " + e.getMessage()); return -1; } } // Test error message methods without parameters public void test_addErrorsFrontHeader() { String property = "testProperty"; FessMessages result = messages.addErrorsFrontHeader(property); assertNotNull(result);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 28.2K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ParametricNullness.java
* String}. * </ul> * * This is the same behavior as type-variable usages have to Kotlin and to the Checker Framework. * Contrast the method above to: * * <ul> * <li>methods whose return type is a type variable but which can never return {@code null}, * typically because the type forbids nullable type arguments: For example, {@code
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 16:20:21 UTC 2024 - 3.1K bytes - Viewed (0) -
android/guava/src/com/google/common/io/ByteArrayDataInput.java
import java.io.DataInput; import java.io.IOException; import org.jspecify.annotations.Nullable; /** * An extension of {@code DataInput} for reading from in-memory byte arrays; its methods offer * identical functionality but do not throw {@link IOException}. * * <p><b>Warning:</b> The caller is responsible for not attempting to read past the end of the
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Dec 27 20:25:25 UTC 2024 - 2.7K bytes - Viewed (0)