Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 291 - 300 of 346 for Duplicates (0.06 seconds)

  1. guava/src/com/google/common/io/BaseEncoding.java

          for (int i = 0; i < chars.length; i++) {
            char c = chars[i];
            checkArgument(c < decodabet.length, "Non-ASCII character: %s", c);
            checkArgument(decodabet[c] == -1, "Duplicate character: %s", c);
            decodabet[c] = (byte) i;
          }
          return decodabet;
        }
    
        /** Returns an equivalent {@code Alphabet} except it ignores case. */
        Alphabet ignoreCase() {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Oct 06 14:51:47 GMT 2025
    - 41.7K bytes
    - Click Count (0)
  2. src/main/resources/fess_label_pt_BR.properties

    labels.dict_stemmeroverride_details=Dict Stemmeroverride Detalhes
    labels.dict_stopwords_details=Dict Stopwords Detalhes
    labels.dict_synonym_details=Dict Synonym Detalhes
    labels.duplicate_host_details=Duplicate Host Detalhes
    labels.elevate_word_details=Elevate Word Detalhes
    labels.failure_url_details=Failure Url Detalhes
    labels.file_auth_details=File Auth Detalhes
    labels.file_config_details=File Config Detalhes
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Dec 13 02:21:17 GMT 2025
    - 48.7K bytes
    - Click Count (0)
  3. src/main/resources/fess_label_de.properties

    labels.dict_stemmeroverride_details=Dict Stemmeroverride Details
    labels.dict_stopwords_details=Dict Stopwords Details
    labels.dict_synonym_details=Dict Synonym Details
    labels.duplicate_host_details=Duplicate Host Details
    labels.elevate_word_details=Elevate Word Details
    labels.failure_url_details=Failure Url Details
    labels.file_auth_details=File Auth Details
    labels.file_config_details=File Config Details
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Dec 13 02:21:17 GMT 2025
    - 46.9K bytes
    - Click Count (1)
  4. src/main/resources/fess_label_id.properties

    labels.dict_stemmeroverride_details=Dict Stemmeroverride Detail
    labels.dict_stopwords_details=Dict Stopwords Detail
    labels.dict_synonym_details=Dict Synonym Detail
    labels.duplicate_host_details=Duplicate Host Detail
    labels.elevate_word_details=Elevate Word Detail
    labels.failure_url_details=Failure Url Detail
    labels.file_auth_details=File Auth Detail
    labels.file_config_details=File Config Detail
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Dec 13 02:21:17 GMT 2025
    - 45.2K bytes
    - Click Count (0)
  5. src/main/resources/fess_label_pl.properties

    labels.dict_stemmeroverride_details=Dict Stemmeroverride Szczegóły
    labels.dict_stopwords_details=Dict Stopwords Szczegóły
    labels.dict_synonym_details=Dict Synonym Szczegóły
    labels.duplicate_host_details=Duplicate Host Szczegóły
    labels.elevate_word_details=Elevate Word Szczegóły
    labels.failure_url_details=Failure Url Szczegóły
    labels.file_auth_details=File Auth Szczegóły
    labels.file_config_details=File Config Szczegóły
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Dec 13 02:21:17 GMT 2025
    - 48.1K bytes
    - Click Count (0)
  6. src/main/resources/fess_label_tr.properties

    labels.dict_stemmeroverride_details=Dict Stemmeroverride Detaylar
    labels.dict_stopwords_details=Dict Stopwords Detaylar
    labels.dict_synonym_details=Dict Synonym Detaylar
    labels.duplicate_host_details=Duplicate Host Detaylar
    labels.elevate_word_details=Elevate Word Detaylar
    labels.failure_url_details=Failure Url Detaylar
    labels.file_auth_details=File Auth Detaylar
    labels.file_config_details=File Config Detaylar
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Dec 13 02:21:17 GMT 2025
    - 47K bytes
    - Click Count (0)
  7. cmd/erasure-object.go

    // DeleteObjects deletes objects/versions in bulk, this function will still automatically split objects list
    // into smaller bulks if some object names are found to be duplicated in the delete list, splitting
    // into smaller bulks will avoid holding twice the write lock of the duplicated object names.
    func (er erasureObjects) DeleteObjects(ctx context.Context, bucket string, objects []ObjectToDelete, opts ObjectOptions) ([]DeletedObject, []error) {
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Oct 24 04:05:31 GMT 2025
    - 80.4K bytes
    - Click Count (0)
  8. tensorflow/c/c_api.cc

        TF_EXCLUSIVE_LOCKS_REQUIRED(desc->graph->mu) {
      Node* ret = nullptr;
    
      if (desc->graph->name_map.count(desc->node_builder.node_name())) {
        status->status = InvalidArgument("Duplicate node name in graph: '",
                                         desc->node_builder.node_name(), "'");
      } else {
        if (!desc->colocation_constraints.empty()) {
          desc->node_builder.Attr(
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Sat Oct 04 05:55:32 GMT 2025
    - 102.4K bytes
    - Click Count (0)
  9. CHANGELOG/CHANGELOG-1.3.md

    * AWS kube-up: Increase timeout waiting for docker start ([#25405](https://github.com/kubernetes/kubernetes/pull/25405), [@justinsb](https://github.com/justinsb))
    * Sort resources in quota errors to avoid duplicate events ([#25161](https://github.com/kubernetes/kubernetes/pull/25161), [@derekwaynecarr](https://github.com/derekwaynecarr))
    Created: Fri Dec 26 09:05:12 GMT 2025
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 84K bytes
    - Click Count (0)
  10. guava/src/com/google/common/cache/LocalCache.java

      @SuppressWarnings("unchecked") // impl never uses a parameter or returns any non-null value
      static <E> Queue<E> discardingQueue() {
        return (Queue) DISCARDING_QUEUE;
      }
    
      /*
       * Note: All of this duplicate code sucks, but it saves a lot of memory. If only Java had mixins!
       * To maintain this code, make a change for the strong reference type. Then, cut and paste, and
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Sep 11 19:35:11 GMT 2025
    - 148.9K bytes
    - Click Count (0)
Back to Top