Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 171 - 180 of 203 for 4000 (0.02 seconds)

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

  1. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java

                return "doc-id-" + dataMap.get("url");
            }
        }
    
        private static class TestIndexingHelper extends IndexingHelper {
            int sendDocumentsCalled = 0;
            long documentSize = 1000;
    
            @Override
            public void sendDocuments(SearchEngineClient searchEngineClient, DocList docList) {
                sendDocumentsCalled++;
                docList.clear();
            }
    
            @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 24.7K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/it/search/SearchApiTests.java

            }
        }
    
        @Test
        public void searchTestWithRange() throws Exception {
            String field = "content_length";
            int from = 100;
            int to = 1000;
            Map<String, String> params = new HashMap<>();
            params.put("q", field + ":[" + from + " TO " + to + "]");
            params.put("num", "100");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 21 13:29:45 GMT 2025
    - 19K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/exception/WebApiExceptionTest.java

            Exception middleCause = new RuntimeException("Runtime error", innerCause);
            WebApiException exception = new WebApiException(400, middleCause);
    
            assertEquals(400, exception.getStatusCode());
            assertEquals("Runtime error", exception.getMessage());
            assertEquals(middleCause, exception.getCause());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 9.5K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/exception/CommandExecutionExceptionTest.java

        }
    
        @Test
        public void test_constructor_withLongMessage() {
            // Test constructor with long message
            StringBuilder sb = new StringBuilder();
            for (int i = 0; i < 1000; i++) {
                sb.append("Long message content ");
            }
            String longMessage = sb.toString();
    
            CommandExecutionException exception = new CommandExecutionException(longMessage);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 9.4K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/job/JobExecutorTest.java

        }
    
        @Test
        public void test_execute_longScript() {
            // Test with long script
            StringBuilder longScript = new StringBuilder();
            for (int i = 0; i < 1000; i++) {
                longScript.append("line ").append(i).append("\n");
            }
            Object result = jobExecutor.execute("test", longScript.toString());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 9.4K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/query/QueryCommandTemplateMethodTest.java

        /**
         * Test isSearchField() performance with large field set.
         */
        @Test
        public void test_isSearchField_performance() {
            // Create a large set of search fields
            int fieldCount = 1000;
            String[] fields = new String[fieldCount];
            for (int i = 0; i < fieldCount; i++) {
                fields[i] = "field" + i;
            }
            queryFieldConfig.setSearchFields(fields);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.5K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

            final Extractor extractor = getExtractor(responseData);
            final String mimeType = responseData.getMimeType();
            final StringBuilder contentMetaBuf = new StringBuilder(1000);
            final Map<String, Object> dataMap = new HashMap<>();
            final Map<String, Object> metaDataMap = new HashMap<>();
            String content;
            try (final InputStream in = responseData.getResponseBody()) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 25.7K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

        protected FileConfig fileConfig = null;
    
        /** Buffer to accumulate character data between XML tags. */
        protected StringBuilder textBuf = new StringBuilder(1000);
    
        /** User agent string to be used for web crawling. */
        protected String userAgent = "gsa-crawler";
    
        /**
         * Default constructor for GsaConfigParser.
         */
        public GsaConfigParser() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 21.6K bytes
    - Click Count (0)
  9. src/main/webapp/css/chat.css

        color: #0052cc;
        font-weight: 600;
    }
    
    .progress-step.completed .step-label {
        color: #00875a;
    }
    
    @keyframes step-pulse {
        0%, 100% { box-shadow: 0 0 0 0 rgba(0, 82, 204, 0.4); }
        50% { box-shadow: 0 0 0 8px rgba(0, 82, 204, 0); }
    }
    
    .progress-message {
        text-align: center;
        font-size: 0.8125rem;
        color: #0052cc;
        font-weight: 500;
    }
    
    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)
  10. src/test/resources/thumbnail/test_generate_thumbnail.sh

        echo -e "rsvg-convert available: ${GREEN}YES${NC}"
    
        # Create a simple SVG test file
        SVG_TEST="${OUTPUT_DIR}/test.svg"
        cat > "${SVG_TEST}" << 'EOF'
    <svg width="200" height="200" xmlns="http://www.w3.org/2000/svg">
      <rect width="200" height="200" fill="blue"/>
      <circle cx="100" cy="100" r="80" fill="red"/>
    </svg>
    EOF
    
        # Test: SVG thumbnail generation
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 04 08:02:36 GMT 2025
    - 7.9K bytes
    - Click Count (0)
Back to Top