Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for hit (0.11 sec)

  1. src/main/resources/fess_config.properties

    # Parameter name for browser language in queries.
    query.browser.lang.parameter.name=browser_lang
    # Whether to replace term with prefix query.
    query.replace.term.with.prefix.query=true
    # Minimum hit count for OR search queries.
    query.orsearch.min.hit.count=-1
    # Unicode terminal characters for query highlighting.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 11 09:47:03 UTC 2025
    - 54.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       *
       * The Least Recently Used page replacement algorithm was chosen due to its simplicity, high hit
       * rate, and ability to be implemented with O(1) time complexity. The initial LRU implementation
       * operates per-segment rather than globally for increased implementation simplicity. We expect
       * the cache hit rate to be similar to that of a global LRU algorithm.
       */
    
      // Constants
    
      /**
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 18:35:44 UTC 2025
    - 89.9K bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                    putCache(request.getModelCache(), groupId, artifactId, version, ModelCacheTag.RAW, parentData);
                } else {
                    /*
                     * NOTE: This is a sanity check of the cache hit. If the cached parent POM was locally resolved, the
                     * child's <relativePath> should point at that parent, too. If it doesn't, we ignore the cache and
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Mar 30 23:08:08 UTC 2025
    - 55.3K bytes
    - Viewed (0)
  4. compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                                + ". Building this project requires a newer version of Maven.",
                        tracker);
    
            } else if (olderThanAll) {
                // note this will not be hit for Maven 1.x project.xml as it is an incompatible schema
                addViolation(
                        problems,
                        Severity.FATAL,
                        Version.V20,
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 03 15:06:05 UTC 2025
    - 66.8K bytes
    - Viewed (0)
  5. .bazelrc

    # _USE_MATH_DEFINES is defined.
    common:windows --copt=/D_USE_MATH_DEFINES
    common:windows --host_copt=/D_USE_MATH_DEFINES
    
    # Windows has a relatively short command line limit, which TF has begun to hit.
    # See https://docs.bazel.build/versions/main/windows.html
    common:windows --features=compiler_param_file
    common:windows --features=archive_param_file
    
    Registered: Tue Dec 30 12:39:10 UTC 2025
    - Last Modified: Fri Dec 26 23:20:26 UTC 2025
    - 56.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java

            final Pair<String[], String[]> cachedResult = groupCache.getIfPresent(id);
            if (cachedResult != null) {
                if (logger.isDebugEnabled()) {
                    logger.debug("[getParentGroup] Cache HIT for id: {}, groups: {}, roles: {}", id, cachedResult.getFirst().length,
                            cachedResult.getSecond().length);
                }
                return cachedResult;
            }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 56.7K bytes
    - Viewed (0)
Back to top