Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for adaptive (0.04 sec)

  1. src/main/resources/fess_config.properties

    python.command.path=python
    # Encoding for file paths.
    path.encoding=UTF-8
    # Whether to use a dedicated temporary directory.
    use.own.tmp.dir=true
    # Maximum length of log output.
    max.log.output.length=4000
    # Adaptive load control value.
    adaptive.load.control=50
    # Supported JavaScript file extensions for upload.
    supported.uploaded.js.extentions=js
    # Supported CSS file extensions for upload.
    supported.uploaded.css.extentions=css
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'adaptive.load.control'. <br>
         * The value is, e.g. 50 <br>
         * comment: Adaptive load control value.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getAdaptiveLoadControl();
    
        /**
         * Get the value for the key 'adaptive.load.control' as {@link Integer}. <br>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  3. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

            if (StringUtil.isBlank(fessConfig.getIndexReindexRequestsPerSecond())) {
                return null;
            }
            final String value = fessConfig.getIndexReindexRequestsPerSecond();
            if ("adaptive".equalsIgnoreCase(value)) {
                if (fessConfig.availableProcessors() >= 4) {
                    return null;
                }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/VirtualHostHelperTest.java

            result = virtualHostHelper.processVirtualHost(s -> "processed_" + s, "default");
            assertEquals("processed_site1", result);
    
            // Headers persist in same request, so subsequent headers are additive
            // Test with case insensitive matching
            request.addHeader("X-Forwarded-Host", "TEST.COM");
            result = virtualHostHelper.processVirtualHost(s -> "processed_" + s, "default");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/math/LongMath.java

          // Both a and b are odd. Assume a > b; then gcd(a - b, b) = gcd(a, b).
          // But in gcd(a - b, b), a - b is even and b is odd, so we can divide out powers of two.
    
          // We bend over backwards to avoid branching, adapting a technique from
          // http://graphics.stanford.edu/~seander/bithacks.html#IntegerMinOrMax
    
          long delta = a - b; // can't overflow, since a and b are nonnegative
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Aug 29 16:20:07 UTC 2025
    - 46.8K bytes
    - Viewed (0)
Back to top