Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for creation (0.18 sec)

  1. src/main/java/org/codelibs/fess/es/config/exentity/CrawlingConfigWrapper.java

            return crawlingConfig.getTimeToLive();
        }
    
        @Override
        public CrawlerClientFactory initializeClientFactory(final Supplier<CrawlerClientFactory> creator) {
            return crawlingConfig.initializeClientFactory(creator);
        }
    
        @Override
        public Map<String, String> getConfigParameterMap(final ConfigName name) {
            return crawlingConfig.getConfigParameterMap(name);
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/exentity/WebConfig.java

        }
    
        @Override
        public CrawlerClientFactory initializeClientFactory(final Supplier<CrawlerClientFactory> creator) {
            if (crawlerClientFactory != null) {
                return crawlerClientFactory;
            }
            final CrawlerClientFactory factory = creator.get();
    
            final WebAuthenticationService webAuthenticationService = ComponentUtil.getComponent(WebAuthenticationService.class);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java

        }
    
        @Override
        public CrawlerClientFactory initializeClientFactory(final Supplier<CrawlerClientFactory> creator) {
            if (crawlerClientFactory != null) {
                return crawlerClientFactory;
            }
            final CrawlerClientFactory factory = creator.get();
    
            final Map<String, String> paramMap = getHandlerParameterMap();
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractEntity.java

        @Override
        public String toStringWithRelation() { // #pending
            return toString();
        }
    
        @Override
        public String buildDisplayString(String name, boolean column, boolean relation) { // #pending
            return toString();
        }
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  5. src/main/resources/CLMessages.properties

    ECL0015=argument[{0}] which is null the index of array exceed the size of array[{1}].
    ECL0016=key[{0}] is not included in this BeanMap : {1}.
    ECL0017=Exception occurred, because {0}
    ECL0041={0}''s creation failure, because {1}
    ECL0040=IOException occurred, because {0}
    ECL0042=An illegal access was generated by {0}, because {1}
    ECL0043=The target which {0} invoked is illegal, because {1}
    ECL0044=Class not found, details are {0}
    Properties
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:58:02 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java

                            t.getClass().getCanonicalName(), t.getMessage());
                    if (logger.isDebugEnabled()) {
                        logger.debug("Details for failed thumbnail creation.", t);
                    }
                } finally {
                    if (!created) {
                        updateThumbnailField(thumbnailId, StringUtil.EMPTY);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/dict/DictionaryManager.java

        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
            creatorList.forEach(creator -> {
                creator.setDictionaryManager(this);
            });
        }
    
        public DictionaryFile<? extends DictionaryItem>[] getDictionaryFiles() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/creator/PagerCreator.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.mylasta.creator;
    
    import org.lastaflute.di.core.assembler.AutoBindingDefFactory;
    import org.lastaflute.di.core.creator.ComponentCreatorImpl;
    import org.lastaflute.di.core.customizer.ComponentCustomizer;
    import org.lastaflute.di.core.meta.impl.InstanceDefFactory;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/exentity/CrawlingConfig.java

        String getDocumentBoost();
    
        String getIndexingTarget(String input);
    
        String getConfigId();
    
        Integer getTimeToLive();
    
        CrawlerClientFactory initializeClientFactory(Supplier<CrawlerClientFactory> creator);
    
        Map<String, String> getConfigParameterMap(ConfigName name);
    
        default void initializeDefaultHttpProxy(final Map<String, Object> paramMap) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractEntity.java

        @Override
        public String toStringWithRelation() { // #pending
            return toString();
        }
    
        @Override
        public String buildDisplayString(String name, boolean column, boolean relation) { // #pending
            return toString();
        }
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.9K bytes
    - Viewed (0)
Back to top