Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 77 for refreshes (0.05 sec)

  1. android/guava-tests/test/com/google/common/cache/CacheBuilderFactory.java

        }
        if (expireAfterAccess != null) {
          builder.expireAfterAccess(expireAfterAccess.duration, expireAfterAccess.unit);
        }
        if (refresh != null) {
          builder.refreshAfterWrite(refresh.duration, refresh.unit);
        }
        if (keyStrength != null) {
          builder.setKeyStrength(keyStrength);
        }
        if (valueStrength != null) {
          builder.setValueStrength(valueStrength);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/entity/FessUser.java

         */
        default boolean isEditable() {
            return false;
        }
    
        /**
         * Refreshes the user's information from the underlying data source.
         * @return True if refresh was successful, false otherwise.
         */
        default boolean refresh() {
            return false;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java

            return duplicateHostBhv.selectByPK(id);
        }
    
        /**
         * Stores (inserts or updates) a duplicate host configuration.
         *
         * <p>This method immediately refreshes the index to ensure the change is visible.
         * If the configuration already exists (based on ID), it will be updated;
         * otherwise, a new configuration will be created.</p>
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/CacheBuilder.java

       * implementation; otherwise refreshes will be performed during unrelated cache read and write
       * operations.
       *
       * <p>Currently automatic refreshes are performed when the first stale request for an entry
       * occurs. The request triggering refresh will make a synchronous call to {@link
       * CacheLoader#reload}
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 51.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/DataConfigService.java

            return dataConfigList;
        }
    
        /**
         * Deletes the specified data configuration from the system.
         *
         * <p>This operation permanently removes the data configuration and
         * immediately refreshes the index to ensure the change is visible.</p>
         *
         * @param dataConfig the data configuration to delete
         * @throws IllegalArgumentException if dataConfig is null
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

            return numOfDeleted;
        }
    
        /**
         * Refreshes the specified index to make recent changes visible for search.
         * This operation ensures that all pending writes are persisted and searchable.
         *
         * @param searchEngineClient the search engine client to use for refresh
         * @param index the index name to refresh
         * @return the refresh status code
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.1K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/entity/FessUserTest.java

            assertTrue(user.refresh());
            assertEquals(1, user.getRefreshCount());
    
            // Test multiple refreshes
            user.refresh();
            user.refresh();
            assertEquals(3, user.getRefreshCount());
    
            // Test custom implementation that returns false
            user = new TestRefreshableFessUser("testuser", false);
            assertFalse(user.refresh());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/ds/DataStoreFactory.java

         * This cache is refreshed periodically based on the lastLoadedTime.
         */
        protected String[] dataStoreNames = StringUtil.EMPTY_STRINGS;
    
        /**
         * Timestamp of the last time data store names were loaded from plugin files.
         * Used to implement a time-based cache refresh mechanism.
         */
        protected long lastLoadedTime = 0;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

         */
        public void deleteBadWord(final String badWord) {
            suggester.indexer().deleteBadWord(badWord);
            refresh();
        }
    
        /**
         * Refreshes the suggest index.
         */
        public synchronized void refresh() {
            suggester.refresh();
            if (popularWordHelper != null) {
                popularWordHelper.clearCache();
            }
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java

        public ActionResponse godHandPrologue(final ActionRuntime runtime) {
            fessLoginAssist.getSavedUserBean().ifPresent(u -> {
                final boolean result = u.getFessUser().refresh();
                if (logger.isDebugEnabled()) {
                    logger.debug("refresh user info: {}", result);
                }
            });
            return viewHelper.getActionHook().godHandPrologue(runtime, super::godHandPrologue);
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15K bytes
    - Viewed (0)
Back to top