Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 61 - 70 of 98 for peru (0.01 seconds)

  1. src/main/java/org/codelibs/fess/app/pager/KuromojiPager.java

        /** Whether a next page exists. */
        private boolean existNextPage;
    
        /** The list of page numbers. */
        private List<Integer> pageNumberList;
    
        /** The number of items per page. */
        private int pageSize;
    
        /** The current page number. */
        private int currentPageNumber;
    
        /** The ID of the Kuromoji dictionary. */
        public String id;
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 5.2K bytes
    - Click Count (0)
  2. src/main/assemblies/extension/kibana/fess_log.ndjson

    ibanaSavedObjectMeta":{"searchSourceJSON":"{\"query\":{\"query\":\"\",\"language\":\"kuery\"},\"filter\":[],\"indexRefName\":\"kibanaSavedObjectMeta.searchSourceJSON.index\"}"},"title":"search-query-counts-per-sec","uiStateJSON":"{}","version":1,"visState":"{\"title\":\"search-query-counts-per-sec\",\"type\":\"histogram\",\"params\":{\"type\":\"histogram\",\"grid\":{\"categoryLines\":false},\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"type\":\"category\",\"position\":\"bottom\",\"show\":true,\...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Aug 12 01:26:21 GMT 2019
    - 18.2K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/exception/ContentNotFoundExceptionTest.java

            assertTrue(exception instanceof RuntimeException);
        }
    
        @Test
        public void test_suppressionAndStackTrace() {
            // Test that suppression and stack trace are disabled (as per constructor)
            String parentUrl = "http://example.com/parent";
            String url = "http://example.com/child";
            ContentNotFoundException exception = new ContentNotFoundException(parentUrl, url);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 7.9K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/pager/BadWordPager.java

         */
        private boolean existNextPage;
    
        /**
         * The list of page numbers for navigation.
         */
        private List<Integer> pageNumberList;
    
        /**
         * The number of records per page.
         */
        private int pageSize;
    
        /**
         * The current page number.
         */
        private int currentPageNumber;
    
        /** Bad word ID for search filtering. */
        public String id;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 6.1K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/pager/SchedulerPager.java

         */
        private boolean existNextPage;
    
        /**
         * List of page numbers for pagination navigation.
         */
        private List<Integer> pageNumberList;
    
        /**
         * Number of records per page.
         */
        private int pageSize;
    
        /**
         * Current page number in pagination.
         */
        private int currentPageNumber;
    
        /**
         * ID of the scheduled job.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 6.8K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

                Thread.currentThread().interrupt();
                throw new LlmException("Request interrupted", LlmException.ERROR_TIMEOUT);
            }
        }
    
        // --- Per-prompt-type parameter application ---
    
        /**
         * Applies per-prompt-type parameters to the request from configuration.
         * Reads temperature, max.tokens, and thinking.budget from config using
         * the pattern: {configPrefix}.{promptType}.{paramName}
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/helper/RateLimitHelper.java

     */
    public class RateLimitHelper {
    
        private static final Logger logger = LogManager.getLogger(RateLimitHelper.class);
    
        /**
         * Request counters per IP address.
         * Entries automatically expire after the configured window period.
         */
        protected Cache<String, AtomicLong> requestCounters;
    
        /**
         * Blocked IPs with automatic expiration.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Dec 24 14:16:27 GMT 2025
    - 9.4K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/crawler/serializer/DataSerializer.java

     * type is determined by the crawler data serializer configuration.
     * </p>
     * <p>
     * The class is thread-safe and uses ThreadLocal to maintain Kryo instances
     * per thread to avoid synchronization overhead.
     * </p>
     *
     */
    public class DataSerializer {
    
        /** Logger for this class. */
        private static final Logger logger = LogManager.getLogger(DataSerializer.class);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jan 10 01:54:09 GMT 2026
    - 10.5K bytes
    - Click Count (3)
  9. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserLocaleProcessProviderTest.java

            ComponentUtil.setFessConfig(null);
            super.tearDown(testInfo);
        }
    
        // Test isAcceptCookieLocale method
        @Test
        public void test_isAcceptCookieLocale() {
            // Always returns false as per implementation
            assertFalse(provider.isAcceptCookieLocale());
        }
    
        // Test findBusinessLocale with valid locale parameter
        @Test
        public void test_findBusinessLocale_withValidLocale() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.1K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/job/LogNotificationJobTest.java

            assertTrue(details.contains("Total: 1 event(s)"));
            assertTrue(details.contains("Something went wrong"));
            // Throwable is no longer included in summary-oriented format
            // Only log message is shown per event line
        }
    
        @Test
        public void test_formatDetails_emptyList() {
            TestableLogNotificationJob testableJob = new TestableLogNotificationJob();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 10.5K bytes
    - Click Count (0)
Back to Top