Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 50 for eren (0.08 seconds)

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

  1. src/test/java/org/codelibs/fess/crawler/interval/FessIntervalControllerTest.java

            FessIntervalController controller = new FessIntervalController();
            controller.setDelayMillisForWaitingNewUrl(0L); // Set to 0 to avoid actual delay
    
            // This should not throw any exceptions even if helpers are not available
            try {
                // Note: In unit test environment, ComponentUtil may not be fully initialized
                // The improved error handling should catch and log any exceptions
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 6.2K bytes
    - Click Count (0)
  2. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

                params(name)
                params("${providedBy.size}")
            }
        }
    
        /**
         * For all modules providing a capability, always use the preferred module, even if there's no conflict.
         * In other words, will forcefully upgrade all modules providing a capability to a selected module.
         *
         * @param to the preferred module
         */
        private
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 26 09:04:32 GMT 2026
    - 9.5K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/helper/PopularWordHelperTest.java

            String result = popularWordHelper.getCacheKey(seed, tags, roles, fields, excludes);
    
            assertNotNull(result);
            assertTrue(result.contains("test_seed"));
    
            // Should contain 4 separators even with null arrays
            long separatorCount = result.chars().filter(ch -> ch == '\n').count();
            assertEquals(4, separatorCount);
        }
    
        @Test
        public void test_getCacheKey_emptyArrays() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.3K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

            Crawler.Options options = new Crawler.Options();
            options.sessionId = "test-session";
            options.expires = "invalid";
    
            // Verify the expires value is set even if invalid
            assertEquals("invalid", options.expires);
        }
    
        @Test
        public void test_process_withName() throws Exception {
            // Test that name is properly set
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 30.8K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/crawler/helper/FessMimeTypeHelperTest.java

                public String getCrawlerDocumentMimetypeExtensionOverrides() {
                    return ".sql=text/x-sql";
                }
            });
    
            mimeTypeHelper.init();
    
            // Override works even without an input stream
            assertEquals("text/x-sql", mimeTypeHelper.getContentType(null, "test.sql"));
        }
    
        @Test
        public void test_getContentType_overridePriority() throws IOException {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jan 24 09:06:33 GMT 2026
    - 12.1K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorErrorHandlingTest.java

                processor.setSearcher(new TestSearcher(100));
                processor.register(new SlowSearcher(100)); // 100ms delay
                processor.init();
    
                // Should complete even with slow searcher
                final long startTime = System.currentTimeMillis();
                final List<Map<String, Object>> results = processor.search("*", new TestSearchRequestParams(0, 10, 0), OptionalThing.empty());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 14.3K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessFwAssistantDirector.java

            direction.directLoggingTitle(fessConfig.getDomainTitle(), fessConfig.getEnvironmentTitle());
    
            // this configuration is on sea_env.properties because it has no influence to production
            // even if you set true manually and forget to set false back
            direction.directFrameworkDebug(fessConfig.isFrameworkDebug()); // basically false
    
            // you can add your own process when your application is booting or closing
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jan 10 01:38:30 GMT 2026
    - 10.4K bytes
    - Click Count (0)
  8. LICENSE

          Work (including but not limited to damages for loss of goodwill,
          work stoppage, computer failure or malfunction, or any and all
          other commercial damages or losses), even if such Contributor
          has been advised of the possibility of such damages.
    
       9. Accepting Warranty or Additional Liability. While redistributing
          the Work or Derivative Works thereof, You may choose to offer,
    Created: Wed Apr 01 00:11:11 GMT 2026
    - Last Modified: Thu Feb 20 19:53:57 GMT 2020
    - 11.1K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/crawler/serializer/DataSerializerTest.java

         */
        @Test
        public void test_serializeDeserialize_null() {
            byte[] serialized = serializer.fromObjectToBinary(null);
            assertNotNull(serialized, "Serialized data should not be null even for null input");
    
            Object deserialized = serializer.fromBinaryToObject(serialized);
            assertNull(deserialized, "Deserialized object should be null");
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 21.6K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java

                    checkBoundarySize(contentType, boundary);
                    return boundary;
                }
            };
        }
    
        // #for_now jflute to suppress CVE-2014-0050 even if commons-fileupload is older than safety version (2024/09/08)
        // but if you use safety version, this extension is basically unneeded (or you can use it as double check)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 08:48:41 GMT 2026
    - 18.9K bytes
    - Click Count (1)
Back to Top