- Sort Score
- Result 10 results
- Languages All
Results 601 - 610 of 1,961 for isobject (0.05 sec)
-
BsSearchLogCQ.java
setAccessType_GreaterThan(String accessType) { L332: setAccessType_GreaterThan(accessType, null); L333: } L334: L335: public void setAccessType_GreaterThan(String accessType, ConditionOptionCall<RangeQueryBuilder> opLambda) { L336: final Object _value = accessType; L337: RangeQueryBuilder builder = regRangeQ("accessType", ConditionKey.CK_GREATER_THAN, _value); L338: if (opLambda != null) { L339: opLambda.callback(builder); L340: } L341: } L342: L343: ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 145.4K bytes -
CompactHashSet.java
position. L480: */ L481: void moveLastEntry(int dstIndex, int mask) { L482: Object table = requireTable(); L483: int[] entries = requireEntries(); L484: @Nullable Object[] elements = requireElements(); L485: int srcIndex = size() - 1; L486: if (dstIndex < srcIndex) { L487: // move last entry to deleted spot L488: Object object = elements[srcIndex]; L489: elements[dstIndex] = object; L490: elements[srcIndex] = null; L491: L492: // move the last entry to the...github.com/google/guava/android/guava/src/com/g...Fri Oct 18 20:24:49 UTC 2024 24K bytes -
ProtwordsTests.java
{ L64: return DICT_TYPE; L65: } L66: L67: @Override L68: protected Map<String, Object> createTestParam(int id) { L69: final Map<String, Object> requestBody = new HashMap<>(); L70: final String keyProp = NAME_PREFIX + id; L71: requestBody.put(KEY_PROPERTY, keyProp); L72: return requestBody; L73: } L74: L75: @Override L76: protected Map<String, Object> getUpdateMap() { L77: fail(); // Unreachable L78: return null; L79: } L80: L81:...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.3K bytes -
FilteredEntrySetMultimap.java
Implementation of {@link Multimaps#filterEntries(SetMultimap, Predicate)}. L28: * L29: * @author Louis Wasserman L30: */ L31:@GwtCompatible L32:@ElementTypesAreNonnullByDefault L33:final class FilteredEntrySetMultimap<K extends @Nullable Object, V extends @Nullable Object> L34: extends FilteredEntryMultimap<K, V> implements FilteredSetMultimap<K, V> { L35: L36: FilteredEntrySetMultimap(SetMultimap<K, V> unfiltered, Predicate<? super Entry<K, V>> predicate) { L37: super(unfiltered, predicate); L38:...github.com/google/guava/guava/src/com/google/co...Tue Jun 15 21:08:00 UTC 2021 2K bytes -
EsAbstractConditionQuery.java
public void invokeQuery(String columnFlexibleName, String conditionKeyName, Object conditionValue) { L457: // nothing L458: } L459: L460: @Override L461: public void invokeQuery(String columnFlexibleName, String conditionKeyName, Object conditionValue, ConditionOption conditionOption) { L462: // nothing L463: } L464: L465: @Override L466: public void invokeQueryEqual(String columnFlexibleName, Object conditionValue) { L467: // nothing L468: } L469: L470: @Override...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 21.1K bytes -
EsAbstractConditionQuery.java
public void invokeQuery(String columnFlexibleName, String conditionKeyName, Object conditionValue) { L457: // nothing L458: } L459: L460: @Override L461: public void invokeQuery(String columnFlexibleName, String conditionKeyName, Object conditionValue, ConditionOption conditionOption) { L462: // nothing L463: } L464: L465: @Override L466: public void invokeQueryEqual(String columnFlexibleName, Object conditionValue) { L467: // nothing L468: } L469: L470: @Override...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 21.1K bytes -
RankFusionProcessor.java
L219: final String scoreField = fessConfig.getRankFusionScoreField(); L220: final Map<String, Map<String, Object>> scoreDocMap = new HashMap<>(); L221: final String idField = fessConfig.getIndexFieldId(); L222: final Set<Object> mainIdSet = new HashSet<>(); L223: for (int i = 0; i < results.length; i++) { L224: final List<Map<String, Object>> docList = results[i].getDocumentList(); L225: if (logger.isDebugEnabled()) { L226: logger.debug("[{}]...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 18.3K bytes -
Multisets.java
abstract static class AbstractEntry<E extends @Nullable Object> implements Multiset.Entry<E> { L837: /** L838: * Indicates whether an object equals this entry, following the behavior specified in {@link L839: * Multiset.Entry#equals}. L840: */ L841: @Override L842: public boolean equals(@CheckForNull Object object) { L843: if (object instanceof Multiset.Entry) { L844: Multiset.Entry<?> that = (Multiset.Entry<?>) object; L845: return this.getCount() == that.getCount()...github.com/google/guava/android/guava/src/com/g...Sat Oct 19 00:05:46 UTC 2024 41.7K bytes -
Multisets.java
abstract static class AbstractEntry<E extends @Nullable Object> implements Multiset.Entry<E> { L841: /** L842: * Indicates whether an object equals this entry, following the behavior specified in {@link L843: * Multiset.Entry#equals}. L844: */ L845: @Override L846: public boolean equals(@CheckForNull Object object) { L847: if (object instanceof Multiset.Entry) { L848: Multiset.Entry<?> that = (Multiset.Entry<?>) object; L849: return this.getCount() == that.getCount()...github.com/google/guava/guava/src/com/google/co...Sat Oct 19 00:05:46 UTC 2024 41.5K bytes -
ClosingFuture.java
* @param <U> the type returned by the function L1940: */ L1941: public interface ClosingFunction5< L1942: V1 extends @Nullable Object, L1943: V2 extends @Nullable Object, L1944: V3 extends @Nullable Object, L1945: V4 extends @Nullable Object, L1946: V5 extends @Nullable Object, L1947: U extends @Nullable Object> { L1948: /** L1949: * Applies this function to five inputs, or throws an exception if unable to do so. L1950: * L1951: ...github.com/google/guava/android/guava/src/com/g...Tue Oct 08 19:36:35 UTC 2024 98.5K bytes