- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 19 for hundred (0.12 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts
"io.github.littleproxy:littleproxy", setOf("barchart-udt-bundle", "guava", "commons-cli", "netty-all") ) // TODO: Gradle profiler should use the bundled tooling API. // This should actually be handled by conflict resolution, though it doesn't seem to work. // See https://github.com/gradle/gradle/issues/12002. applyRule<DependencyRemovalByNameRule>(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) -
src/test/java/org/codelibs/fess/job/PingSearchEngineJobTest.java
ComponentUtil.register(systemHelper, "systemHelper"); ComponentUtil.setFessConfig(fessConfig); ComponentUtil.register(notificationHelper, "notificationHelper"); // Postbox is handled by the framework // Execute String result = pingSearchEngineJob.execute(); // Assert assertEquals("test-cluster is alive.", result); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 18.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessListedClassificationProviderTest.java
// expected assertTrue(e.getMessage().contains("Not found the classification: null")); } catch (NullPointerException e) { // Also acceptable if null is not handled explicitly } } @Test public void test_findOnMainSchema_alwaysReturnsNull() { // Since the implementation always returns null (no DBFlute classification used),Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 7.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/saml/SamlAuthenticatorTest.java
systemProperties.remove("saml.sp.base.url"); } } @Test public void test_buildDefaultUrl_withTrailingSlash() throws Exception { // Test that trailing slash is handled correctly SamlAuthenticator authenticator = new SamlAuthenticator(); DynamicProperties systemProperties = ComponentUtil.getSystemProperties(); try {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 18.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/PingResponseTest.java
// Note: Full testing requires a running OpenSearch cluster assertTrue(true); } @Test public void test_fieldSetConfiguration() { // Test that field set configuration is properly handled Set<String> fieldSet = new HashSet<>(); fieldSet.add("cluster_name"); fieldSet.add("status"); FessConfig mockConfig = new FessConfig.SimpleImpl() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 7.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
assertEquals("test_session_123", options.sessionId); } @Test public void test_process_withPropertiesPath() throws Exception { // Test that properties path is properly handled // Create temporary properties file File propFile = File.createTempFile("test", ".properties"); propFile.deleteOnExit();
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) -
src/test/java/org/codelibs/fess/crawler/transformer/FessTransformerTest.java
assertEquals("value2", resultArray[1]); assertEquals("value3", resultArray[2]); } /** * Test putResultDataBody with primitive int array * This tests that primitive arrays are handled correctly */ @Test public void test_putResultDataBody_withPrimitiveArray() { TestFessTransformer transformer = new TestFessTransformer(); Map<String, Object> dataMap = new HashMap<>();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 10.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/AggregateLogJobTest.java
}; ComponentUtil.register(mockSearchLogHelper, "searchLogHelper"); // Execute the job String result = aggregateLogJob.execute(); // Verify large message is handled assertNotNull(result); assertTrue(result.length() > 1000); assertTrue(result.contains("Error detail 0")); assertTrue(result.contains("Error detail 999"));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 12.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/InvalidQueryExceptionTest.java
// Execute final InvalidQueryException exception = new InvalidQueryException(messageCode, longMessage); // Verify long message is handled correctly assertNotNull(exception); assertEquals(longMessage, exception.getMessage()); assertEquals(messageCode, exception.getMessageCode()); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 15.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/FessCrawlerThreadTest.java
Set<RequestData> result = crawlerThread.getAnchorSet(urls); assertNotNull(result, "getAnchorSet should handle duplicates"); // Since it returns a Set, duplicates should be handled by URL comparison // The exact behavior depends on RequestData.equals() implementation assertTrue("Should have at most 5 items", result.size() <= 5); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 9.3K bytes - Click Count (0)