- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for componentName (0.11 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientCreator.java
clientMap.put(regex, componentName); clientFactoryList.forEach(f -> load(f, regex, componentName)); } protected void load(final CrawlerClientFactory crawlerClientFactory, final String regex, final String componentName) { if (logger.isDebugEnabled()) { logger.debug("loading {}", componentName); } CrawlerClient client = null;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/ContainerNotAvailableException.java
private String componentName; public ContainerNotAvailableException(final String componentName) { super(componentName + " is not available."); } public ContainerNotAvailableException(final String componentName, final Throwable cause) { super(componentName + " is not available.", cause); this.componentName = componentName; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 1.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactory.java
public interface OnDestroyListener<T> { void onDestroy(PooledObject<T> p); } public String getComponentName() { return componentName; } public void setComponentName(final String componentName) { this.componentName = componentName; } public OnDestroyListener<T> getOnDestroyListener() { return onDestroyListener; }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 2.4K bytes - Viewed (0)