Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for totalCount (0.56 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. 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