Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for KeyList (0.12 sec)

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

           * are off).
           */
          KeyList<K, V> keyList = requireNonNull(keyToKeyList.remove(node.getKey()));
          keyList.count = 0;
          modCount++;
        } else {
          // requireNonNull is safe (under the conditions listed in the comment in the branch above).
          KeyList<K, V> keyList = requireNonNull(keyToKeyList.get(node.getKey()));
          keyList.count--;
    
          if (node.previousSibling == null) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsCrawlingInfoParamCQ.java

            not(not -> not.setKey_Term(key), opLambda);
        }
    
        public void setKey_Terms(Collection<String> keyList) {
            setKey_Terms(keyList, null);
        }
    
        public void setKey_Terms(Collection<String> keyList, ConditionOptionCall<TermsQueryBuilder> opLambda) {
            TermsQueryBuilder builder = regTermsQ("key", keyList);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 36K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/RegularImmutableBiMap.java

      }
    
      @Override
      ImmutableSet<K> createKeySet() {
        @SuppressWarnings("unchecked")
        ImmutableList<K> keyList =
            (ImmutableList<K>)
                new RegularImmutableMap.KeysOrValuesAsList(alternatingKeysAndValues, keyOffset, size);
        return new RegularImmutableMap.KeySet<>(this, keyList);
      }
    
      @Override
      boolean isPartialView() {
        return false;
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/RegularImmutableMap.java

        }
      }
    
      @Override
      ImmutableSet<K> createKeySet() {
        @SuppressWarnings("unchecked")
        ImmutableList<K> keyList =
            (ImmutableList<K>) new KeysOrValuesAsList(alternatingKeysAndValues, 0, size);
        return new KeySet<K>(this, keyList);
      }
    
      static final class KeysOrValuesAsList extends ImmutableList<Object> {
        private final transient @Nullable Object[] alternatingKeysAndValues;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 22.5K bytes
    - Viewed (0)
Back to top