- Sort Score
- Num 10 results
- Language All
Results 91 - 100 of 2,015 for TO (0.01 seconds)
-
src/main/java/org/codelibs/fess/helper/PermissionHelper.java
/** Prefix used to identify group-based permissions */ protected String groupPrefix = "{group}"; /** Prefix used to identify user-based permissions */ protected String userPrefix = "{user}"; /** Prefix used to identify allow permissions */ protected String allowPrefix = "(allow)"; /** Prefix used to identify deny permissions */ protected String denyPrefix = "(deny)";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 13 05:54:52 GMT 2025 - 15.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/JobExecutor.java
* Initiates shutdown of the job executor. * This method notifies the shutdown listener to perform cleanup operations. */ public void shutdown() { shutdownListener.onShutdown(); } /** * Adds a shutdown listener to be notified when the executor is shutting down. * * @param listener the shutdown listener to add */ public void addShutdownListener(final ShutdownListener listener) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/DictionaryManager.java
/** * 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. * It coordinates with DictionaryCreator instances to handle different * dictionary types and manages file synchronization through ConfigSync. * */ public class DictionaryManager {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/DictionaryFile.java
* * @param item the item to insert */ public abstract void insert(T item); /** * Updates an existing dictionary item. * * @param item the item to update */ public abstract void update(T item); /** * Deletes a dictionary item. * * @param item the item to delete */ public abstract void delete(T item);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 11.2K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/common/help.jsp
<dd> Range Queries allow one to match documents whose field(s) values are between the lower and upper bound specified by the Range Query. Range Queries can be inclusive or exclusive of the upper and lower bounds. If you want to find documents whose content_length fields have values between 1000 and 10000, inclusive, you can enter: <pre>content_length:[1000 TO 10000]</pre> If you want to exclude the upper and lower bounds, use "{}".
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 26 14:01:31 GMT 2018 - 2.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java
saveInfo(e.getMessageCode()); } else { logger.warn("Failed to process metadata.", e); saveError(e.getMessageCode()); } return redirect(LoginAction.class); } } /** * Attempts to redirect to the search page with preserved search parameters. *
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 9.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
* Each access result is transformed into a document map and added to the document list. * * @param docList the document list to add processed documents to * @param accessResultList the list to track processed access results for cleanup * @param arList the list of access results to process */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 32.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java
* Currently this method does nothing. * * @param member the member to insert a login record for */ protected void insertLogin(final Object member) { // nothing } /** * Checks if the current user has permission to access the given resource. * For admin actions, verifies that the user has appropriate admin roles orCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 12.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/mail/EsStatusPostcard.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 4.7K bytes - Click Count (0) -
architecture/standards/0005-introduce-core-ui-architecture-module.md
# ADR-0005 - Introduce a UI architecture module to the core platform ## Status - ACCEPTED on 2024-02-07 ## Context The Gradle core platform provides many services to the Gradle platforms and builds logic. One such group of services allows logic to interact with the build user, to provide diagnostics, progress information, prompt for questions, and so on. Currently, these services are part of the core platform runtime architecture module.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 05 12:39:41 GMT 2026 - 1.3K bytes - Click Count (0)