- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for shouldn (0.57 sec)
-
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
/** * Character mapping file handler for managing character mapping dictionaries. * This class provides functionality to load, parse, and manage character mapping * rules that define how input characters should be transformed to output characters * during text analysis and search processing. * * Character mapping files contain mapping rules in the format: * input1,input2,... => output */
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 15.3K bytes - Viewed (0) -
README.md
$ unzip target/releases/fess-*.zip $ ./fess-*/bin/fess & Wait for Fess to be ready (this may take up to 60 seconds): $ curl -s "http://localhost:8080/api/v1/health" You should see a JSON response when Fess is ready. #### 3. Clone Test Data Required for SearchApiTests: $ git clone https://github.com/codelibs/fess-testdata.git /tmp/fess-testdataRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 00:28:33 UTC 2025 - 7.8K bytes - Viewed (2) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
throw new IORuntimeException(e); } } /** * Determines if the search parameter cookie should be secure based on configuration and request. * * @param request The HTTP request * @return true if the cookie should have the secure flag set */ protected boolean isSearchParameterCookieSecure(final HttpServletRequest request) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 36.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
/** A map of design JSP file names. */ protected final Map<String, String> designJspFileNameMap = new LinkedHashMap<>(); /** A flag to indicate if the system should be forcefully stopped. */ protected final AtomicBoolean forceStop = new AtomicBoolean(false); /** A cache for language items. */ protected LoadingCache<String, List<Map<String, String>>> langItemsCache;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 08:30:43 UTC 2025 - 36.6K bytes - Viewed (0)