Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 38 for inte (0.02 seconds)

  1. src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java

    import com.fasterxml.jackson.core.type.TypeReference;
    import com.fasterxml.jackson.databind.ObjectMapper;
    
    import jakarta.annotation.PostConstruct;
    import jakarta.annotation.PreDestroy;
    
    /**
     * Helper for inter-instance coordination via OpenSearch.
     * Provides heartbeat registration, distributed operation locking, and event notification
     * to prevent concurrent execution of maintenance operations across multiple Fess instances.
     */
    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)
  2. src/main/java/org/codelibs/fess/job/LogNotificationJob.java

         */
        protected String formatDetails(final List<LogNotificationEvent> events, final int maxDetailsLength, final int maxDisplayEvents,
                final int maxMessageLength) {
            final int totalCount = events.size();
            final int displayCount = Math.min(totalCount, maxDisplayEvents);
            final StringBuilder sb = new StringBuilder();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 9.4K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java

        /** Maximum number of compiled scripts to cache. Configurable via DI. */
        protected int scriptCacheSize = 1000;
    
        /** Maximum length of script text included in warning log messages. Configurable via DI. */
        protected int maxScriptLogLength = 200;
    
        /** Whether to log script execution details for auditing purposes. Configurable via DI. */
    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)
  4. src/main/java/org/codelibs/fess/exec/Crawler.java

             */
            protected Options() {
                // nothing
            }
    
            /**
             * Parses the web configuration IDs string into a list.
             *
             * @return list of web configuration IDs, or null if none specified
             */
            protected List<String> getWebConfigIdList() {
                if (StringUtil.isNotBlank(webConfigIds)) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 32.4K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/util/LogNotificationAppender.java

    /**
     * Custom Log4j2 Appender that captures log events into a buffer for notification purposes.
     */
    @Plugin(name = "LogNotificationAppender", category = Core.CATEGORY_NAME, elementType = Appender.ELEMENT_TYPE, printObject = true)
    public class LogNotificationAppender extends AbstractAppender {
    
        private static final int MAX_THROWABLE_LENGTH = 500;
    
        private static final Set<String> EXCLUDED_LOGGERS = Set.of( //
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 6K bytes
    - Click Count (0)
  6. src/main/resources/crawler/rule.xml

    			<component class="org.codelibs.fess.crawler.processor.FessResponseProcessor">
    				<property name="transformer">fessXpathTransformer</property>
    				<property name="successfulHttpCodes">(int[])[200]</property>
    				<property name="notModifiedHttpCodes">(int[])[304]</property>
    			</component>
    		</property>
    		<property name="allRequired">true</property>
    		<postConstruct name="addRule">
    			<arg>"url"</arg>
    			<arg>"http[s]?:.*"</arg>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 29 08:21:02 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        default int availableProcessors() {
            final int num = getProcessorsAsInteger();
            if (num > 0) {
                return num;
            }
            return Runtime.getRuntime().availableProcessors();
        }
    
        Integer getCrawlerHttpThreadPoolSizeAsInteger();
    
        default int getCrawlerHttpProcessors() {
            final int num = getCrawlerHttpThreadPoolSizeAsInteger();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 92.3K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

            private final HttpServletRequest request;
    
            private final FessConfig fessConfig;
    
            private int startPosition = -1;
    
            private int offset = -1;
    
            private int pageSize = -1;
    
            /**
             * Constructor for JsonRequestParams.
             * @param request The HTTP servlet request containing the search parameters
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 27 13:56:32 GMT 2026
    - 55.4K bytes
    - Click Count (1)
  9. src/test/java/org/codelibs/fess/helper/LogNotificationHelperTest.java

            int numThreads = 8;
            int eventsPerThread = 200;
            ExecutorService executor = Executors.newFixedThreadPool(numThreads);
            CountDownLatch startLatch = new CountDownLatch(1);
            CountDownLatch doneLatch = new CountDownLatch(numThreads);
            AtomicInteger totalDrained = new AtomicInteger(0);
    
            for (int t = 0; t < numThreads; t++) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 6.3K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                final int fragmentSize = highlightInfo.getFragmentSize();
                final int numOfFragments = highlightInfo.getNumOfFragments();
                final int fragmentOffset = highlightInfo.getFragmentOffset();
                final char[] boundaryChars = fessConfig.getQueryHighlightBoundaryCharsAsArray();
                final int boundaryMaxScan = fessConfig.getQueryHighlightBoundaryMaxScanAsInteger();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 138.6K bytes
    - Click Count (1)
Back to Top