Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for destroyed (0.17 sec)

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

         * modifications, or we'll modify the already-built ImmutableMultiset.
         */
        boolean buildInvoked = false;
        /**
         * In the event of a setCount(elem, 0) call, we may need to remove elements, which destroys the
         * insertion order property of ObjectCountHashMap. In that event, we need to convert to a
         * ObjectCountLinkedHashMap, but we need to know we did that so we can convert back.
         */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 22.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/TreeMultiset.java

            Comparator<? super E> comparator, @ParametricNullness E e, int count, int[] result) {
          /*
           * It speeds things up considerably to unconditionally add count to totalCount here,
           * but that destroys failure atomicity in the case of count overflow. =(
           */
          int cmp = comparator.compare(e, getElement());
          if (cmp < 0) {
            AvlNode<E> initLeft = left;
            if (initLeft == null) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 34.2K bytes
    - Viewed (0)
Back to top