Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 190 for duplicate (0.16 sec)

  1. android/guava/src/com/google/common/collect/TreeBasedTable.java

          @CheckForNull
          protected C computeNext() {
            while (merged.hasNext()) {
              C next = merged.next();
              boolean duplicate = lastValue != null && comparator.compare(next, lastValue) == 0;
    
              // Keep looping till we find a non-duplicate value.
              if (!duplicate) {
                lastValue = next;
                return lastValue;
              }
            }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 11.4K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSettingsValidator.java

                                BuilderProblem.Severity.WARNING,
                                "servers.server.id",
                                null,
                                "must be unique but found duplicate server with id " + server.getId());
                    }
                }
            }
    
            List<Mirror> mirrors = settings.getMirrors();
    
            if (mirrors != null) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 13.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsbhv/BsDuplicateHostBhv.java

        }
    
        @Override
        protected String asEsIndex() {
            return "fess_config.duplicate_host";
        }
    
        @Override
        public String asEsIndexType() {
            return "duplicate_host";
        }
    
        @Override
        public String asEsSearchType() {
            return "duplicate_host";
        }
    
        @Override
        public DuplicateHostDbm asDBMeta() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.8K bytes
    - Viewed (0)
  4. internal/logger/logger.go

    // will be called for a pretty rendering of fatal errors.
    func RegisterError(f func(string, error, bool) string) {
    	errorFmtFunc = f
    }
    
    // uniq swaps away duplicate elements in data, returning the size of the
    // unique set. data is expected to be pre-sorted, and the resulting set in
    // the range [0:size] will remain in sorted order. Uniq, following a
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat May 04 00:17:57 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/google/MultisetTestSuiteBuilder.java

        }
    
        @Override
        public Set<E> create(Object... elements) {
          Object[] duplicated = new Object[elements.length * 2];
          for (int i = 0; i < elements.length; i++) {
            duplicated[i] = elements[i];
            duplicated[i + elements.length] = elements[i];
          }
          return ((Multiset<E>) gen.create(duplicated)).elementSet();
        }
    
        @Override
        public E[] createArray(int length) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Feb 26 19:46:10 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  6. src/main/resources/fess_label.properties

    labels.pathmap_pt_displaying=Displaying
    labels.pathmap_pt_both=Crawling/Displaying
    labels.pathmap_pt_stored=Stored URLs
    labels.regular_name=Regular Name
    labels.duplicate_name=Duplicate Name
    labels.duplicate_host_configuration=Duplicate Host
    labels.duplicate_host_title_details=Duplicate Host
    labels.dashboard_title_configuration=System Configuration
    labels.suggest_search_log_enabled=Suggest from Search Words
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (1)
  7. src/main/resources/fess_label_en.properties

    labels.pathmap_pt_displaying=Displaying
    labels.pathmap_pt_both=Crawling/Displaying
    labels.pathmap_pt_stored=Stored URLs
    labels.regular_name=Regular Name
    labels.duplicate_name=Duplicate Name
    labels.duplicate_host_configuration=Duplicate Host
    labels.duplicate_host_title_details=Duplicate Host
    labels.dashboard_title_configuration=System Configuration
    labels.suggest_search_log_enabled=Suggest from Search Words
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ImmutableSortedSet.java

        public Builder<E> add(E element) {
          super.add(element);
          return this;
        }
    
        /**
         * Adds each element of {@code elements} to the {@code ImmutableSortedSet}, ignoring duplicate
         * elements (only the first duplicate element is added).
         *
         * @param elements the elements to add
         * @return this {@code Builder} object
         * @throws NullPointerException if {@code elements} contains a null element
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/util/ComponentUtil.java

        private static final String PROCESS_HELPER = "processHelper";
    
        private static final String JOB_HELPER = "jobHelper";
    
        private static final String DUPLICATE_HOST_HELPER = "duplicateHostHelper";
    
        private static final String PATH_MAPPING_HELPER = "pathMappingHelper";
    
        private static final String POPULAR_WORD_HELPER = "popularWordHelper";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 20K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/DuplicateHostDbm.java

        //                                                                          ==========
        protected final String _tableDbName = "duplicate_host";
        protected final String _tableDispName = "duplicate_host";
        protected final String _tablePropertyName = "DuplicateHost";
    
        public String getTableDbName() {
            return _tableDbName;
        }
    
        @Override
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.5K bytes
    - Viewed (0)
Back to top