- Sort Score
- Result 10 results
- Languages All
Results 601 - 610 of 1,961 for isobject (0.05 sec)
-
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 -
DirectedGraphConnections.java
return Succ.class.hashCode() + node.hashCode(); L119: } L120: } L121: } L122: L123: private static final Object PRED = new Object(); L124: L125: // Every value in this map must either be an instance of PredAndSucc with a successorValue of L126: // type V, PRED (representing predecessor), or an instance of type V (representing successor). L127: private final Map<N, Object> adjacentNodeValues; L128: L129: /** L130: * All node connections in this graph, in edge insertion order. L131:...github.com/google/guava/android/guava/src/com/g...Tue Feb 20 17:00:05 UTC 2024 18K bytes -
FileAccessException.java
L27: L28: public FileAccessException(final String messageCode, final Object[] args, final Throwable cause) { L29: super(messageCode, args, cause); L30: } L31: L32: public FileAccessException(final String messageCode, final Object[] args) { L33: super(messageCode, args); L34: } L35: L36: public FileAccessException(final String messageCode, final Throwable cause) { L37: super(messageCode, new Object[0], cause); L38: } L39: L40: public FileAccessException(final...github.com/codelibs/corelib/src/main/java/org/c...Thu Mar 07 01:59:08 UTC 2024 1.3K bytes -
SetMultimapEqualsTester.java
com.google.common.collect.SetMultimap; L22:import com.google.common.collect.testing.features.CollectionSize; L23:import com.google.common.testing.EqualsTester; L24:import org.junit.Ignore; L25: L26:/** L27: * Testers for {@link SetMultimap#equals(Object)}. L28: * L29: * @author Louis Wasserman L30: */ L31:@GwtCompatible L32:@Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests. L33:@SuppressWarnings("JUnit4ClassUsedInJUnit3") L34:public class SetMultimapEqualsTester<K,...github.com/google/guava/android/guava-testlib/s...Wed Oct 30 16:15:19 UTC 2024 1.8K bytes -
GcFinalization.java
* final CountDownLatch latch = new CountDownLatch(1); L60: * Object x = new MyClass() { L61: * ... L62: * protected void finalize() { latch.countDown(); ... } L63: * }; L64: * x = null; // Hint to the JIT that x is stack-unreachable L65: * GcFinalization.await(latch); L66: * }</pre> L67: * L68: * <p>Here's an example that uses a user-defined finalization predicate: L69: * L70: * <pre>{@code L71: * final WeakHashMap<Object, Object> map = new WeakHashMap<>(); L72: * map.put(new Object(), Boolean.TRUE);...github.com/google/guava/guava-testlib/src/com/g...Sat Oct 19 00:26:48 UTC 2024 11.6K 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