- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 101 for loads (0.74 sec)
-
src/main/java/org/codelibs/core/io/PropertiesUtil.java
*/ public static void load(final Properties props, final Reader reader) { assertArgumentNotNull("props", props); assertArgumentNotNull("reader", reader); try { props.load(reader); } catch (final IOException e) { throw new IORuntimeException(e); } } /**Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 7.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java
* This method is called automatically by the dependency injection framework * and loads the initial related query configurations. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initializing {}", this.getClass().getSimpleName()); } load(); } /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 5.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/SuggesterResourceLoadingTest.java
*/ public class SuggesterResourceLoadingTest { /** * Test that getDefaultMappings correctly loads and returns mapping resource. */ @Test public void testGetDefaultMappings_loadsCorrectly() throws Exception { // Load resource directly to verify it existsRegistered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 9.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/auth/chain/AuthenticationChain.java
*/ boolean changePassword(String username, String password); /** * Loads user information from the authentication chain. * @param user The user template containing search criteria. * @return The loaded user, or null if not found. */ User load(User user);Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/auth/AuthenticationManager.java
} /** * Loads user information by processing through all authentication chains. * @param user The user template containing search criteria. * @return The loaded and enriched user information. */ public User load(final User user) { User u = user; for (final AuthenticationChain chain : chains) { u = chain.load(u); } return u; }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java
Collections.emptyMap(); /** * Initializes the helper. * It loads KeyMatch settings from the database. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initializing {}", this.getClass().getSimpleName()); } load(); } /** * Returns a list of available KeyMatch instances. *
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 10.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientCreator.java
*/ public synchronized void register(final String regex, final String componentName) { clientMap.put(regex, componentName); clientFactoryList.forEach(f -> load(f, regex, componentName)); } /** * Loads a crawler client into the specified crawler client factory. * * @param crawlerClientFactory the factory to which the client will be addedRegistered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/HighlightInfo.java
private int numOfFragments; /** The offset for fragment positioning. */ private int fragmentOffset; /** * Default constructor that initializes highlighting settings from Fess configuration. * Loads default values for type, fragment size, number of fragments, and fragment offset. */ public HighlightInfo() { final FessConfig fessConfig = ComponentUtil.getFessConfig();Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DuplicateHostHelper.java
* Creates a new duplicate host helper instance. */ public DuplicateHostHelper() { // Default constructor } /** * Initializes the duplicate host helper after construction. * Loads duplicate host configurations from the DuplicateHostService. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/AnalyzerSettings.java
} /** * Initializes the analyzer settings. * If the analyzer settings index does not exist, it creates it with default settings and mappings. * It also loads analyzer names and field analyzer mappings. */ public synchronized void init() { try { final IndicesExistsResponse response =Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 26.5K bytes - Viewed (0)