Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for totalCount (0.05 sec)

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

            newTop.distinctElements = distinctElements - 1;
            newTop.totalCount = totalCount - oldElemCount;
            return newTop.rebalance();
          } else {
            AvlNode<E> newTop = succ();
            newTop.right = right.removeMin(newTop);
            newTop.left = left;
            newTop.distinctElements = distinctElements - 1;
            newTop.totalCount = totalCount - oldElemCount;
            return newTop.rebalance();
          }
        }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 33.8K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProblemCollector.java

         *
         * @param <P> the type of problem
         */
        class Impl<P extends BuilderProblem> implements ProblemCollector<P> {
    
            private final int maxCountLimit;
            private final AtomicInteger totalCount;
            private final ConcurrentMap<BuilderProblem.Severity, LongAdder> counters;
            private final ConcurrentMap<BuilderProblem.Severity, List<P>> problems;
            private final Predicate<? super P> filter;
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jul 18 17:30:19 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java

                                true);
    
                final int totalCount = process(options);
                if (totalCount != 0) {
                    logger.info("Processed {} thumbnail task(s).", totalCount);
                } else {
                    logger.info("No new thumbnails found.");
                }
                exitCode = 0;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.3K bytes
    - Viewed (0)
Back to top