- Sort Score
- Result 10 results
- Languages All
Results 431 - 440 of 1,875 for isobject (0.08 sec)
-
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 -
Platform.java
based on a hash table. */ L35: static <K extends @Nullable Object, V extends @Nullable Object> L36: Map<K, V> newHashMapWithExpectedSize(int expectedSize) { L37: return CompactHashMap.createWithExpectedSize(expectedSize); L38: } L39: L40: /** L41: * Returns the platform preferred implementation of an insertion ordered map based on a hash L42: * table. L43: */ L44: static <K extends @Nullable Object, V extends @Nullable Object> L45: Map<K, V> newLinkedHashMapWithExpectedSize(int...github.com/google/guava/android/guava/src/com/g...Tue Aug 06 17:52:51 UTC 2024 5.3K bytes -
Platform.java
based on a hash table. */ L37: static <K extends @Nullable Object, V extends @Nullable Object> L38: Map<K, V> newHashMapWithExpectedSize(int expectedSize) { L39: return Maps.newHashMapWithExpectedSize(expectedSize); L40: } L41: L42: /** L43: * Returns the platform preferred implementation of an insertion ordered map based on a hash L44: * table. L45: */ L46: static <K extends @Nullable Object, V extends @Nullable Object> L47: Map<K, V> newLinkedHashMapWithExpectedSize(int expectedSize)...github.com/google/guava/guava/src/com/google/co...Tue Aug 06 17:52:51 UTC 2024 5.5K bytes -
fess_env_suggest.properties
Does it send mock mail? (true: no send actually, logging only) L28:mail.send.mock = false L29: L30:# SMTP server settings for main: host:port L31:mail.smtp.server.main.host.and.port = localhost:25 L32: L33:# The prefix of subject to show test environment or not L34:mail.subject.test.prefix = L35: L36:# The common return path of all mail L37:mail.return.path = root@localhost L38: L39: L40:# ======================================================================================== L41:# ...github.com/codelibs/fess/src/main/resources/fes...Mon Jan 29 07:34:32 UTC 2018 2.2K bytes -
ApiResult.java
@Override L98: public ApiResult result() { L99: return new ApiResult(this); L100: } L101: } L102: L103: public static class ApiConfigResponse extends ApiResponse { L104: protected Object setting; L105: L106: public ApiConfigResponse setting(final Object setting) { L107: this.setting = setting; L108: return this; L109: } L110: L111: @Override L112: public ApiResult result() { L113: return new ApiResult(this);...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 12.5K bytes -
Subscriber.java
listener}. */ L39: static Subscriber create(EventBus bus, Object listener, Method method) { L40: return isDeclaredThreadSafe(method) L41: ? new Subscriber(bus, listener, method) L42: : new SynchronizedSubscriber(bus, listener, method); L43: } L44: L45: /** The event bus this subscriber belongs to. */ L46: @Weak private EventBus bus; L47: L48: /** The object with the subscriber method. */ L49: @VisibleForTesting final Object target; L50: L51: /** Subscriber method. */ L52: private...github.com/google/guava/guava/src/com/google/co...Wed Oct 06 00:47:57 UTC 2021 4.7K bytes -
ImmutableEnumMap.java
L67: } L68: L69: @Override L70: public boolean containsKey(@CheckForNull Object key) { L71: return delegate.containsKey(key); L72: } L73: L74: @Override L75: @CheckForNull L76: public V get(@CheckForNull Object key) { L77: return delegate.get(key); L78: } L79: L80: @Override L81: public boolean equals(@CheckForNull Object object) { L82: if (object == this) { L83: return true; L84: } L85: if (object instanceof ImmutableEnumMap) { L86: object = ((ImmutableEnumMap<?, ?>)...github.com/google/guava/android/guava/src/com/g...Wed Oct 30 16:15:19 UTC 2024 3.7K bytes -
ConnectInterceptor.kt
ealInterceptorChain L23: L24:/** L25: * Opens a connection to the target server and proceeds to the next interceptor. The network might L26: * be used for the returned response, or to validate a cached response with a conditional GET. L27: */ L28:object ConnectInterceptor : Interceptor { L29: @Throws(IOException::class) L30: override fun intercept(chain: Interceptor.Chain): Response { L31: val realChain = chain as RealInterceptorChain L32: val exchange = realChain.call.initExchange(realChain)...github.com/square/okhttp/okhttp/src/main/kotlin...Wed Dec 20 23:27:07 UTC 2023 1.5K bytes -
Jdk9PlatformTest.kt
assertThat(Jdk9Platform().toString()).isEqualTo("Jdk9Platform") L54: } L55: L56: @Test L57: fun selectedProtocolIsNullWhenSslSocketThrowsExceptionForApplicationProtocol() { L58: platform.assumeJdk9() L59: val applicationProtocolUnsupported = L60: object : DelegatingSSLSocket(null) { L61: override fun getApplicationProtocol(): String { L62: throw UnsupportedOperationException("Mock exception") L63: } L64: } L65: assertThat(Jdk9Platform().getSelectedProtocol(applicat...github.com/square/okhttp/okhttp/src/test/java/o...Mon Jan 08 01:13:22 UTC 2024 2.1K bytes -
EsAbstractBehavior.java
; L541: if (str == null) { L542: return null; L543: } L544: return new String[] { str }; L545: } L546: L547: protected LocalDateTime toLocalDateTime(Object value) { L548: return DfTypeUtil.toLocalDateTime(value); L549: } L550: L551: protected Date toDate(Object value) { L552: return DfTypeUtil.toDate(value); L553: } L554: L555: protected SearchHits getSearchHits(final SearchResponse response) { L556: SearchHits hits = response.getHits();...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 26.4K bytes