- Sort Score
- Num 10 results
- Language All
Results 61 - 70 of 483 for thar (0.01 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/exception/ThumbnailGenerationExceptionTest.java
assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); } @Test public void test_instanceOfFessSystemException() { // Test that ThumbnailGenerationException is an instance of FessSystemException ThumbnailGenerationException exception = new ThumbnailGenerationException("Test"); assertTrue(exception instanceof FessSystemException);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 10.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/FessUserTest.java
} @Test public void test_isEditable_custom() { // Test custom implementation that returns true FessUser user = new TestEditableFessUser("testuser", true); assertTrue(user.isEditable()); // Test custom implementation that returns false user = new TestEditableFessUser("testuser", false); assertFalse(user.isEditable()); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 11.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/saml/SamlAuthenticatorTest.java
SamlAuthenticator authenticator = new SamlAuthenticator(); assertNotNull(authenticator); } @Test public void test_defaultSettings_emailAddressCorrect() throws Exception { // Test that the email typo fix is correct: support@@example.com -> ******@****.*** Map<String, Object> defaultSettings = createDefaultSettings(); // Verify email addresses are correctly formatted (no double @)
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 18.4K bytes - Click Count (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt
* * WARNING: Every val in here must not change for they same daemon. If it does, changes will go undetected, * since this whole object is kept in the classloader between builds. * Anything that changes must be in a val with a get() method that recomputes the value each time. */ object BuildEnvironment { /** * A selection of environment variables injected into the environment by the `codeql-env.sh` script. */
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Mar 25 08:51:12 GMT 2026 - 4.9K bytes - Click Count (1) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainFinallyHookTest.java
curtainFinallyHook.hook(assistantDirector); // Verify that the method completes without errors assertTrue(true); // Method completed successfully } // Test hook method when MultiThreadedHttpConnectionManager class is not available @Test public void test_hook_classNotFound() { // Create a custom hook that simulates class not found scenario
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 8.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/rule/CrawlerRuleMimeTypePatternTest.java
import org.codelibs.fess.unit.UnitFessTestCase; import org.junit.jupiter.api.Test; /** * Test class for MIME type patterns defined in crawler/rule.xml. * Verifies that regex patterns correctly match MIME types with special characters. * * This test ensures that the + character in MIME types like application/xhtml+xml * is properly escaped in regex patterns to match literally. */
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Feb 04 14:24:39 GMT 2026 - 8.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/query/QueryFieldConfigSetBasedLookupTest.java
} @Override protected void tearDown(TestInfo testInfo) throws Exception { ComponentUtil.setFessConfig(null); super.tearDown(testInfo); } /** * Test that setting search fields creates both array and Set. */ @Test public void test_setSearchFields_createsSet() { String[] fields = { "field1", "field2", "field3" };Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 19.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorErrorHandlingTest.java
*/ public class RankFusionProcessorErrorHandlingTest extends UnitFessTestCase { private static final String ID_FIELD = "_id"; /** * Test handling of searcher that throws RuntimeException. */ @Test public void test_searcherThrowsRuntimeException() throws Exception { try (RankFusionProcessor processor = new RankFusionProcessor()) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 14.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/SystemUtilTest.java
public void test_constructor_isPrivate() { // Verify that SystemUtil has a private constructor (utility class pattern) try { Constructor<SystemUtil> constructor = SystemUtil.class.getDeclaredConstructor(); assertTrue("Constructor should be private", java.lang.reflect.Modifier.isPrivate(constructor.getModifiers())); // Test that constructor is accessible when made accessible
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 17.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java
/** * Represents a single character mapping rule that defines how input characters are mapped to output characters * for text analysis and search processing. This class is used in character mapping dictionaries to transform * text during indexing and search operations. * * <p>Each mapping item consists of one or more input character sequences that are mapped to a single output
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 7.9K bytes - Click Count (0)