Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 123 for checkOn (0.05 seconds)

  1. src/test/java/org/codelibs/fess/helper/IntervalControlHelperTest.java

            // For same-day rules, it should check the day directly
            assertTrue(rule.isTarget(12, 30, 8)); // Should be treated as day 1 (Sunday)
    
            // Test with cross-midnight rule
            IntervalRule crossRule = new IntervalRule("22:00", "02:00", "1", 1000); // Sunday only
            // For cross-midnight rule, when checking early morning hours (1:30), it checks day+1
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 13.6K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

            }
        }
    
        /**
         * Initializes the HTTP client and starts availability checking.
         * Should be called from subclass init() methods.
         */
        public void init() {
            if (!getName().equals(getLlmType())) {
                if (logger.isDebugEnabled()) {
                    logger.debug("Skipping availability check. llmType={}, name={}", getLlmType(), getName());
                }
                return;
            }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            }
        }
    
        /**
         * Checks if the application has reached its end-of-life.
         *
         * @return true if the application is EOL, false otherwise.
         */
        protected boolean isEoled() {
            return getCurrentTimeAsLong() > eolTime;
        }
    
        /**
         * Checks if a permission string is a user permission.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 43.2K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/helper/ProtocolHelper.java

            fileProtocols[fileProtocols.length - 1] = prefix;
        }
    
        /**
         * Checks if the given URL is a file path protocol that requires directory and permission handling.
         * Used for incremental crawling directory detection and file permission processing.
         *
         * @param url the URL to check
         * @return true if the URL uses a file path protocol (smb, smb1, file, ftp, s3, gcs)
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 13:59:25 GMT 2026
    - 12.4K bytes
    - Click Count (1)
  5. src/main/webapp/js/chat.js

            return id;
        }
    
        /**
         * Set a filter value based on checked state (add if checked, remove if unchecked)
         */
        function setFilter(array, value, checked) {
            var index = array.indexOf(value);
            if (checked && index === -1) {
                array.push(value);
            } else if (!checked && index !== -1) {
                array.splice(index, 1);
            }
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 30.6K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/mylasta/direction/FessConfigImpl.java

            }
        }
    
        @Override
        protected ObjectiveProperties newObjectiveProperties(final String resourcePath, final PropertyFilter propertyFilter) {
            return new ObjectiveProperties(resourcePath) { // for e.g. checking existence and filtering value
                Cache<String, String> cache = CacheBuilder.newBuilder().build();
    
                @Override
                public String get(final String propertyKey) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 05 09:31:58 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/log/AdminLogAction.java

                }
            }
            return logFileItems;
        }
    
        /**
         * Checks if the given filename is a log file.
         *
         * @param name the filename to check
         * @return true if the filename ends with .log or .log.gz, false otherwise
         */
        public static boolean isLogFilename(final String name) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 23 23:57:26 GMT 2026
    - 5.8K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java

                logger.warn("Failed to get active instances.", e);
            }
            return instances;
        }
    
        /**
         * Checks whether the specified instance is currently active.
         *
         * @param targetInstanceId the instance ID to check.
         * @return {@code true} if the instance is active.
         */
        public boolean isInstanceActive(final String targetInstanceId) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 33.3K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/chat/ChatSessionManager.java

                        .collect(Collectors.toList())
                        .forEach(sessionCache::remove);
            }
        }
    
        /**
         * Checks if a session is expired.
         *
         * @param session the session to check
         * @return true if the session is expired
         */
        protected boolean isExpired(final ChatSession session) {
            final int timeoutMinutes = getSessionTimeoutMinutes();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 13:27:59 GMT 2026
    - 13.7K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/util/ComponentUtil.java

            }
            return componentMap.containsKey(componentKey);
        }
    
        /**
         * Checks if query parser is available.
         * @return True if query parser is available, false otherwise.
         */
        public static boolean hasQueryParser() {
            return hasComponent(QUERY_PARSER);
        }
    
        /**
         * Checks if view helper is available.
         * @return True if view helper is available, false otherwise.
         */
    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)
Back to Top