- Sort Score
- Result 10 results
- Languages All
Results 391 - 400 of 1,875 for isobject (0.04 sec)
-
Converter.java
L349: L350: @Override L351: public Converter<A, B> reverse() { L352: return original; L353: } L354: L355: @Override L356: public boolean equals(@CheckForNull Object object) { L357: if (object instanceof ReverseConverter) { L358: ReverseConverter<?, ?> that = (ReverseConverter<?, ?>) object; L359: return this.original.equals(that.original); L360: } L361: return false; L362: } L363: L364: @Override L365: public int hashCode() { L366: return...github.com/google/guava/android/guava/src/com/g...Thu Feb 15 16:12:13 UTC 2024 23K bytes -
BsAccessTokenCQ.java
setCreatedBy_GreaterThan(String createdBy) { L333: setCreatedBy_GreaterThan(createdBy, null); L334: } L335: L336: public void setCreatedBy_GreaterThan(String createdBy, ConditionOptionCall<RangeQueryBuilder> opLambda) { L337: final Object _value = createdBy; L338: RangeQueryBuilder builder = regRangeQ("createdBy", ConditionKey.CK_GREATER_THAN, _value); L339: if (opLambda != null) { L340: opLambda.callback(builder); L341: } L342: } L343: L344: public...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 71.8K bytes -
AbstractMapTester.java
Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests. L44:@SuppressWarnings("JUnit4ClassUsedInJUnit3") L45:@ElementTypesAreNonnullByDefault L46:public abstract class AbstractMapTester<K extends @Nullable Object, V extends @Nullable Object> L47: extends AbstractContainerTester<Map<K, V>, Entry<K, V>> { L48: protected Map<K, V> getMap() { L49: return container; L50: } L51: L52: @Override L53: protected Collection<Entry<K, V>> actualContents() { L54: return...github.com/google/guava/guava-testlib/src/com/g...Wed Oct 30 16:15:19 UTC 2024 7.6K bytes -
ForwardingNavigableMapTest.java
L63: @Override L64: public boolean containsKey(Object key) { L65: return standardContainsKey(key); L66: } L67: L68: @Override L69: public boolean containsValue(Object value) { L70: return standardContainsValue(value); L71: } L72: L73: @Override L74: public void putAll(Map<? extends K, ? extends V> map) { L75: standardPutAll(map); L76: } L77: L78: @Override L79: public @Nullable V remove(Object object) { L80: return standardRemove(object); L81: ...github.com/google/guava/guava-tests/test/com/go...Wed Apr 19 19:24:36 UTC 2023 9.5K bytes -
HostnameVerifierTest.kt
oo.com", session)).isFalse() L221: // these checks test alternative subjects. The test data contains an L222: // alternative subject starting with a japanese kanji character. This is L223: // not supported by Android because the underlying implementation from L224: // harmony follows the definition from rfc 1034 page 10 for alternative L225: // subject names. This causes the code to drop all alternative subjects. L226: assertThat(verifier.verify("bar.com", session)).isTrue() L227:...github.com/square/okhttp/okhttp/src/test/java/o...Mon Jan 08 01:13:22 UTC 2024 40.3K bytes -
BoostDocTests.java
return LIST_ENDPOINT_SUFFIX; L53: } L54: L55: @Override L56: protected String getItemEndpointSuffix() { L57: return ITEM_ENDPOINT_SUFFIX; L58: } L59: L60: @Override L61: protected Map<String, Object> createTestParam(int id) { L62: final Map<String, Object> requestBody = new HashMap<>(); L63: final String keyProp = NAME_PREFIX + id; L64: requestBody.put(KEY_PROPERTY, keyProp); L65: requestBody.put("boost_expr", new Integer(id).toString()); L66: ...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.3K bytes -
ElevateWordTests.java
ITEM_ENDPOINT_SUFFIX; L58: } L59: L60: @Override L61: protected Map<String, Object> createTestParam(int id) { L62: final Map<String, Object> requestBody = new HashMap<>(); L63: final String keyProp = NAME_PREFIX + id; L64: requestBody.put(KEY_PROPERTY, keyProp); L65: requestBody.put("boost", id); L66: return requestBody; L67: } L68: L69: @Override L70: protected Map<String, Object> getUpdateMap() { L71: final Map<String, Object> updateMap = new HashMap<>();...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.3K bytes -
RelatedContentTests.java
ITEM_ENDPOINT_SUFFIX; L58: } L59: L60: @Override L61: protected Map<String, Object> createTestParam(int id) { L62: final Map<String, Object> requestBody = new HashMap<>(); L63: final String keyProp = NAME_PREFIX + id; L64: requestBody.put(KEY_PROPERTY, keyProp); L65: requestBody.put("content", "query" + id); L66: return requestBody; L67: } L68: L69: @Override L70: protected Map<String, Object> getUpdateMap() { L71: final Map<String, Object> updateMap = new...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.3K bytes -
MappingTests.java
DICT_TYPE; L63: } L64: L65: @Override L66: protected Map<String, Object> createTestParam(int id) { L67: final Map<String, Object> requestBody = new HashMap<>(); L68: final String keyProp = NAME_PREFIX + id; L69: requestBody.put(KEY_PROPERTY, keyProp); L70: requestBody.put("output", "output"); L71: return requestBody; L72: } L73: L74: @Override L75: protected Map<String, Object> getUpdateMap() { L76: final Map<String, Object> updateMap = new...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.4K bytes -
ObjectIdentifiers.kt
KIND, either express or implied. L13: * See the License for the specific language governing permissions and L14: * limitations under the License. L15: */ L16:package okhttp3.tls.internal.der L17: L18:/** ASN.1 object identifiers used internally by this implementation. */ L19:internal object ObjectIdentifiers { L20: const val EC_PUBLIC_KEY = "1.2.840.10045.2.1" L21: const val SHA256_WITH_ECDSA = "1.2.840.10045.4.3.2" L22: const val RSA_ENCRYPTION = "1.2.840.113549.1.1.1" L23: const val SHA256_WITH_RSA_ENCRYPTION...github.com/square/okhttp/okhttp-tls/src/main/ko...Sun Jan 07 16:05:34 UTC 2024 1.1K bytes