Search Options

Results per page
Sort
Preferred Languages
Advance

Results 751 - 760 of 1,961 for isobject (0.05 sec)

  1. FailureUrlDbm.java

    public void acceptPrimaryKeyMap(Entity entity, Map<String, ? extends Object> primaryKeyMap) { L243: } L244: L245: @Override L246: public void acceptAllColumnMap(Entity entity, Map<String, ? extends Object> allColumnMap) { L247: } L248: L249: @Override L250: public Map<String, Object> extractPrimaryKeyMap(Entity entity) { L251: return null; L252: } L253: L254: @Override L255: public Map<String, Object> extractAllColumnMap(Entity entity) { L256: return null; L257:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      10.2K bytes
  2. SortedSetMultimap.java

    multimap">{@code Multimap}</a>. L47: * L48: * @author Jared Levy L49: * @since 2.0 L50: */ L51:@GwtCompatible L52:@ElementTypesAreNonnullByDefault L53:public interface SortedSetMultimap<K extends @Nullable Object, V extends @Nullable Object> L54: extends SetMultimap<K, V> { L55: // Following Javadoc copied from Multimap. L56: L57: /** L58: * Returns a collection view of all values associated with a key. If no mappings in the multimap L59: * have the provided key, an empty collection is returned....
    github.com/google/guava/guava/src/com/google/co...
    Mon Jan 24 17:47:51 UTC 2022
      5.3K bytes
  3. ThumbnailGenerator.java

    interface ThumbnailGenerator { L24: L25: String getName(); L26: L27: boolean generate(String thumbnailId, File outputFile); L28: L29: boolean isTarget(Map<String, Object> docMap); L30: L31: boolean isAvailable(); L32: L33: void destroy(); L34: L35: Tuple3<String, String, String> createTask(String path, Map<String, Object> docMap); L36:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      1K bytes
  4. CompactHashMapFloodingTest.java

    ct; L18: L19:import static java.lang.Math.log; L20: L21:import com.google.common.annotations.GwtIncompatible; L22:import java.util.Map; L23: L24:@GwtIncompatible L25:public class CompactHashMapFloodingTest extends AbstractHashFloodingTest<Map<Object, Object>> { L26: public CompactHashMapFloodingTest() { L27: super( L28: ImmutableList.of(Construction.mapFromKeys(CompactHashMap::create)), L29: n -> n * log(n), L30: ImmutableList.of(QueryOp.MAP_GET)); L31: } L32:}...
    github.com/google/guava/guava-tests/test/com/go...
    Wed Oct 30 16:15:19 UTC 2024
      1K bytes
  5. TreeRangeMap.java

    // This RangeMap is immutable. L332: private static final RangeMap<Comparable<?>, Object> EMPTY_SUB_RANGE_MAP = L333: new RangeMap<Comparable<?>, Object>() { L334: @Override L335: @CheckForNull L336: public Object get(Comparable<?> key) { L337: return null; L338: } L339: L340: @Override L341: @CheckForNull L342: public Entry<Range<Comparable<?>>, Object> getEntry(Comparable<?> key) { L343: return null; L344: } L345: L346:...
    github.com/google/guava/android/guava/src/com/g...
    Wed Oct 30 16:15:19 UTC 2024
      22.9K bytes
  6. BsUser.java

    Source L177: // ====== L178: @Override L179: public Map<String, Object> toSource() { L180: Map<String, Object> sourceMap = new HashMap<>(); L181: if (businessCategory != null) { L182: addFieldToSource(sourceMap, "businessCategory", businessCategory); L183: } L184: if (carLicense != null) { L185: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      22.8K bytes
  7. ValueGraphBuilder.java

    super(directed); L82: } L83: L84: /** Returns a {@link ValueGraphBuilder} for building directed graphs. */ L85: public static ValueGraphBuilder<Object, Object> directed() { L86: return new ValueGraphBuilder<>(true); L87: } L88: L89: /** Returns a {@link ValueGraphBuilder} for building undirected graphs. */ L90: public static ValueGraphBuilder<Object, Object> undirected() { L91: return new ValueGraphBuilder<>(false); L92: } L93: L94: /** L95: * Returns a {@link ValueGraphBuilder} initialized...
    github.com/google/guava/android/guava/src/com/g...
    Fri Jun 03 01:21:31 UTC 2022
      8K bytes
  8. jquery-3.7.1.min.js

    v3.7.1 | (c) OpenJS Foundation and other contributors | jquery.org/license */ L2:!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(ie,e){"use strict";var oe=[],r=Object.getPrototypeOf,ae=oe.slice,g=oe.flat?function(e){return oe.flat.call(e)}:function(e){return oe.concat.apply([...
    github.com/codelibs/fess/src/main/webapp/js/adm...
    Sat Oct 26 01:07:52 UTC 2024
      85.5K bytes
  9. Network.java

    * L523: * <p>A reference implementation of this is provided by {@link AbstractNetwork#equals(Object)}. L524: */ L525: @Override L526: boolean equals(@CheckForNull Object object); L527: L528: /** L529: * Returns the hash code for this network. The hash code of a network is defined as the hash code L530: * of a map from each of its {@link #edges() edges} to their {@link #incidentNodes(Object) L531: * incident nodes}. L532: * L533: * <p>A reference implementation of this is provided...
    github.com/google/guava/guava/src/com/google/co...
    Thu Oct 10 15:41:27 UTC 2024
      22.4K bytes
  10. Dns.kt

    next address until L34: * either a connection is made, the set of IP addresses is exhausted, or a limit is exceeded. L35: */ L36: @Throws(UnknownHostException::class) L37: fun lookup(hostname: String): List<InetAddress> L38: L39: companion object { L40: /** L41: * A DNS that uses [InetAddress.getAllByName] to ask the underlying operating system to L42: * lookup IP addresses. Most custom [Dns] implementations should delegate to this instance. L43: */ L44: @JvmField L45: ...
    github.com/square/okhttp/okhttp/src/main/kotlin...
    Mon Jan 08 01:13:22 UTC 2024
      2.2K bytes
Back to top