Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 146 for refreshes (0.05 seconds)

  1. 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("Refreshed user info: result={}", result);
                }
            });
            return viewHelper.getActionHook().godHandPrologue(runtime, super::godHandPrologue);
        }
    
        /**
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 15K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java

            buildLabelTypePatternList(labelTypeList);
            return labelTypeList.size();
        }
    
        /**
         * Refreshes the label type items and patterns.
         *
         * @param labelTypeList The list of label types.
         */
        public void refresh(final List<LabelType> labelTypeList) {
            buildLabelTypeItems(labelTypeList);
            buildLabelTypePatternList(labelTypeList);
        }
    
        /**
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 14.8K bytes
    - Click Count (0)
  3. 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();
            }
        }
    
        /**
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 22.3K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/ApiAdminElevatewordAction.java

        }
    
        // PUT /api/admin/elevateword/setting
        /**
         * Updates an existing elevate word setting.
         * Refreshes all elevate words in the suggest helper to maintain consistency.
         *
         * @param body elevate word setting data to update
         * @return JSON response with updated setting ID and status
         */
        @Execute
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 12.8K bytes
    - Click Count (0)
  5. internal/dsync/drwmutex.go

    				log("dsync: Unable to call Refresh failed with %s for %#v at %s\n", err, args, c)
    			} else {
    				ch <- refreshResult{refreshed: refreshed}
    				log("dsync: Refresh returned false for %#v at %s\n", args, c)
    			}
    		}(index, c)
    	}
    
    	// Wait until we have either
    	//
    	// a) received all refresh responses
    	// b) received too many refreshed for quorum to be still possible
    	// c) timed out
    	//
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 20.3K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

            }
            return OptionalThing.of(pipeline);
        }
    
        /**
         * Refreshes the crawling configuration cache by invalidating all cached entries.
         * This forces the next access to reload configurations from the underlying services.
         */
        public void refresh() {
            crawlingConfigCache.invalidateAll();
        }
    
        /**
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 19.5K bytes
    - Click Count (1)
  7. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            return designJspFileNameMap.entrySet().stream().map(e -> new Pair<>(e.getKey(), e.getValue())).toArray(n -> new Pair[n]);
        }
    
        /**
         * Refreshes the design JSP files for all virtual hosts.
         *
         * @return A list of paths to the refreshed files.
         */
        public List<Path> refreshDesignJspFiles() {
            final List<Path> fileList = new ArrayList<>();
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Dec 20 08:30:43 GMT 2025
    - 36.6K bytes
    - Click Count (0)
  8. guava/src/com/google/common/cache/LocalCache.java

         * Returns the newly refreshed value associated with {@code key} if it was refreshed inline, or
         * {@code null} if another thread is performing the refresh or if an error occurs during
         * refresh.
         */
        @CanIgnoreReturnValue
        @Nullable V refresh(K key, int hash, CacheLoader<? super K, V> loader, boolean checkTime) {
          LoadingValueReference<K, V> loadingValueReference =
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Sep 11 19:35:11 GMT 2025
    - 148.9K bytes
    - Click Count (0)
  9. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java

            }
        }
    
        /**
         * Refreshes the OpenSearch index to make recent changes visible for search.
         *
         * @return The RefreshResponse from OpenSearch.
         * @throws OpenSearchAccessException if the refresh operation fails.
         */
        protected RefreshResponse refresh() {
            try {
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Thu Nov 20 08:40:57 GMT 2025
    - 34.3K bytes
    - Click Count (0)
  10. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

         * exist among Java System Properties, and collects all they key it pushes. Second invocation happens AFTER
         * {@link PropertyContributor} SPI invocation, and "refreshes" already pushed user properties by re-writing them
         * as SPI may have modified them.
         */
        protected void pushUserProperties(C context) throws Exception {
            ProtoSession protoSession = context.protoSession;
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Oct 28 13:01:07 GMT 2025
    - 43.2K bytes
    - Click Count (0)
Back to Top