- Sort Score
- Num 10 results
- Language All
Results 941 - 950 of 2,451 for Booleans (0.04 seconds)
-
android/guava/src/com/google/common/base/Present.java
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Apr 15 22:14:00 GMT 2025 - 2.5K bytes - Click Count (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/KotlinModifiersChangeTest.kt
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 2.6K bytes - Click Count (0) -
docs/smb3-features/02-persistent-handles-design.md
public static final String HANDLE_STATE_DIR = "jcifs.smb.client.handleStateDirectory"; public boolean isUseDurableHandles() { return getBooleanProperty(USE_DURABLE_HANDLES, true); } public boolean isUsePersistentHandles() { return getBooleanProperty(USE_PERSISTENT_HANDLES, false); } public long getDurableHandleTimeout() {
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 31.6K bytes - Click Count (0) -
guava/src/com/google/common/reflect/Types.java
return Types.toString(componentType) + "[]"; } @Override public int hashCode() { return componentType.hashCode(); } @Override public boolean equals(@Nullable Object obj) { if (obj instanceof GenericArrayType) { GenericArrayType that = (GenericArrayType) obj; return Objects.equals(getGenericComponentType(), that.getGenericComponentType());
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Fri Oct 31 19:34:24 GMT 2025 - 24.3K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/CompletionServiceStub.java
List<FutureTask<ProjectSegment>> projectBuildFutureTasks = Collections.synchronizedList(new ArrayList<>()); final boolean finishImmediately; public int size() { return projectBuildFutureTasks.size(); } public CompletionServiceStub(boolean finishImmediately) { this.finishImmediately = finishImmediately; }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 2.6K bytes - Click Count (0) -
android/guava/src/com/google/common/annotations/GwtCompatible.java
* * @see <a href= * "https://www.gwtproject.org/doc/latest/DevGuideServerCommunication#DevGuideSerializableTypes"> * Documentation about GWT serialization</a> */ boolean serializable() default false; /** * When {@code true}, the annotated type is emulated in GWT. The emulated source (also known as * super-source) is different from the implementation used by the JVM. *
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Wed Aug 06 17:15:36 GMT 2025 - 2K bytes - Click Count (0) -
android/guava/src/com/google/common/base/FunctionalEquivalence.java
this.resultEquivalence = checkNotNull(resultEquivalence); } @Override protected boolean doEquivalent(F a, F b) { return resultEquivalence.equivalent(function.apply(a), function.apply(b)); } @Override protected int doHash(F a) { return resultEquivalence.hash(function.apply(a)); } @Override public boolean equals(@Nullable Object obj) { if (obj == this) { return true; }
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Feb 13 17:34:21 GMT 2025 - 2.3K bytes - Click Count (0) -
guava/src/com/google/common/base/PairwiseEquivalence.java
final Equivalence<E> elementEquivalence; PairwiseEquivalence(Equivalence<E> elementEquivalence) { this.elementEquivalence = Preconditions.checkNotNull(elementEquivalence); } @Override protected boolean doEquivalent(Iterable<T> iterableA, Iterable<T> iterableB) { Iterator<T> iteratorA = iterableA.iterator(); Iterator<T> iteratorB = iterableB.iterator(); while (iteratorA.hasNext() && iteratorB.hasNext()) {
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Wed Jun 04 13:03:16 GMT 2025 - 2.4K bytes - Click Count (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/MarkdownExtractorTest.java
// Verify heading metadata final String[] headings = extractData.getValues("headings"); assertNotNull(headings); assertTrue(headings.length > 0); boolean foundIntroduction = false; boolean foundFeatures = false; for (final String heading : headings) { if (heading.contains("Introduction")) { foundIntroduction = true; }Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Mon Nov 24 03:59:47 GMT 2025 - 6.4K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/ws/WebSocketWriter.kt
* * This class is not thread safe. * * [rfc_6455]: http://tools.ietf.org/html/rfc6455 */ class WebSocketWriter( private val isClient: Boolean, val sink: BufferedSink, val random: Random, private val perMessageDeflate: Boolean, private val noContextTakeover: Boolean, private val minimumDeflateSize: Long, ) : Closeable { /** This holds outbound data for compression and masking. */
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Thu Jul 31 04:18:40 GMT 2025 - 6K bytes - Click Count (0)