Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for occurrences (0.07 sec)

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

          checkNonnegative(occurrences, "occurrences");
          if (occurrences == 0) {
            return count(element);
          }
    
          Collection<V> values = Maps.safeGet(multimap.asMap(), element);
    
          if (values == null) {
            return 0;
          }
    
          int oldCount = values.size();
          if (occurrences >= oldCount) {
            values.clear();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 86.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Multimaps.java

          checkNonnegative(occurrences, "occurrences");
          if (occurrences == 0) {
            return count(element);
          }
    
          Collection<V> values = Maps.safeGet(multimap.asMap(), element);
    
          if (values == null) {
            return 0;
          }
    
          int oldCount = values.size();
          if (occurrences >= oldCount) {
            values.clear();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 86.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Preconditions.java

     * strings. This only supports the {@code "%s"} specifier, not the full range of {@link
     * java.util.Formatter} specifiers. However, note that if the number of arguments does not match the
     * number of occurrences of {@code "%s"} in the format string, {@code Preconditions} will still
     * behave as expected, and will still include all argument values in the error message; the message
     * will simply not be formatted exactly as intended.
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 10 22:11:00 UTC 2025
    - 53K bytes
    - Viewed (0)
Back to top