Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 36 for blivit (0.1 seconds)

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

  1. src/main/resources/fess_indices/_aws/fess.json

            },
            "finnish_stop": {
              "type":       "stop",
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 117.5K bytes
    - Click Count (0)
  2. src/main/resources/fess_indices/_cloud/fess.json

            },
            "finnish_stop": {
              "type":       "stop",
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 117.5K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/filter/RateLimitFilter.java

                }
                sendBlockedResponse(httpResponse);
                return;
            }
    
            // Check rate limit
            if (!rateLimitHelper.allowRequest(clientIp)) {
                if (logger.isDebugEnabled()) {
                    logger.debug("Rate limit exceeded: clientIp={}", clientIp);
                }
                sendRateLimitResponse(httpResponse, rateLimitHelper.getRetryAfterSeconds());
                return;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Dec 24 14:16:27 GMT 2025
    - 4.4K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/job/CrawlJobTest.java

                assertTrue(e.getMessage().contains("10 crawler processes are running"));
                assertTrue(e.getMessage().contains("Max processes are 5"));
            }
        }
    
        // Test execute method with no max process limit
        @Test
        public void test_execute_noMaxProcessLimit() {
            // Setup test
            crawlJob = new CrawlJob() {
                @Override
                protected int getRunningJobCount() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 25K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/exception/ResultOffsetExceededException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    /**
     * This exception is thrown when the requested result offset exceeds the limit.
     */
    public class ResultOffsetExceededException extends FessSystemException {
        private static final long serialVersionUID = 1L;
    
        /**
         * Constructor.
         * @param message The exception message.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticatorTest.java

            EntraIdAuthenticator authenticator = new EntraIdAuthenticator();
            authenticator.setMaxGroupDepth(2);
    
            // Test that depth limit returns empty arrays when depth is exceeded
            // With depth limit set to 2, depth 10 should return empty arrays
            Pair<String[], String[]> result = authenticator.getParentGroup(null, "test-id", 10);
            assertNotNull(result);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 19.3K bytes
    - Click Count (0)
  7. src/main/webapp/js/search.js

      }
    
      var loadImage = function(img, url, limit) {
        var imgData = new Image();
    
        $(imgData).on("load", function() {
          $(img).css("background-image", "");
          $(img).attr("src", url);
        });
    
        $(imgData).on("error", function() {
          if (limit > 0) {
            setTimeout(function() {
              loadImage(img, url, limit - 1);
            }, IMG_LOADING_DELAY);
          } else {
    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)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. 60 */
        String RATE_LIMIT_RETRY_AFTER_SECONDS = "rate.limit.retry.after.seconds";
    
        /** The key of the configuration. e.g. 127.0.0.1,::1 */
        String RATE_LIMIT_WHITELIST_IPS = "rate.limit.whitelist.ips";
    
        /** The key of the configuration. e.g.  */
        String RATE_LIMIT_BLOCKED_IPS = "rate.limit.blocked.ips";
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
  9. src/main/resources/fess_config.properties

    # Whether rate limiting is enabled.
    rate.limit.enabled=false
    # Maximum number of requests allowed per window.
    rate.limit.requests.per.window=100
    # Window size in milliseconds.
    rate.limit.window.ms=60000
    # Duration in milliseconds to block IP when limit exceeded.
    rate.limit.block.duration.ms=300000
    # Retry-After header value in seconds.
    rate.limit.retry.after.seconds=60
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/exception/ResultOffsetExceededExceptionTest.java

    public class ResultOffsetExceededExceptionTest extends UnitFessTestCase {
    
        @Test
        public void test_constructor_withMessage() {
            // Test with normal message
            String message = "Offset exceeded the limit";
            ResultOffsetExceededException exception = new ResultOffsetExceededException(message);
    
            assertEquals(message, exception.getMessage());
            assertNotNull(exception.getStackTrace());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 9.9K bytes
    - Click Count (0)
Back to Top