- Sort Score
- Result 10 results
- Languages All
Results 681 - 690 of 1,961 for isobject (0.08 sec)
-
SearchHelper.java
eQueryId(queryId, documentItems); L168: } L169: L170: } L171: L172: protected List<Map<String, Object>> searchInternal(final String query, final SearchRequestParams params, L173: final OptionalThing<FessUserBean> userBean) { L174: final RankFusionProcessor rankFusionProcessor = ComponentUtil.getRankFusionProcessor(); L175: final List<Map<String, Object>> documentItems = rankFusionProcessor.search(query, params, userBean); L176: if (documentItems instanceof...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 19.1K bytes -
ForwardingSortedSetTest.java
L72: standardClear(); L73: } L74: L75: @Override L76: public boolean contains(Object object) { L77: return standardContains(object); L78: } L79: L80: @Override L81: public boolean containsAll(Collection<?> collection) { L82: return standardContainsAll(collection); L83: } L84: L85: @Override L86: public boolean remove(Object object) { L87: return standardRemove(object); L88: } L89: L90: @Override L91: public boolean removeAll(Collection<?> collection)...github.com/google/guava/guava-tests/test/com/go...Sat Oct 19 00:05:46 UTC 2024 5K bytes -
GroupBhv.java
L39: indexName = super.asEsIndex().replaceFirst(Pattern.quote("fess_user"), name); L40: } L41: return indexName; L42: } L43: L44: @Override L45: protected <RESULT extends Group> RESULT createEntity(final Map<String, Object> source, final Class<? extends RESULT> entityType) { L46: try { L47: final RESULT result = entityType.newInstance(); L48: result.setName(DfTypeUtil.toString(source.get("name"))); L49: result.setAttributes(s...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.2K bytes -
cs.js
L4: * @version 2.3.77 L5: * @website http://formvalidator.net/ L6: * @author Victor Jonsson, http://victorjonsson.se L7: * @license MIT L8: */ L9:!function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a,b){"use strict";a.formUtils.registerLoadedModule("lang/cs"),a(b).bind("validatorsLoaded",function(){a.formUtils.LANG={errorTitle:"Podání...github.com/codelibs/fess/src/main/webapp/js/adm...Mon Jan 01 05:12:47 UTC 2018 2.3K bytes -
ListLastIndexOfTester.java
only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests. L36:@SuppressWarnings("JUnit4ClassUsedInJUnit3") L37:public class ListLastIndexOfTester<E> extends AbstractListIndexOfTester<E> { L38: @Override L39: protected int find(Object o) { L40: return getList().lastIndexOf(o); L41: } L42: L43: @Override L44: protected String getMethodName() { L45: return "lastIndexOf"; L46: } L47: L48: @CollectionFeature.Require(absent = REJECTS_DUPLICATES_AT_CREATION) L49: @Collec...github.com/google/guava/android/guava-testlib/s...Wed Jul 24 20:12:35 UTC 2024 2.2K bytes -
PostMultipart.kt
.build() L48: L49: client.newCall(request).execute().use { response -> L50: if (!response.isSuccessful) throw IOException("Unexpected code $response") L51: L52: println(response.body.string()) L53: } L54: } L55: L56: companion object { L57: /** L58: * The imgur client ID for OkHttp recipes. If you're using imgur for anything other than running L59: * these examples, please request your own client ID! https://api.imgur.com/oauth2 L60: */ L61: private const val...github.com/square/okhttp/samples/guide/src/main...Mon Jan 08 01:13:22 UTC 2024 2.1K bytes -
CharStreams.java
T_BUF_SIZE); L57: } L58: L59: private CharStreams() {} L60: L61: /** L62: * Copies all characters between the {@link Readable} and {@link Appendable} objects. Does not L63: * close or flush either object. L64: * L65: * @param from the object to read from L66: * @param to the object to write to L67: * @return the number of characters copied L68: * @throws IOException if an I/O error occurs L69: */ L70: @CanIgnoreReturnValue L71: public static long copy(Readable from, Appendable...github.com/google/guava/guava/src/com/google/co...Wed May 17 14:35:11 UTC 2023 10.9K bytes -
AbstractMultimapTester.java
void initMultimapWithNullKey() { L103: resetContainer(getSubjectGenerator().create((Object[]) createArrayWithNullKey())); L104: } L105: L106: protected void initMultimapWithNullValue() { L107: resetContainer(getSubjectGenerator().create((Object[]) createArrayWithNullValue())); L108: } L109: L110: protected void initMultimapWithNullKeyAndValue() { L111: resetContainer(getSubjectGenerator().create((Object[]) createArrayWithNullKeyAndValue())); L112: } L113: L114: protected SampleElements<K>...github.com/google/guava/android/guava-testlib/s...Wed Oct 30 16:15:19 UTC 2024 6K bytes -
SegmentBenchmark.java
@author Charles Fry L31: */ L32:public class SegmentBenchmark { L33: L34: @Param({"16", "32", "64", "128", "256", "512", "1024", "2048", "4096", "8192"}) L35: int capacity; L36: L37: private Segment<Object, Object> segment; L38: L39: @BeforeExperiment L40: void setUp() { L41: LocalCache<Object, Object> cache = L42: new LocalCache<>( L43: CacheBuilder.newBuilder().concurrencyLevel(1).initialCapacity(capacity), null); L44: checkState(cache.segments.length == 1); L45: segment...github.com/google/guava/guava-tests/benchmark/c...Mon Dec 23 16:59:39 UTC 2019 2.1K bytes -
AbstractMultimap.java
L55: L56: return false; L57: } L58: L59: @Override L60: public boolean containsEntry(@CheckForNull Object key, @CheckForNull Object value) { L61: Collection<V> collection = asMap().get(key); L62: return collection != null && collection.contains(value); L63: } L64: L65: @CanIgnoreReturnValue L66: @Override L67: public boolean remove(@CheckForNull Object key, @CheckForNull Object value) { L68: Collection<V> collection = asMap().get(key); L69: return collection != null && colle...github.com/google/guava/android/guava/src/com/g...Tue Jun 15 21:08:00 UTC 2021 6.6K bytes