- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 17 for inherit (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/timer/SystemMonitorTargetTest.java
break; } } assertNotNull(appendMethod, "Should inherit append method"); assertNotNull(appendTimestampMethod, "Should inherit appendTimestamp method"); assertNotNull(appendExceptionMethod, "Should inherit appendException method"); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.2K bytes - Click Count (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild.root-target-runtimes.gradle.kts
} val runtimeAware: NamedDomainObjectProvider<DependencyScopeConfiguration> = configurations.dependencyScope("runtimeAware") { description = "All dependencies which should run in a Gradle context, and therefore must declare or inherit target runtime compatibility" } // Computes a map of all projects in the full Gradle distribution to their target runtime details file.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Mar 11 22:40:18 GMT 2026 - 2.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/annotation/SecuredTest.java
} } // Test that class annotation is inherited @Test public void test_inheritedClassAnnotation() { Secured parentSecured = ParentClass.class.getAnnotation(Secured.class); assertNotNull(parentSecured); assertEquals("ROLE_PARENT", parentSecured.value()[0]); // Child class should inherit the annotationCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 15.6K bytes - Click Count (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/runtimes/CheckTargetRuntimes.kt
* daemon and the worker. * * In this scenario, both the daemon and the worker project declare required target * runtimes. All projects that these two projects depend on will inherit these runtimes * as part of their computed target runtimes. * * This task verifies that the computed target runtimes for each project properly reflect
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Mar 11 22:40:18 GMT 2026 - 13.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/opensearch/client/CrawlerEngineClientTest.java
assertNotNull(crawlerEngineClient); // The actual client initialization happens lazily when needed } // Test that close method exists (inherited) @Test public void test_closeMethodExists() { // Test that close method is available (inherited from parent) try { // Just verify the method exists, don't actually call it crawlerEngineClient.getClass().getMethod("close");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/LdapConfigurationExceptionTest.java
String message = "Serialization test"; LdapConfigurationException exception = new LdapConfigurationException(message); // Test that serialVersionUID is accessible (inherited from parent) assertNotNull(exception); // Create a new instance to verify it can be created multiple times LdapConfigurationException exception2 = new LdapConfigurationException(message);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 7.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java
assertEquals(type, firstCall); } @Test public void test_inheritanceFromFessSystemException() { // Test that InvalidAccessTokenException is properly inherited from FessSystemException String type = "SessionToken"; String message = "Session expired"; InvalidAccessTokenException exception = new InvalidAccessTokenException(type, message);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 10.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java
assertEquals(InstanceDefFactory.SESSION, customPagerCreator.getInstanceDef()); assertEquals(AutoBindingDefFactory.NONE, customPagerCreator.getAutoBindingDef()); } // Test inherited behavior from ComponentCreatorImpl @Test public void test_getNamingConvention() { assertSame(namingConvention, pagerCreator.getNamingConvention()); } // Test component name creation
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 13.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java
assertEquals(3, result5.getAllRecordCount()); } // Test insert method @Test public void test_insert() throws Exception { writeTestFile("a,b => c\n"); CharMappingItem newItem = new CharMappingItem(0, new String[] { "x", "y" }, "z"); charMappingFile.insert(newItem); // Verify the item was added
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/main/java/org/codelibs/fess/helper/SearchLogHelper.java
// write log if (fessConfig.isLoggingSearchUseLogfile()) { searchLogList.forEach(this::writeSearchLogEvent); } // insert search log storeSearchLogList(searchLogList); // update suggest index if (fessConfig.isSuggestSearchLog()) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 29.3K bytes - Click Count (0)