Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for componentName (0.04 sec)

  1. src/test/java/org/codelibs/fess/exception/ContainerNotAvailableExceptionTest.java

            // Test constructor with component name only
            String componentName = "testComponent";
            ContainerNotAvailableException exception = new ContainerNotAvailableException(componentName);
    
            assertEquals(componentName + " is not available.", exception.getMessage());
            assertNull(exception.getCause());
            // Note: This test reveals that componentName field is not set in this constructor
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java

            }
    
            @Override
            public String fromComponentNameToSuffix(String componentName) {
                return fromClassNameToSuffix(componentName);
            }
    
            @Override
            public Class<?> fromComponentNameToClass(String componentName) {
                try {
                    return Class.forName(componentName);
                } catch (ClassNotFoundException e) {
                    return null;
                }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/exception/ContainerNotAvailableException.java

         * @param cause The cause of the exception.
         */
        public ContainerNotAvailableException(final String componentName, final Throwable cause) {
            super(componentName + " is not available.", cause);
            this.componentName = componentName;
        }
    
        /**
         * Constructor with cause only.
         * @param cause The cause of the exception.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/util/ComponentUtilTest.java

            String componentName = "testComponent";
    
            ComponentUtil.register(first, componentName);
            String retrieved1 = ComponentUtil.getComponent(componentName);
            assertSame(first, retrieved1);
    
            ComponentUtil.register(second, componentName);
            String retrieved2 = ComponentUtil.getComponent(componentName);
            assertSame(second, retrieved2);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/ComponentUtil.java

                    throw new ContainerNotAvailableException(componentName, e);
                }
                throw new ContainerNotAvailableException(componentName);
            } catch (final ComponentNotFoundException | AutoBindingFailureException e) {
                if (componentMap.containsKey(componentName)) {
                    return (T) componentMap.get(componentName);
                }
                throw e;
            }
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/bootstrap.min.js.map

    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 180.9K bytes
    - Viewed (0)
Back to top