Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for lodash (0.04 sec)

  1. android/guava/src/com/google/common/collect/HashBiMap.java

          return HashBiMap.this.containsKey(o);
        }
    
        @Override
        public boolean remove(@Nullable Object o) {
          int oHash = Hashing.smearedHash(o);
          int entry = findEntryByKey(o, oHash);
          if (entry != ABSENT) {
            removeEntryKeyHashKnown(entry, oHash);
            return true;
          } else {
            return false;
          }
        }
      }
    
      @LazyInit private transient Set<V> valueSet;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

            new Equivalence<Object>() {
              @Override
              protected boolean doEquivalent(Object a, Object b) {
                return false;
              }
    
              @Override
              protected int doHash(Object t) {
                return 0;
              }
            };
    
        LocalCache<Object, Object> map =
            makeLocalCache(createCacheBuilder().keyEquivalence(testEquivalence));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 110.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/CacheLoader.java

       *
       * <p>The returned object is serializable if {@code function} is serializable.
       *
       * @param function the function to be used for loading values; must never return {@code null}
       * @return a cache loader that loads values by passing each key to {@code function}
       */
      public static <K, V> CacheLoader<K, V> from(Function<K, V> function) {
        return new FunctionToCacheLoader<>(function);
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/unit/TestSystemProperties.java

    import java.io.InputStream;
    import java.util.Properties;
    
    import org.codelibs.core.misc.DynamicProperties;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
     * Test implementation of system properties that loads from classpath
     */
    public class TestSystemProperties extends DynamicProperties {
    
        private static final Logger logger = LoggerFactory.getLogger(TestSystemProperties.class);
    
        public TestSystemProperties() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java

         */
        protected volatile Map<String, Map<String, List<Tuple3<String, QueryBuilder, ScoreFunctionBuilder<?>>>>> keyMatchQueryMap =
                Collections.emptyMap();
    
        /**
         * Initializes the helper.
         * It loads KeyMatch settings from the database.
         */
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

            // Default constructor - initialization is done in init() method
        }
    
        /**
         * Initializes the rank fusion processor after construction.
         * Sets up the window size based on configuration and loads available searchers.
         * This method is called automatically after the bean is constructed.
         */
        @PostConstruct
        public void init() {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/PluginHelper.java

            return split(ComponentUtil.getFessConfig().getPluginRepositories(), ",")
                    .get(stream -> stream.map(String::trim).toArray(n -> new String[n]));
        }
    
        /**
         * Loads artifacts from a YAML-based repository.
         *
         * @param url the URL of the YAML repository
         * @return a list of artifacts loaded from the repository
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/AdminDictStemmeroverrideAction.java

                    form.crudMode = CrudMode.CREATE;
                    form.dictId = dictId;
                });
            });
        }
    
        /**
         * Display the edit form for an existing stemmer override item.
         * Loads the item data and switches to edit mode or details view based on current state.
         *
         * @param form The edit form containing item ID and CRUD mode
         * @return HTML response for the edit page or details page
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.5K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.34.md

    - Graduated relaxed DNS search string validation to GA. For the Pod API, `.spec.dnsConfig.searches`
      now allows an underscore (`_`) where a dash (`-`) would be allowed, and it allows search strings be a single dot `.`. ([#132036](https://github.com/kubernetes/kubernetes/pull/132036), [@adrianmoisey](https://github.com/adrianmoisey)) [SIG Network and Testing]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 27 10:36:10 UTC 2025
    - 292.8K bytes
    - Viewed (0)
Back to top