- Sort Score
- Result 10 results
- Languages All
Results 541 - 550 of 1,875 for isobject (0.05 sec)
-
TestLogHandler.java
firstRecord.getMessage()); L49: * } L50: * </pre> L51: * L52: * @author Kevin Bourrillion L53: * @since 10.0 L54: */ L55:@GwtCompatible L56:@ElementTypesAreNonnullByDefault L57:public class TestLogHandler extends Handler { L58: private final Object lock = new Object(); L59: L60: /** We will keep a private list of all logged records */ L61: @GuardedBy("lock") L62: private final List<LogRecord> list = new ArrayList<>(); L63: L64: /** Adds the most recently logged record to our list. */ L65: @Override...github.com/google/guava/guava-testlib/src/com/g...Fri Jun 21 20:53:25 UTC 2024 2.8K 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 -
ImmutableMapValues.java
@Override L68: public Spliterator<V> spliterator() { L69: return CollectSpliterators.map(map.entrySet().spliterator(), Entry::getValue); L70: } L71: L72: @Override L73: public boolean contains(@CheckForNull Object object) { L74: return object != null && Iterators.contains(iterator(), object); L75: } L76: L77: @Override L78: boolean isPartialView() { L79: return true; L80: } L81: L82: @Override L83: public ImmutableList<V> asList() { L84: final ImmutableList<Entry<K, V>> entryList =...github.com/google/guava/guava/src/com/google/co...Thu Nov 30 21:54:06 UTC 2023 3.6K 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/android/guava/src/com/g...Mon Apr 26 17:43:39 UTC 2021 2.3K bytes -
FessTransformer.java
oldValues; L113: if (oldValue instanceof Object[]) { L114: oldValues = (Object[]) oldValue; L115: } else if (oldValue instanceof Collection<?>) { L116: oldValues = ((Collection<?>) oldValue).toArray(); L117: } else { L118: oldValues = new Object[] { oldValue }; L119: } L120: if (value.getClass().isArray()) { L121: final Object[] newValues = (Object[]) value; L122: final Object[]...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 9.5K bytes -
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 -
ForwardingSet.java
L51:public abstract class ForwardingSet<E extends @Nullable Object> extends ForwardingCollection<E> L52: implements Set<E> { L53: // TODO(lowasser): identify places where thread safety is actually lost L54: L55: /** Constructor for use by subclasses. */ L56: protected ForwardingSet() {} L57: L58: @Override L59: protected abstract Set<E> delegate(); L60: L61: @Override L62: public boolean equals(@CheckForNull Object object) { L63: return object == this || delegate().equals(object); L64: } L65:...github.com/google/guava/guava/src/com/google/co...Tue Jun 29 19:42:21 UTC 2021 3.8K bytes