- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 88 for found (0.02 sec)
-
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
* @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getSearchEngineUsername(); /** * Get the value for the key 'search_engine.username' as {@link Integer}. <br> * The value is, e.g. <br> * comment: Username for authenticating to the search engine. * @return The value of found property. (NotNull: if not found, exception but basically no way)Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 525.7K bytes - Viewed (2) -
src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java
* @return The value of found property. (NotNull: if not found, exception) * @throws ConfigPropertyNotFoundException When the property is not found. */ String get(String propertyKey); /** * Is the property true? * @param propertyKey The key of the property which is boolean type. (NotNull) * @return The determination, true or false. (if not found, exception)Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/cors/CorsHandlerFactory.java
handerMap.put(origin, handler); } /** * Gets the CORS handler for the specified origin. * If no specific handler is found, returns the wildcard handler. * * @param origin the origin to look up * @return the CORS handler for the origin, or null if none found */ public CorsHandler get(final String origin) { final CorsHandler handler = handerMap.get(origin); if (handler != null) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 13.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/UserService.java
*/ public OptionalEntity<User> getUser(final String id) { return userBhv.selectByPK(id).map(u -> ComponentUtil.getAuthenticationManager().load(u)); } /** * Retrieves a user by their username. * * @param username the username to search for * @return an OptionalEntity containing the user if found */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 02:07:40 UTC 2025 - 9.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/DataServiceImpl.java
*/ @Override public void update(final AccessResultImpl<Long> accessResult) { final Map<String, AccessResultImpl<Long>> arMap = dataHelper.getAccessResultMap(accessResult.getSessionId()); if (!arMap.containsKey(accessResult.getUrl())) { throw new CrawlerSystemException(accessResult.getUrl() + " is not found."); }Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
* * @param configId the configuration ID to get the pipeline for * @return an OptionalThing containing the pipeline string if found, or empty if not found or blank */ public OptionalThing<String> getPipeline(final String configId) { final CrawlingConfig config = getCrawlingConfig(configId); if (config == null) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 19.5K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java
} } /** * Retrieves a setting value by key. * @param key The key of the setting. * @return The setting value, or null if not found. */ public Object get(final String key) { final GetResponse getResponse = client.prepareGet().setIndex(settingsIndexName).setId(settingsId).execute().actionGet(getSearchTimeout());Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 20.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/DataStoreFactory.java
* and class simple names. * * @param name the name of the data store to retrieve, may be null * @return the data store instance if found, null if not found or name is null */ public DataStore getDataStore(final String name) { if (name == null) { return null; } return dataStoreMap.get(name.toLowerCase(Locale.ROOT));Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ProcessHelper.java
/** * Destroys the process associated with the given session ID. * * @param sessionId unique identifier for the process session * @return exit code of the destroyed process, or -1 if the process was not found */ public synchronized int destroyProcess(final String sessionId) { final JobProcess jobProcess = runningProcessMap.remove(sessionId); return destroyProcess(sessionId, jobProcess); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 06:54:47 UTC 2025 - 10.9K bytes - Viewed (0)