- Sort Score
- Num 10 results
- Language All
Results 141 - 150 of 2,233 for BOOLEAN (0.08 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
android/guava/src/com/google/common/collect/AbstractBiMap.java
} @Override public boolean remove(@Nullable Object key) { if (!contains(key)) { return false; } removeFromBothMaps(key); return true; } @Override public boolean removeAll(Collection<?> keysToRemove) { return standardRemoveAll(keysToRemove); } @Override public boolean retainAll(Collection<?> keysToRetain) {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 22 15:50:50 GMT 2025 - 13.5K bytes - Click Count (0) -
android/guava/src/com/google/common/base/Predicates.java
*/ ALWAYS_TRUE { @Override public boolean apply(@Nullable Object o) { return true; } @Override public String toString() { return "Predicates.alwaysTrue()"; } }, /** * @see Predicates#alwaysFalse() */ ALWAYS_FALSE { @Override public boolean apply(@Nullable Object o) { return false; }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 16:16:42 GMT 2026 - 26.6K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraph.java
} public boolean isVersionedVertices() { return versionedVertices; } public void setVersionedVertices(boolean versionedVertices) { this.versionedVertices = versionedVertices; } public boolean isScopedVertices() { return scopedVertices; } public void setScopedVertices(boolean scopedVertices) {Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 13K bytes - Click Count (0) -
src/main/java/org/codelibs/core/collection/ArrayUtil.java
/** * Returns a new array with the specified boolean value appended to the end of the boolean array. * * @param array * the array. Must not be {@literal null} * @param value * the value to add * @return a new array with the value appended */ public static boolean[] add(final boolean[] array, final boolean value) { assertArgumentNotNull("array", array);Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 41.5K bytes - Click Count (0) -
guava/src/com/google/common/collect/Collections2.java
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 16:16:42 GMT 2026 - 23K bytes - Click Count (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/Artifact.java
void setArtifactId(String artifactId); boolean isSnapshot(); void setResolved(boolean resolved); boolean isResolved(); void setResolvedVersion(String version); void setArtifactHandler(ArtifactHandler handler); boolean isRelease(); void setRelease(boolean release); List<ArtifactVersion> getAvailableVersions();Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 4.1K bytes - Click Count (0) -
src/main/config/es/fess_config_scheduled_job.json
{ "fess_config.scheduled_job" : { "aliases" : { }, "mappings" : { "scheduled_job" : { "properties" : { "available" : { "type" : "boolean" }, "crawler" : { "type" : "boolean" }, "createdBy" : { "type" : "keyword" }, "createdTime" : { "type" : "long" },Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 02 13:14:56 GMT 2021 - 1.4K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/InterceptorOverridesTest.kt
override val nonDefaultValue: Boolean = false override val badValue: Boolean get() = false override fun isDefaultValue(value: Boolean): Boolean = value } } private fun enableTls() { client = client .newBuilder() .sslSocketFactory(Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Mar 11 02:37:00 GMT 2026 - 28.8K bytes - Click Count (0) -
build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/extension/GradleModuleExtension.kt
*/ val client: Property<Boolean> /** * Declare that this Gradle module runs as part of the Gradle daemon. */ val daemon: Property<Boolean> /** * Declare that this Gradle module runs as part of worker process. */ val worker: Property<Boolean> /** * Reduces a map of boolean flag properties to a single provider by applying the givenCreated: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Mar 11 22:40:18 GMT 2026 - 4.8K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/Exchange.kt
internal var isDuplex: Boolean = false private set /** True if there was an exception on the connection to the peer. */ internal var hasFailure: Boolean = false private set internal val connection: RealConnection get() = codec.carrier as? RealConnection ?: error("no connection for CONNECT tunnels") internal val isCoalescedConnection: BooleanCreated: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Nov 05 18:28:35 GMT 2025 - 10.5K bytes - Click Count (0)