Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 121 - 130 of 167 for _count (0.12 seconds)

  1. src/main/webapp/js/search.js

            }
          })
            .done(function(data) {
              if (data.result === "created") {
                var $favorited = $favorite.siblings(".favorited");
                var $favoritedCount = $(".favorited-count", $favorited);
                $favoritedCount.hide();
                $favorite.fadeOut(FADE_DURATION, function() {
                  $favorited.fadeIn(FADE_DURATION);
                });
              }
            })
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 6.5K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImplTest.java

                }
            }
    
            final int threadCount = 5;
            final Thread[] threads = new Thread[threadCount];
            final Exception[] exceptions = new Exception[threadCount];
            final int[][] counts = new int[threadCount][1];
    
            // Multiple threads iterate over the list
            for (int i = 0; i < threadCount; i++) {
                final int threadIndex = i;
                threads[i] = new Thread(() -> {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 19.7K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java

                thread.join();
            }
    
            // Due to synchronized method, only one thread should reload
            // The count might be 2 (one initial + one reload) or slightly higher due to timing
            assertTrue(loadCount[0] <= 3, "Load count should be small due to synchronization");
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 18.2K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/score/ScoreUpdaterTest.java

            scoreUpdater.addScoreBooster(booster1);
            scoreUpdater.addScoreBooster(booster2);
    
            String result = scoreUpdater.execute();
    
            // Check format with class name, colon, count, and newline
            String[] lines = result.split("\n");
            assertEquals(2, lines.length);
            assertTrue(lines[0].matches("TestScoreBooster : \\d+"));
            assertTrue(lines[1].matches("TestScoreBooster : \\d+"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 10.5K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/service/CharMappingService.java

         * <p>
         * This method fetches character mapping items with pagination support and updates
         * the pager with the current page information including total count and page ranges.
         * </p>
         *
         * @param dictId the dictionary ID to retrieve character mappings from
         * @param charMappingPager the pager object containing pagination parameters
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 6.1K bytes
    - Click Count (0)
  6. src/main/webapp/css/font-awesome.min.css

    ort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-down-alt:before{content:"\f884"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-amount-up-alt:before{content:"\f885"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-sort-numeric-u...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 14 21:22:25 GMT 2019
    - 55.8K bytes
    - Click Count (2)
  7. src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java

            this.crawlerRunning = crawlerRunning;
        }
    
        /**
         * Represents a rule for controlling crawler intervals.
         * Each rule defines a time range, applicable days, and delay amount.
         */
        public static class IntervalRule {
            /** Starting hour of the interval */
            protected int fromHours;
    
            /** Starting minute of the interval */
            protected int fromMinutes;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Nov 23 12:34:02 GMT 2025
    - 10K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/helper/CrawlerLogHelper.java

            return failureUrlService.store(crawlingConfig, errorName, url, e);
        }
    
        /**
         * Gets the crawling configuration for the specified session ID.
         *
         * @param sessionCountId the session count ID
         * @return the crawling configuration
         */
        protected CrawlingConfig getCrawlingConfig(final String sessionCountId) {
            return ComponentUtil.getCrawlingConfigHelper().get(sessionCountId);
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 8.3K bytes
    - Click Count (0)
  9. src/main/assemblies/files/fess.in.bat

    @echo off
    
    if DEFINED JAVA_HOME goto cont
    
    :err
    ECHO JAVA_HOME environment variable must be set! 1>&2
    EXIT /B 1 
    
    :cont
    set SCRIPT_DIR=%~dp0
    for %%I in ("%SCRIPT_DIR%..") do set FESS_HOME=%%~dpfI
    
    
    REM ***** JAVA options *****
    
    if "%FESS_MIN_MEM%" == "" (
    set FESS_MIN_MEM=256m
    )
    
    if "%FESS_MAX_MEM%" == "" (
    set FESS_MAX_MEM=1g
    )
    
    if NOT "%FESS_HEAP_SIZE%" == "" (
    set FESS_MIN_MEM=%FESS_HEAP_SIZE%
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 27 03:48:59 GMT 2025
    - 4.8K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/job/CrawlJob.java

                    timeoutTask.cancel();
                }
            }
    
            return resultBuf.toString();
    
        }
    
        /**
         * Gets the count of currently running crawler jobs.
         * This method queries the scheduled jobs to count active crawler processes.
         * Used to enforce maximum concurrent crawler limits.
         *
         * @return the number of currently running crawler jobs
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 19.6K bytes
    - Click Count (0)
Back to Top