Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 77 for refreshes (0.08 sec)

  1. 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);
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.8K bytes
    - Viewed (0)
  2. 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();
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.5K bytes
    - Viewed (0)
  3. 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
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  4. 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<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

        assertFalse(map.evictsBySize());
        assertFalse(map.expires());
        assertFalse(map.expiresAfterWrite());
        assertFalse(map.expiresAfterAccess());
        assertFalse(map.refreshes());
      }
    
      public void testSetKeyEquivalence() {
        Equivalence<Object> testEquivalence =
            new Equivalence<Object>() {
              @Override
              protected boolean doEquivalent(Object a, Object b) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 110.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

            }
        }
    
        /**
         * Refreshes the specified indices to make recent changes visible for search.
         *
         * @param indices the indices to refresh
         */
        public void refresh(final String... indices) {
            client.admin().indices().prepareRefresh(indices).execute(new ActionListener<RefreshResponse>() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/cache/CacheLoadingTest.java

        ConcurrentMap<String, String> map = cache.asMap();
        map.put(refreshKey, refreshKey);
        assertEquals(1, map.size());
        assertFalse(map.containsKey(getKey));
        assertSame(refreshKey, map.get(refreshKey));
    
        new Thread() {
          @Override
          public void run() {
            cache.getUnchecked(getKey);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 85.7K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.8.md

    #### Garbage Collector
    * The garbage collector now supports custom APIs added via Custom Resource Definitions
      or aggregated API servers. The garbage collector controller refreshes periodically.
      Therefore, expect a latency of about 30 seconds between when an API is added and when
      the garbage collector starts to manage it.
    
    
    #### Monitoring/Prometheus
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/base/login/AzureAdCredential.java

                        if (logger.isDebugEnabled()) {
                            logger.debug("Token refreshed successfully via silent authentication");
                        }
                        return true;
                    }
                } catch (final Exception e) {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Silent token refresh failed: {}", e.getMessage());
                    }
                }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 28 09:13:08 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

                    webConfig.setId(id + "_refreshed");
                    return OptionalEntity.of(webConfig);
                }
    
                @Override
                public OptionalEntity<WebConfig> getWebConfigByName(String name) {
                    return OptionalEntity.empty();
                }
            }, WebConfigService.class.getCanonicalName());
    
            // Without refresh, should still get cached version
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 34.9K bytes
    - Viewed (0)
Back to top