Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

           * are off).
           */
          KeyList<K, V> keyList = requireNonNull(keyToKeyList.remove(node.key));
          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.key));
          keyList.count--;
    
          if (node.previousSibling == null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/LinkedListMultimap.java

           * are off).
           */
          KeyList<K, V> keyList = requireNonNull(keyToKeyList.remove(node.key));
          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.key));
          keyList.count--;
    
          if (node.previousSibling == null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 36K 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: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 15 22:32:14 UTC 2024
    - 22.7K bytes
    - Viewed (0)
Back to top