Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 151 - 160 of 165 for euch (0.02 seconds)

  1. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

        }
    
        /**
         * Sets up the database query conditions for listing crawling information records.
         * Applies filters based on the pager criteria such as ID and session ID,
         * and orders results by creation time in descending order.
         *
         * @param cb the condition bean for building the database query
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 19.9K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/helper/SearchHelper.java

         * documents without loading them all into memory at once.
         *
         * @param params The search request parameters
         * @param cursor Function to process each document in the result set
         * @param userBean Optional user information for permission checking
         * @return Total number of documents processed
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 05:56:45 GMT 2025
    - 36.3K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/util/ComponentUtil.java

                process.run();
            } else {
                initProcesses.add(process);
            }
        }
    
        /**
         * Executes all initialization processes.
         * @param action The action to perform on each initialization process.
         */
        public static void doInitProcesses(final Consumer<? super Runnable> action) {
            try {
                initProcesses.forEach(action);
            } finally {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 30.9K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

                }
            }
            return defaultValue;
        }
    
        /**
         * Gets the maximum characters for context building for a specific prompt type.
         * Each LlmClient implementation defines per-prompt-type defaults appropriate
         * for its target model.
         *
         * @param promptType the prompt type (e.g., "answer", "summary", "faq")
         * @return the maximum characters
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/helper/PluginHelper.java

            @Override
            public String toString() {
                return name + ":" + version;
            }
        }
    
        /**
         * Enumeration of different artifact types supported by Fess.
         * Each type has a specific ID prefix used to identify artifacts of that type.
         */
        public enum ArtifactType {
            /** Data store plugins */
            DATA_STORE("fess-ds"), //
            /** Theme plugins */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Mar 04 15:19:41 GMT 2026
    - 25.1K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/chat/ChatClientTest.java

            final String result = chatClient.testBuildAssistantHistoryContent(msg, "smart_summary", 500, 500);
            // Result should not exceed summaryMaxChars by much (suffix may push slightly, but the body is budgeted)
            assertTrue(result.length() <= 500 + 50, "result length " + result.length() + " exceeds reasonable bound");
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 40.6K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java

                long result0 = (Long) getExpiredTimeMethod.invoke(crawlingInfoHelper, 0);
    
                // Verify that results are reasonable relative to each other
                assertTrue("Result for 7 days should be greater than 1 day", result7 > result1);
                assertTrue("Result for 1 day should be greater than 0 days", result1 > result0);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 12 01:46:45 GMT 2026
    - 28.7K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/script/groovy/GroovyEngineTest.java

            final Map<String, Object> params = new HashMap<>();
            params.put("items", new int[] { 1, 2, 3, 4, 5 });
    
            final String script = "def sum = 0\n" + "items.each { item ->\n" + "  if (item % 2 == 0) {\n" + "    sum += item\n" + "  }\n"
                    + "}\n" + "return sum";
    
            assertEquals(6, groovyEngine.evaluate(script, params)); // 2 + 4 = 6
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:03:38 GMT 2026
    - 29.1K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

            return false;
        }
    
        /**
         * Rebuilds configuration indices with the latest mappings using atomic alias switching.
         * Only indices matching the specified target prefixes are rebuilt.
         * For each index: creates a backup, reindexes data, creates a new index, reindexes from backup,
         * atomically switches aliases, then cleans up old and backup indices.
         *
    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)
  10. src/main/webapp/js/jquery-3.7.1.min.map

    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:07:52 GMT 2024
    - 131.6K bytes
    - Click Count (0)
Back to Top