Search Options

Results per page
Sort
Preferred Languages
Advance

Results 561 - 570 of 1,961 for isobject (0.05 sec)

  1. BsCrawlingInfoParamBhv.java

    } L66: L67: @Override L68: public CrawlingInfoParamDbm asDBMeta() { L69: return CrawlingInfoParamDbm.getInstance(); L70: } L71: L72: @Override L73: protected <RESULT extends CrawlingInfoParam> RESULT createEntity(Map<String, Object> source, Class<? extends RESULT> entityType) { L74: try { L75: final RESULT result = entityType.newInstance(); L76: result.setCrawlingInfoId(DfTypeUtil.toString(source.get("crawlingInfoId"))); L77: result.s...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.8K bytes
  2. BsPathMappingBhv.java

    "path_mapping"; L65: } L66: L67: @Override L68: public PathMappingDbm asDBMeta() { L69: return PathMappingDbm.getInstance(); L70: } L71: L72: @Override L73: protected <RESULT extends PathMapping> RESULT createEntity(Map<String, Object> source, Class<? extends RESULT> entityType) { L74: try { L75: final RESULT result = entityType.newInstance(); L76: result.setCreatedBy(DfTypeUtil.toString(source.get("createdBy"))); L77: result.setCreatedT...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.8K bytes
  3. ImmutableSortedSet.java

    super.iterator(); L268: } L269: L270: @Override L271: public Object[] toArray() { L272: /* L273: * ObjectArrays.toArrayImpl returns `@Nullable Object[]` rather than `Object[]` but only because L274: * it can be used with collections that may contain null. This collection is a collection of L275: * non-null elements, so we can treat it as a plain `Object[]`. L276: */ L277: @SuppressWarnings("nullness") L278: Object[] result = ObjectArrays.toArrayImpl(this); L279: return result;...
    github.com/google/guava/guava-gwt/src-super/com...
    Mon Aug 19 16:21:24 UTC 2024
      15.5K bytes
  4. CacheEvictionTest.java

    calls throughout the above? Where? L240: CacheTesting.checkValidState(cache); L241: } L242: L243: public void testEviction_overflow() { L244: CountingRemovalListener<Object, Object> removalListener = countingRemovalListener(); L245: IdentityLoader<Object> loader = identityLoader(); L246: LoadingCache<Object, Object> cache = L247: CacheBuilder.newBuilder() L248: .concurrencyLevel(1) L249: .maximumWeight(1L << 31) L250: .weigher(constantWeigher(Integer.MAX_VALUE))...
    github.com/google/guava/guava-tests/test/com/go...
    Fri Oct 18 19:07:49 UTC 2024
      15K bytes
  5. Maps.java

    ValueDifference<V>> entriesDiffering() { L663: return differences; L664: } L665: L666: @Override L667: public boolean equals(@CheckForNull Object object) { L668: if (object == this) { L669: return true; L670: } L671: if (object instanceof MapDifference) { L672: MapDifference<?, ?> other = (MapDifference<?, ?>) object; L673: return entriesOnlyOnLeft().equals(other.entriesOnlyOnLeft()) L674: && entriesOnlyOnRight().equals(other.entriesOnlyOnRight())...
    github.com/google/guava/guava/src/com/google/co...
    Sat Oct 19 00:05:46 UTC 2024
      167.4K bytes
  6. OrderingTest.java

    sions() { L221: List<Integer> list = Lists.newArrayList(); L222: for (int i = 0; i < 50; i++) { L223: list.add(i); L224: } L225: L226: Ordering<Object> arbitrary = L227: new ArbitraryOrdering() { L228: @Override L229: int identityHashCode(Object object) { L230: return ((Integer) object) % 5; // fake tons of collisions! L231: } L232: }; L233: L234: // Don't let the elements be in such a predictable order L235: list = shuffledCopy(list,...
    github.com/google/guava/android/guava-tests/tes...
    Wed Oct 30 16:15:19 UTC 2024
      42.6K bytes
  7. OrderingTest.java

    sions() { L221: List<Integer> list = Lists.newArrayList(); L222: for (int i = 0; i < 50; i++) { L223: list.add(i); L224: } L225: L226: Ordering<Object> arbitrary = L227: new ArbitraryOrdering() { L228: @Override L229: int identityHashCode(Object object) { L230: return ((Integer) object) % 5; // fake tons of collisions! L231: } L232: }; L233: L234: // Don't let the elements be in such a predictable order L235: list = shuffledCopy(list,...
    github.com/google/guava/guava-tests/test/com/go...
    Wed Oct 30 16:15:19 UTC 2024
      42.6K bytes
  8. CrawlerStatsHelper.java

    ue(e.getLocalizedMessage()).replaceAll("\\s", " ")); L92: log(buf); L93: } L94: }); L95: } L96: L97: public void record(final Object keyObj, final StatsAction action) { L98: record(keyObj, action.name().toLowerCase(Locale.ENGLISH)); L99: } L100: L101: public void record(final Object keyObj, final String action) { L102: getCacheKey(keyObj).ifPresent(key -> { L103: try { L104: final StatsObject data = statsCache.getIfPresent(key);...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      9.9K bytes
  9. TestThread.java

    TestThread} instances are instantiated in a L36: * test with reference to the same "lock-like object", and then their interactions with that object L37: * are choreographed via the various methods on this class. L38: * L39: * <p>A "lock-like object" is really any object that may be used for concurrency control. If the L40: * {@link #callAndAssertBlocks} method is ever called in a test, the lock-like object must have a L41: * method equivalent to {@link java.util.concurrent.locks.ReentrantLock#hasQ...
    github.com/google/guava/guava-tests/test/com/go...
    Fri Oct 18 22:10:29 UTC 2024
      10.7K bytes
  10. NOTICE

    L1:Note that PublicSuffixDatabase.gz is compiled from The Public Suffix List: L2:https://publicsuffix.org/list/public_suffix_list.dat L3: L4:It is subject to the terms of the Mozilla Public License, v. 2.0: L5:https://mozilla.org/MPL/2.0/...
    github.com/square/okhttp/okhttp/src/main/resour...
    Wed Dec 20 23:27:07 UTC 2023
      224 bytes
Back to top