Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for replicas (0.14 sec)

  1. src/main/resources/fess_config.properties

    # Number of primary shards for crawler filter index.
    index.document.crawler.filter.number_of_shards=10
    # Number of replicas for crawler queue index.
    index.document.crawler.queue.number_of_replicas=1
    # Number of replicas for crawler data index.
    index.document.crawler.data.number_of_replicas=1
    # Number of replicas for crawler filter index.
    index.document.crawler.filter.number_of_replicas=1
    # Index name for configuration data.
    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/crawler/transformer/FessXpathTransformer.java

                }
            } catch (final Exception e) {
                logger.warn("Could not parse a value of {}", xpath, e);
            }
            return buf.toString().trim();
        }
    
        /**
         * Replaces duplicate hosts in the URL using the duplicate host helper.
         *
         * @param url the URL to process
         * @return the URL with duplicate hosts replaced
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            } catch (final Exception e) {
                logger.warn("Failed to create a cache response.", e);
            }
    
            return null;
        }
    
        /**
         * Replaces search queries with highlighted versions in cached content.
         * Preserves HTML tags while highlighting text content.
         *
         * @param cache the cached content
         * @param queries the search queries to highlight
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
  4. okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt

     * string `cute #puppies` is encoded as `cute%20%23puppies` when used as a query parameter value.
     *
     * ### Percent encoding
     *
     * Percent encoding replaces a character (like `\ud83c\udf69`) with its UTF-8 hex bytes (like
     * `%F0%9F%8D%A9`). This approach works for whitespace characters, control characters, non-ASCII
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 63.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/ldap/LdapManager.java

            if (fessConfig.isLdapGroupNameWithUnderscores()) {
                return replaceWithUnderscores(value);
            }
            return value;
        }
    
        /**
         * Replaces special characters in a string with underscores for group names.
         *
         * @param value the string to process
         * @return the string with special characters replaced by underscores
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 82K bytes
    - Viewed (0)
Back to top