Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 27 for inherit (0.03 seconds)

  1. 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)
  2. 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)
  3. 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 annotation
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 15.6K bytes
    - Click Count (0)
  4. 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)
  5. src/test/java/org/codelibs/fess/auth/AuthenticationManagerTest.java

            assertNotNull(manager);
        }
    
        // Test insert with no chains
        @Test
        public void test_insert_noChains() {
            User user = createTestUser("testuser");
            authenticationManager.insert(user);
            // Should not throw exception even with no chains
        }
    
        // Test insert with single chain
        @Test
        public void test_insert_singleChain() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 14.3K bytes
    - Click Count (0)
  6. 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)
  7. 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)
  8. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                        }
                    });
    
        }
    
        /**
         * Inserts or updates a user in LDAP directory.
         *
         * @param user the user object to insert or update
         */
        public void insert(final User user) {
            if (!fessConfig.isLdapAdminEnabled(user.getName())) {
                return;
            }
    
            final Supplier<Hashtable<String, String>> adminEnv = this::createAdminEnv;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 02 08:06:20 GMT 2026
    - 85.2K bytes
    - Click Count (0)
  9. 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)
  10. src/test/java/org/codelibs/fess/dict/kuromoji/KuromojiFileTest.java

                    20);
            assertEquals(3, itemList1.size());
    
            final KuromojiItem kuromojiItem1 = new KuromojiItem(0, "token4",
                    "seg4", "reading4", "pos4");
            kuromojiFile.insert(kuromojiItem1);
            final PagingList<KuromojiItem> itemList2 = kuromojiFile.selectList(0,
                    20);
            assertEquals(4, itemList2.size());
            assertEquals("token4", itemList2.get(3).getToken());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 7.4K bytes
    - Click Count (0)
Back to Top