Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for hasComponent (0.04 sec)

  1. src/test/java/org/codelibs/fess/util/ComponentUtilTest.java

            String componentName = "testComponent";
    
            ComponentUtil.register(testInstance, componentName);
    
            assertTrue(ComponentUtil.hasComponent(componentName));
        }
    
        public void test_hasComponent_notExists() {
            assertFalse(ComponentUtil.hasComponent("nonExistentComponent"));
        }
    
        public void test_hasQueryParser() {
            assertFalse(ComponentUtil.hasQueryParser());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  2. compat/maven-compat/src/test/java/org/apache/maven/project/AbstractMavenProjectTestCase.java

        protected PlexusContainer container;
    
        public PlexusContainer getContainer() {
            return container;
        }
    
        @BeforeEach
        public void setUp() throws Exception {
            if (getContainer().hasComponent(ProjectBuilder.class, "test")) {
                projectBuilder = getContainer().lookup(ProjectBuilder.class, "test");
            } else {
                // default over to the main project builder...
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 20:01:00 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/sso/SsoManager.java

         * @return The SSO authenticator instance, or null if not found
         */
        protected SsoAuthenticator getAuthenticator() {
            final String name = getSsoType() + "Authenticator";
            if (ComponentUtil.hasComponent(name)) {
                return ComponentUtil.getComponent(name);
            }
            return null;
        }
    
        /**
         * Gets the configured SSO type from the system configuration.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
Back to top