Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 398 for creator (0.41 sec)

  1. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessMailDeliveryDepartmentCreatorTest.java

            assertNotNull(creator1);
            assertNotNull(creator2);
            assertNotSame(creator1, creator2);
        }
    
        // Test with empty strings
        public void test_emptyStrings() {
            ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() {
                private static final long serialVersionUID = 1L;
    
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/DictionaryManager.java

        }
    
        /**
         * Adds a new dictionary creator to this manager.
         * Dictionary creators are responsible for creating specific types
         * of dictionary files based on file paths and timestamps.
         *
         * @param creator the dictionary creator to add
         */
        public void addCreator(final DictionaryCreator creator) {
            creatorList.add(creator);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

                    logger.warn("Failed to create system properties file.", e);
                }
            }
    
            final SuggestCreator creator = ComponentUtil.getComponent(SuggestCreator.class);
            final LocalDateTime startTime = LocalDateTime.now();
            int ret = creator.create();
            if (ret == 0) {
                ret = creator.purge(startTime);
            }
            return ret;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 11K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java

            assertEquals("test-name", options.name);
        }
    
        // Test create with search log enabled
        public void test_create_searchLogEnabled() {
            // Test configuration for search log creation
            SuggestCreator.Options options = new SuggestCreator.Options();
            assertNotNull(options);
        }
    
        // Test create with documents enabled
        public void test_create_documentsEnabled() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

        }
    
        /**
         * Performs a scroll search with custom entity creation.
         *
         * @param <T>       the entity type
         * @param index     the index name
         * @param condition the search condition
         * @param creator   the entity creator
         * @param cursor    the cursor function to process each entity
         * @return the number of documents processed
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java

        public void test_setPagerCustomizer_multiple_times() {
            // Create first customizer
            ComponentCustomizer customizer1 = new ComponentCustomizer() {
                @Override
                public void customize(org.lastaflute.di.core.ComponentDef componentDef) {
                    // First mock implementation
                }
            };
    
            // Create second customizer
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/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();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/SystemHelper.java

        }
    
        /**
         * Creates a temporary file.
         *
         * @param prefix The prefix for the file name.
         * @param suffix The suffix for the file name.
         * @return The created temporary file.
         * @throws IORuntimeException if the file cannot be created.
         */
        public File createTempFile(final String prefix, final String suffix) {
            try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/fileauth/ApiAdminFileauthAction.java

        }
    
        // POST /api/admin/fileauth/setting
        /**
         * Creates a new file authentication setting.
         * Validates that the associated file config ID is valid before creation.
         *
         * @param body file authentication setting data to create
         * @return JSON response with created setting ID and status
         */
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/CacheBuilder.java

     *   <li>notification of evicted (or otherwise removed) entries
     *   <li>accumulation of cache access statistics
     * </ul>
     *
     * <p>These features are all optional; caches can be created using all or none of them. By default,
     * cache instances created by {@code CacheBuilder} will not perform any type of eviction.
     *
     * <p>Usage example:
     *
     * {@snippet :
     * LoadingCache<Key, Graph> graphs = CacheBuilder.newBuilder()
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 51.7K bytes
    - Viewed (0)
Back to top