- Sort Score
- Num 10 results
- Language All
Results 111 - 120 of 230 for handler3 (0.05 seconds)
-
src/main/java/org/codelibs/fess/util/IpAddressUtil.java
return "[" + compressed + "]"; } return address.getHostAddress(); } /** * Builds a URL from protocol, InetAddress, port, and path. * Properly handles IPv6 addresses by wrapping them in brackets. * * @param protocol the protocol (e.g., "http", "https") * @param address the InetAddress for the host * @param port the port number
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 06 08:31:03 GMT 2025 - 9.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessStandardTransformer.java
import org.codelibs.fess.util.ComponentUtil; import jakarta.annotation.PostConstruct; /** * Standard transformer implementation for the Fess search engine. * This transformer handles document transformation and content extraction using * the standard Fess file transformation process with support for various content types. * * <p>It extends AbstractFessFileTransformer to provide file-specific transformation
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 3.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java
*/ protected void registerRolesAndLabels(final RenderData data) { RenderDataUtil.register(data, "roleTypeItems", roleTypeService.getRoleTypeList()); } /** * Register handler names. * @param data The render data. */ protected void registerHandlerNames(final RenderData data) { final String[] dataStoreNames = dataStoreFactory.getDataStoreNames();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 21K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/CurlHelperTest.java
} setupMockConfig("localhost:9200", "", "", invalidCertFile.getAbsolutePath()); curlHelper.init(); // Should handle invalid certificate gracefully SSLSocketFactory sslSocketFactory = getSSLSocketFactory(curlHelper); assertNull(sslSocketFactory); } catch (IOException e) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 10.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/helper/FessMimeTypeHelper.java
import jakarta.annotation.PostConstruct; /** * FessMimeTypeHelper extends MimeTypeHelperImpl to provide Fess-specific * MIME type detection configuration. It reads extension-to-MIME-type override * mappings from FessConfig to handle cases where content-based detection * produces incorrect results (e.g., SQL files starting with REM comments * being misdetected as batch files). */ public class FessMimeTypeHelper extends MimeTypeHelperImpl {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jan 24 09:06:33 GMT 2026 - 2.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/go/GoAction.java
// Search Execute // ============== /** * Handles document redirection requests. * Validates the document ID, logs click events if enabled, and redirects * to the target URL or serves file content directly if configured. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 11 09:47:03 GMT 2025 - 9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/pager/ReqHeaderPager.java
* Default constructor for ReqHeaderPager. * Initializes the pager with default values for page size and current page number. */ public ReqHeaderPager() { // Default constructor - initialization handled by field defaults and clear() method } /** * Clears all pager data and resets to default values. * This method resets pagination state and clears all request header fields. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 7.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/synonym/SynonymItemTest.java
assertEquals("q", outputs2[1]); assertEquals("r", outputs2[2]); } @Test public void test_defensiveCopy_nullArrays() { // Test that defensive copy handles null arrays correctly SynonymItem item1 = new SynonymItem(1, new String[] { "a" }, new String[] { "x" }); // Set to null item1.setNewInputs(null); item1.setNewOutputs(null);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 8K bytes - Click Count (1) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessListedClassificationProviderTest.java
// expected assertTrue(e.getMessage().contains("Not found the classification: null")); } catch (NullPointerException e) { // Also acceptable if null is not handled explicitly } } @Test public void test_findOnMainSchema_alwaysReturnsNull() { // Since the implementation always returns null (no DBFlute classification used),Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 7.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/saml/SamlAuthenticatorTest.java
systemProperties.remove("saml.sp.base.url"); } } @Test public void test_buildDefaultUrl_withTrailingSlash() throws Exception { // Test that trailing slash is handled correctly SamlAuthenticator authenticator = new SamlAuthenticator(); DynamicProperties systemProperties = ComponentUtil.getSystemProperties(); try {
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)