Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 61 - 70 of 83 for event2 (0.03 seconds)

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/test/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistActionTest.java

            assertNotNull(extraFieldNames);
            assertTrue(extraFieldNames.contains("custom_tags"), "Config-defined array field should appear even without doc data");
            assertTrue(extraFieldNames.contains("custom_publish_date"), "Config-defined date field should appear even without doc data");
    
            @SuppressWarnings("unchecked")
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:38:39 GMT 2026
    - 34.4K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/dict/mapping/CharMappingItemTest.java

            // Test with different class
            assertFalse(item1.equals("string"));
        }
    
        @Test
        public void test_equals_withUnsortedInputs() {
            // Test that equals works correctly even when inputs are initially unsorted
            String[] inputs1 = { "z", "a", "m" };
            String[] inputs2 = { "m", "z", "a" };
    
            CharMappingItem item1 = new CharMappingItem(1L, inputs1, "output");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 16K bytes
    - Click Count (0)
Back to Top