Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for replicas (0.24 sec)

  1. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

       * empty, the multimap may contain subsequently added values for that key. To
       * handle that situation, the WrappedCollection checks whether map contains
       * an entry for the provided key, and if so replaces the delegate.
       */
    
      private transient Map<K, Collection<V>> map;
      private transient int totalSize;
    
      /**
       * Creates a new multimap that uses the provided map.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Aug 12 15:51:57 UTC 2025
    - 48.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/lang/StringUtil.java

         * @param text the string to check
         * @return true if not empty, false otherwise
         */
        public static final boolean isNotEmpty(final String text) {
            return !isEmpty(text);
        }
    
        /**
         * Replaces all occurrences of a substring within a string with another string.
         *
         * @param text
         *            The original string.
         * @param fromText
         *            The substring to be replaced.
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 21.9K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.32.md

    - Output for the `ScalingReplicaSet` event has changed from:
          Scaled <up|down> replica set <replica-set-name> to <new-value> from <old-value>
      to:
          Scaled <up|down> replica set <replica-set-name> from <old-value> to <new-value>. ([#125118](https://github.com/kubernetes/kubernetes/pull/125118), [@jsoref](https://github.com/jsoref)) [SIG Apps and CLI]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 14:49:49 UTC 2025
    - 412.3K bytes
    - Viewed (0)
  4. docs/changelogs/changelog_2x.md

     *  Fix: Don't resolve DNS addresses when connecting through a SOCKS proxy.
     *  Fix: Drop the synthetic `OkHttp-Selected-Protocol` response header.
     *  Fix: Support 204 and 205 'No Content' replies in the logging interceptor.
     *  New: Add `Call.isExecuted()`.
    
    
    ## Version 2.6.0
    
    _2015-11-22_
    
     *  **New Logging Interceptor.** The `logging-interceptor` subproject offers
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_nl.properties

    labels.searchlog_requestedtime=Tijd
    labels.searchlog_accesstype=Toegangstype
    labels.maintenance_title_configuration=Onderhoud
    labels.number_of_shards_for_doc=Aantal shards
    labels.auto_expand_replicas_for_doc=Maximaal aantal replica's
    labels.clear_crawler_index=Crawler-index
    labels.clear_crawler_index_button=Crawler-index verwijderen
    labels.diagnostic_logs=Diagnostiek
    labels.download_diagnostic_logs_button=Logboeken downloaden
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 42.8K bytes
    - Viewed (1)
  6. src/main/resources/fess_label_it.properties

    labels.searchlog_requestedtime=Ora
    labels.searchlog_accesstype=Tipo di accesso
    labels.maintenance_title_configuration=Manutenzione
    labels.number_of_shards_for_doc=Numero di shard
    labels.auto_expand_replicas_for_doc=Numero massimo di repliche
    labels.clear_crawler_index=Indice crawler
    labels.clear_crawler_index_button=Elimina indice crawler
    labels.diagnostic_logs=Diagnostica
    labels.download_diagnostic_logs_button=Scarica log
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 43.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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