Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 374 for Stores (0.06 sec)

  1. src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java

        }
    
        // Test multiple data store registration
        public void test_multipleDataStores() {
            TestDataStore dataStore1 = new TestDataStore("Store1");
            TestDataStore2 dataStore2 = new TestDataStore2("Store2");
    
            dataStoreFactory.add("store1", dataStore1);
            dataStoreFactory.add("store2", dataStore2);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

                failureUrlService.store(crawlingConfig, ContentNotFoundException.class.getCanonicalName(), url,
                        new ContentNotFoundException(urlQueue.getParentUrl(), url));
            }
        }
    
        /**
         * Stores a child URL in the crawling queue with duplicate host handling.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/CharMappingService.java

        }
    
        /**
         * Stores a character mapping item in the specified dictionary.
         * <p>
         * This method performs either an insert operation (for new items with ID 0)
         * or an update operation (for existing items with non-zero ID) depending on
         * the item's current state.
         * </p>
         *
         * @param dictId the dictionary ID to store the character mapping item in
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/JobLogService.java

            return jobLogBhv.selectByPK(id);
        }
    
        /**
         * Stores a job log entry in the database.
         * Performs an insert or update operation based on whether the job log already exists.
         *
         * @param jobLog the job log to store
         */
        public void store(final JobLog jobLog) {
    
            jobLogBhv.insertOrUpdate(jobLog, op -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/UserService.java

            });
        }
    
        /**
         * Stores (inserts or updates) a user in the system.
         * Handles user authentication setup and database persistence.
         * If the surname is blank, it will be set to the user's name.
         *
         * @param user the user entity to store
         */
        public void store(final User user) {
            if (StringUtil.isBlank(user.getSurname())) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

            return crawlingInfoBhv.selectByPK(id);
        }
    
        /**
         * Stores (inserts or updates) a crawling information record.
         * Sets up the store conditions including creation time if not already set,
         * then performs an insert or update operation with immediate refresh.
         *
         * @param crawlingInfo the crawling information entity to store
         * @throws FessSystemException if the crawling information is null
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/curl/CurlResponse.java

         */
        public CurlResponse() {
            // nothing
        }
    
        /**
         * The HTTP status code of the response.
         */
        private int httpStatusCode;
    
        /**
         * The content cache that stores the response content.
         */
        private ContentCache contentCache;
    
        /**
         * The encoding used for the response content.
         */
        private String encoding;
    
        /**
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Sat Jul 05 01:38:18 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/DataConfigService.java

         * otherwise, a new configuration will be created.</p>
         *
         * @param dataConfig the data configuration to store
         * @throws IllegalArgumentException if dataConfig is null
         */
        public void store(final DataConfig dataConfig) {
            dataConfig.setHandlerParameter(ParameterUtil.encrypt(dataConfig.getHandlerParameter()));
            dataConfigBhv.insertOrUpdate(dataConfig, op -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/BadWordService.java

         */
        public OptionalEntity<BadWord> getBadWord(final String id) {
            return badWordBhv.selectByPK(id);
        }
    
        /**
         * Stores (inserts or updates) a bad word.
         * @param badWord The bad word to store.
         */
        public void store(final BadWord badWord) {
    
            badWordBhv.insertOrUpdate(badWord, op -> op.setRefreshPolicy(Constants.TRUE));
    
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

                        return cookie.getValue();
                    }
                }
            }
            return null;
        }
    
        /**
         * Stores the document IDs associated with a search query for tracking purposes.
         * This method caches the document IDs returned for a specific query to enable click tracking and analytics.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.9K bytes
    - Viewed (0)
Back to top