Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for componentName (4.98 sec)

  1. src/main/java/org/codelibs/fess/exception/ContainerNotAvailableException.java

        private String componentName;
    
        /**
         * Constructor with component name.
         * @param componentName The name of the component that is not available.
         */
        public ContainerNotAvailableException(final String componentName) {
            super(componentName + " is not available.");
            this.componentName = componentName;
        }
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Wed Nov 19 08:04:23 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactory.java

         */
        public String getComponentName() {
            return componentName;
        }
    
        /**
         * Sets the component name.
         *
         * @param componentName The component name to set
         */
        public void setComponentName(final String componentName) {
            this.componentName = componentName;
        }
    
        /**
         * Gets the crawler container.
         *
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientCreator.java

         * @param regex The regular expression to match URLs.
         * @param componentName The name of the component to register.
         */
        public synchronized void register(final String regex, final String componentName) {
            clientMap.put(regex, componentName);
            clientFactoryList.forEach(f -> load(f, regex, componentName));
        }
    
        /**
         * Loads a crawler client into the specified crawler client factory.
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  4. 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: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  5. fess-crawler/src/test/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactoryTest.java

            CrawlerPooledObjectFactory<U> f = new CrawlerPooledObjectFactory<>();
            f.setCrawlerContainer(container);
            f.setComponentName(componentName);
            return f;
        }
    
        /**
         * Helper method to create a factory with listener
         */
        private <U> CrawlerPooledObjectFactory<U> createFactory(String componentName, OnDestroyListener<U> listener) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 20 13:07:01 UTC 2025
    - 36.7K bytes
    - Viewed (0)
Back to top