Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for hasComponent (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/util/ComponentUtil.java

         */
        public static boolean hasQueryParser() {
            return hasComponent(QUERY_PARSER);
        }
    
        /**
         * Checks if view helper is available.
         * @return True if view helper is available, false otherwise.
         */
        public static boolean hasViewHelper() {
            return hasComponent(VIEW_HELPER);
        }
    
        /**
         * Checks if query helper is available.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 30.9K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java

        @PostConstruct
        public void init() {
            buildScriptCache();
            scriptAuditLogEnabled = ComponentUtil.available() && ComponentUtil.getFessConfig().isScriptAuditLogEnabled()
                    && ComponentUtil.hasComponent("activityHelper");
        }
    
        private void buildScriptCache() {
            final Cache<String, CachedScript> oldCache = scriptCache;
            scriptCache = CacheBuilder.newBuilder()
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

            return items;
        }
    
        private boolean isRagSectionVisible() {
            if (!fessConfig.isRagChatEnabled()) {
                return false;
            }
            if (!ComponentUtil.hasComponent("llmClientManager")) {
                return false;
            }
            final LlmClientManager llmClientManager = ComponentUtil.getComponent("llmClientManager");
            return llmClientManager.getClients().length > 0;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 05:54:31 GMT 2026
    - 27.2K bytes
    - Click Count (0)
Back to Top