- Sort Score
- Result 10 results
- Languages All
Results 311 - 320 of 1,875 for isobject (0.04 sec)
-
ImmutableMapEntrySet.java
@J2ktIncompatible // serialization L88: @GwtIncompatible // serialization L89: Object writeReplace() { L90: return super.writeReplace(); L91: } L92: } L93: L94: ImmutableMapEntrySet() {} L95: L96: abstract ImmutableMap<K, V> map(); L97: L98: @Override L99: public int size() { L100: return map().size(); L101: } L102: L103: @Override L104: public boolean contains(@CheckForNull Object object) { L105: if (object instanceof Entry) { L106: Entry<?, ?> entry = (Entry<?, ?>) object;...github.com/google/guava/guava/src/com/google/co...Thu Nov 30 21:54:06 UTC 2023 4.1K bytes -
ListeningExecutorService.java
ListeningExecutorService extends ExecutorService { L42: /** L43: * @return a {@code ListenableFuture} representing pending completion of the task L44: * @throws RejectedExecutionException {@inheritDoc} L45: */ L46: @Override L47: <T extends @Nullable Object> ListenableFuture<T> submit(Callable<T> task); L48: L49: /** L50: * @return a {@code ListenableFuture} representing pending completion of the task L51: * @throws RejectedExecutionException {@inheritDoc} L52: */ L53: @Override L54: ListenableFuture<?>...github.com/google/guava/android/guava/src/com/g...Sun Jun 20 10:45:35 UTC 2021 4.2K bytes -
ForwardingSortedMultiset.java
upperBoundType); L205: } L206: L207: /** L208: * A sensible definition of {@link #subMultiset(Object, BoundType, Object, BoundType)} in terms of L209: * {@link #headMultiset(Object, BoundType) headMultiset} and {@link #tailMultiset(Object, L210: * BoundType) tailMultiset}. L211: * L212: * <p>If you override either of these methods, you may wish to override {@link L213: * #subMultiset(Object, BoundType, Object, BoundType)} to forward to this implementation. L214: */ L215: protected SortedMultiset<E>...github.com/google/guava/guava-gwt/src-super/com...Tue Jan 23 18:43:40 UTC 2024 8.2K bytes -
GroovyEngine.java
; L30: L31:public class GroovyEngine extends AbstractScriptEngine { L32: private static final Logger logger = LogManager.getLogger(GroovyEngine.class); L33: L34: @Override L35: public Object evaluate(final String template, final Map<String, Object> paramMap) { L36: final Map<String, Object> bindingMap = new HashMap<>(paramMap); L37: bindingMap.put("container", SingletonLaContainerFactory.getContainer()); L38: final GroovyShell groovyShell = new GroovyShell(new Binding(bindingMap));...github.com/codelibs/fess/src/main/java/org/code...Thu Oct 17 12:10:08 UTC 2024 2K bytes -
SortedLists.java
list for the specified key, using the specified key function. L233: * L234: * <p>Equivalent to {@link #binarySearch(List, Object, Comparator, KeyPresentBehavior, L235: * KeyAbsentBehavior)} using {@link Lists#transform(List, Function) Lists.transform(list, L236: * keyFunction)}. L237: */ L238: public static <E extends @Nullable Object, K extends @Nullable Object> int binarySearch( L239: List<E> list, L240: Function<? super E, K> keyFunction, L241: @ParametricNullness K key,...github.com/google/guava/guava/src/com/google/co...Sat Oct 19 00:05:46 UTC 2024 11K bytes -
IncidentEdgeSet.java
} L51: } L52: L53: @Override L54: public boolean contains(@CheckForNull Object obj) { L55: if (!(obj instanceof EndpointPair)) { L56: return false; L57: } L58: EndpointPair<?> endpointPair = (EndpointPair<?>) obj; L59: L60: if (graph.isDirected()) { L61: if (!endpointPair.isOrdered()) { L62: return false; L63: } L64: L65: Object source = endpointPair.source(); L66: Object target = endpointPair.target(); L67: return (node.equals(source) && gra...github.com/google/guava/guava/src/com/google/co...Mon Apr 26 17:43:39 UTC 2021 2.3K bytes -
StopwordsTests.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 -
TestSortedMapGenerator.java
elements, to be tested. L26: * L27: * @author Louis Wasserman L28: */ L29:@GwtCompatible L30:@ElementTypesAreNonnullByDefault L31:public interface TestSortedMapGenerator<K extends @Nullable Object, V extends @Nullable Object> L32: extends TestMapGenerator<K, V> { L33: @Override L34: SortedMap<K, V> create(Object... elements); L35: L36: /** L37: * Returns an entry with a key less than the keys of the {@link #samples()} and less than the key L38: * of {@link #belowSamplesGreater()}. L39: */...github.com/google/guava/android/guava-testlib/s...Wed Feb 21 16:49:06 UTC 2024 1.9K bytes -
SortedMultisets.java
omElement, BoundType.forBoolean(inclusive))); L174: } L175: } L176: L177: private static <E extends @Nullable Object> E getElementOrThrow(@CheckForNull Entry<E> entry) { L178: if (entry == null) { L179: throw new NoSuchElementException(); L180: } L181: return entry.getElement(); L182: } L183: L184: @CheckForNull L185: private static <E extends @Nullable Object> E getElementOrNull(@CheckForNull Entry<E> entry) { L186: return (entry == null) ? null : entry.getElement(); L187:...github.com/google/guava/android/guava/src/com/g...Fri Oct 01 17:18:04 UTC 2021 5.6K bytes -
Enums.java
@Override L131: protected String doBackward(T enumValue) { L132: return enumValue.name(); L133: } L134: L135: @Override L136: public boolean equals(@CheckForNull Object object) { L137: if (object instanceof StringConverter) { L138: StringConverter<?> that = (StringConverter<?>) object; L139: return this.enumClass.equals(that.enumClass); L140: } L141: return false; L142: } L143: L144: @Override L145: public int hashCode() { L146: return...github.com/google/guava/android/guava/src/com/g...Fri May 26 11:56:44 UTC 2023 5K bytes