Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 68 for lodash (0.03 sec)

  1. guava-testlib/test/com/google/common/testing/EquivalenceTesterTest.java

        }
    
        @Override
        protected boolean doEquivalent(Object a, Object b) {
          return equivalentExpectations.get(a, b);
        }
    
        @Override
        protected int doHash(Object object) {
          return hashExpectations.get(object);
        }
    
        void checkRecording() {
          checkState(equivalentExpectations == null && hashExpectations == null);
        }
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Dec 27 16:19:35 UTC 2024
    - 8.4K 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. src/main/resources/fess_indices/fess/pt-br/stopwords.txt

    propios
    quais
    qual
    qualquer
    quando
    quanto
    que
    quem
    quer
    se
    seja
    sem
    sendo
    seu
    seus
    sob
    sobre
    sua
    suas
    tal
    tambem
    teu
    teus
    toda
    todas
    todo
    todos
    tua
    tuas
    tudo
    um
    uma
    umas
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 820 bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java

            super();
        }
    
        /**
         * Initializes the RelatedQueryHelper after dependency injection is complete.
         * This method is called automatically by the dependency injection framework
         * and loads the initial related query configurations.
         */
        @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 Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  5. 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)
  6. src/main/java/org/codelibs/fess/auth/AuthenticationManager.java

         * @param user The user to delete.
         */
        public void delete(final User user) {
            chains().of(stream -> stream.forEach(c -> c.delete(user)));
        }
    
        /**
         * Loads user information by processing through all authentication chains.
         * @param user The user template containing search criteria.
         * @return The loaded and enriched user information.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/auth/chain/AuthenticationChain.java

         * @param password The new password.
         * @return True if the password was successfully changed, false otherwise.
         */
        boolean changePassword(String username, String password);
    
        /**
         * Loads user information from the authentication chain.
         * @param user The user template containing search criteria.
         * @return The loaded user, or null if not found.
         */
        User load(User user);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/entity/HighlightInfo.java

        private int numOfFragments;
        /** The offset for fragment positioning. */
        private int fragmentOffset;
    
        /**
         * Default constructor that initializes highlighting settings from Fess configuration.
         * Loads default values for type, fragment size, number of fragments, and fragment offset.
         */
        public HighlightInfo() {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  9. 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)
  10. android/guava/src/com/google/common/base/internal/Finalizer.java

     * you want to throw away the class loader. For example, dynamically reloading a web application or
     * unloading an OSGi bundle.
     *
     * <p>{@code com.google.common.base.FinalizableReferenceQueue} loads this class in its own class
     * loader. That way, this class doesn't prevent the main class loader from getting garbage
     * collected, and this class can detect when the main class loader has been garbage collected and
     * stop itself.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top