- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 313 for dangling (0.73 sec)
-
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
private static final Logger logger = LogManager.getLogger(SuggestHelper.class); /** The separator for text content. */ protected static final String TEXT_SEP = " "; /** The suggester instance for handling suggest operations. */ protected Suggester suggester; /** The Fess configuration for accessing system settings. */ protected FessConfig fessConfig; /** The set of field names for content. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/filter/CorsFilter.java
import jakarta.servlet.ServletRequest; import jakarta.servlet.ServletResponse; import jakarta.servlet.http.HttpServletRequest; import jakarta.servlet.http.HttpServletResponse; /** * Filter for handling Cross-Origin Resource Sharing (CORS) requests. * Processes CORS headers and handles preflight OPTIONS requests. */ public class CorsFilter implements Filter { /** * Creates a new instance of CorsFilter.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryManager.java
import org.codelibs.fess.util.ComponentUtil; import org.codelibs.opensearch.runner.net.OpenSearchCurl; import org.dbflute.optional.OptionalEntity; import jakarta.annotation.PostConstruct; /** * Manager class for handling dictionary files in the Fess search system. * This class provides functionality to retrieve, store, and manage various * dictionary files such as synonyms, kuromoji, protwords, and stopwords.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailAction.java
import org.lastaflute.web.Execute; import org.lastaflute.web.response.ActionResponse; import jakarta.annotation.Resource; import jakarta.servlet.http.HttpServletResponse; /** * Action class for handling thumbnail image requests. * Serves thumbnail images for documents in the search results. */ public class ThumbnailAction extends FessSearchAction { /** * Default constructor for ThumbnailAction. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/WebApiUtil.java
import org.lastaflute.web.util.LaRequestUtil; /** * Utility class for web API operations. * Provides functionality for setting and retrieving objects from request attributes, * error handling, and validation in web API context. */ public final class WebApiUtil { /** * Request attribute key for storing web API exceptions. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.2K bytes - Viewed (0) -
dbflute_fess/dfprop/littleAdjustmentMap.dfprop
# - - - - - - - - - -/ # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # o classificationUndefinedHandlingType: (NotRequired - Default LOGGING) # The handling type when undefined classification is found. # # EXCEPTION - throws exception when found # LOGGING - logging only when found (exception if ReplaceSchema) # ALLOWED - no action #
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 25 06:04:16 UTC 2015 - 8.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2Request.java
import jcifs.internal.CommonServerMessageBlockResponse; import jcifs.internal.Request; /** * Base class for SMB2/SMB3 request messages. * * This abstract class provides common functionality for handling * request messages in the SMB2/SMB3 protocol. * * @author mbechler * @param <T> * response type */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/SsoProcessException.java
* * This exception is used to indicate errors that occur during the execution * of SSO authentication and authorization processes. It extends FessSystemException * to provide consistent error handling within the Fess system for SSO-related * processing failures such as token validation errors, communication failures * with SSO providers, or configuration issues. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/LeaseManager.java
* @param newState new lease state */ public void handleLeaseBreak(Smb2LeaseKey key, int newState) { LeaseEntry entry = leases.get(key); if (entry != null) { log.info("Handling lease break for {} from state 0x{} to 0x{}", key, Integer.toHexString(entry.getLeaseState()), Integer.toHexString(newState)); entry.setBreaking(true);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 18.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
* * <p>Key features include:</p> * <ul> * <li>Incremental crawling support with last-modified timestamp checking</li> * <li>Document expiration handling</li> * <li>Child URL extraction and queueing</li> * <li>Integration with Fess configuration and permission systems</li> * <li>Client selection based on URL patterns</li> * </ul> * * @see CrawlerThread
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.1K bytes - Viewed (0)