- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for internalId (1.52 sec)
-
src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java
* comment: Does it enable the Framework internal debug? (true only when emergency) * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getFrameworkDebug(); /** * Is the property for the key 'framework.debug' true? <br> * The value is, e.g. false <br> * comment: Does it enable the Framework internal debug? (true only when emergency)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/app/web/base/login/EntraIdCredential.java
} return permissions; } @Override public boolean refresh() { // MSAL4J handles token refresh internally through silent authentication // Check if token is still valid by comparing absolute timestamps final long tokenExpiryTime = authResult.expiresOnDate().getTime(); // milliseconds since epochRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 7.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/LhaExtractor.java
buf.append('\n'); } catch (final Exception e) { if (logger.isDebugEnabled()) { logger.debug("Exception in an internal extractor.", e); } } finally { CloseableUtil.closeQuietly(is); } } }
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 12:19:14 UTC 2025 - 5.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/SuggesterRefactoringTest.java
*/ @Test public void testResourceLoading_viaIndexCreation() throws Exception { final Suggester suggester = Suggester.builder().build(client, "resource-test"); // createIndexIfNothing internally calls getDefaultMappings and getDefaultIndexSettings boolean created = suggester.createIndexIfNothing(); assertTrue("Index should be created successfully", created); // Verify index existsRegistered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 13.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PdfExtractor.java
writer.write('\n'); } catch (final Exception e) { if (logger.isDebugEnabled()) { logger.debug("Exception in an internal extractor.", e); } } } } } /** * Extracts text from embedded documents in the PDF. * @param document the PDF document
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 12:19:14 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
throw new GsaConfigException("Failed to parse XML file.", e); } } /** * SAX event handler called at the beginning of document parsing. * Initializes internal data structures for processing the GSA configuration. * * @throws SAXException if a SAX error occurs during initialization */ @Override public void startDocument() throws SAXException {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 21.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/StringUtil.java
* <p> * Note: This method no longer uses internal JDK APIs for safety and compatibility. * It now uses the standard String constructor. * </p> * * @param chars * the char array * @return a new String, or null if the input is null * @deprecated This method originally used internal JDK APIs (sun.misc.SharedSecrets) forRegistered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 21.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java
saveInfo(messages -> messages.addSuccessCreateCrawlingConfigAtWizard(GLOBAL, name)); return redirectWith(getClass(), moreUrl("startCrawlingForm")); } /** * Internal method to create crawling configuration based on form data. * Determines whether to create a web or file crawler configuration. * * @param form the form containing crawling configuration data
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 16.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java
final String lang) { return analyzeTextInternal(analyzer, field, text, lang, true); } /** * Internal method for analyzing text with optional reading support. * @param analyzer Analyzer * @param field Field * @param text Text * @param lang LanguageRegistered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 14.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
} // favorite if (fessConfig.isUserFavorite()) { ComponentUtil.getUserInfoHelper().storeQueryId(queryId, documentItems); } } /** * Internal search method that executes the actual search query. * * This method performs the search using the rank fusion processor and may retry * with OR operator if the hit count is below the configured minimum threshold.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 36.3K bytes - Viewed (0)