Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 8 of 8 for blockIp (0.04 seconds)

  1. src/main/webapp/js/marked.min.js

    izer.options=this.options,this.tokenizer.lexer=this,this.inlineQueue=[],this.state={inLink:!1,inRawBlock:!1,top:!0};let t={other:m,block:B.normal,inline:z.normal};this.options.pedantic?(t.block=B.pedantic,t.inline=z.pedantic):this.options.gfm&&(t.block=B.gfm,this.options.breaks?t.inline=z.breaks:t.inline=z.gfm),this.tokenizer.rules=t}static get rules(){return{block:B,inline:z}}static lex(e,t){return new l(t).lex(e)}static lexInline(e,t){return new l(t).inlineTokens(e)}lex(e){e=e.replace(m.carriageReturn,`...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 41.5K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/dict/DictionaryExpiredExceptionTest.java

            assertEquals(this.getClass().getName(), stackTrace[0].getClassName());
        }
    
        @Test
        public void test_multipleCatches() {
            // Test with multiple catch blocks
            boolean caughtSpecific = false;
            boolean caughtRuntime = false;
    
            try {
                throw new DictionaryExpiredException();
            } catch (DictionaryExpiredException e) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 7.5K bytes
    - Click Count (0)
  3. src/main/resources/fess_config.properties

    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
    # Comma-separated list of whitelisted IPs (e.g., 127.0.0.1,::1).
    rate.limit.whitelist.ips=127.0.0.1,::1
    # Comma-separated list of 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
    - 59.3K bytes
    - Click Count (0)
  4. src/main/webapp/css/chat.css

        }
    
        .suggestion-chips {
            flex-direction: column;
        }
    
        .suggestion-chip {
            width: 100%;
        }
    }
    
    /* ============================================
       Code blocks in messages
       ============================================ */
    .message-content pre {
        background-color: #1e1e1e;
        color: #d4d4d4;
        padding: 0.875rem;
        border-radius: 6px;
        overflow-x: auto;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 19.4K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'rate.limit.blocked.ips'. <br>
         * The value is, e.g.  <br>
         * comment: Comma-separated list of blocked IPs.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getRateLimitBlockedIps();
    
        /**
         * Get the value for the key 'rate.limit.blocked.ips' as {@link Integer}. <br>
         * The value is, e.g.  <br>
    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)
  6. src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientRebuildTest.java

            testClient.aliasCount = 2;
    
            final boolean result = testClient.reindexConfigIndices(false, allTargetPrefixes());
    
            assertTrue(result);
            // With loadBulkData=false, the bulk data loading block is skipped entirely
            assertEquals(0, testClient.insertBulkDataCalls.size());
        }
    
        // ==========================================================================
        // reindexConfigIndices - index filtering
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 28.6K bytes
    - Click Count (0)
  7. src/main/webapp/js/chat.js

                return url;
            }
            // Block known dangerous protocols
            var dangerousProtocols = ['javascript:', 'data:', 'vbscript:', 'file:', 'about:', 'blob:'];
            for (var i = 0; i < dangerousProtocols.length; i++) {
                if (trimmedUrl.startsWith(dangerousProtocols[i])) {
                    return '#';
                }
            }
            // Block URLs that look like protocol:// (unknown protocols)
    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)
  8. src/test/java/org/codelibs/fess/filter/LoadControlFilterTest.java

            for (String path : apiPaths) {
                resetMocks();
                mockRequest.setRequestURI(path);
                testableFilter.doFilter(mockRequest, mockResponse, mockFilterChain);
                assertFalse("Expected block for: " + path, mockFilterChain.wasDoFilterCalled());
                assertEquals(429, mockResponse.getStatus());
            }
        }
    
        // ===================================================================================
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 33.6K bytes
    - Click Count (0)
Back to Top