- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 2,388 for False (0.03 sec)
-
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/FrameLogTest.kt
@Test fun exampleStream() { assertThat(frameLog(false, 0, 5, TYPE_SETTINGS, FLAG_NONE)) .isEqualTo(">> 0x00000000 5 SETTINGS ") assertThat(frameLog(false, 3, 100, TYPE_HEADERS, FLAG_END_HEADERS)) .isEqualTo(">> 0x00000003 100 HEADERS END_HEADERS") assertThat(frameLog(false, 3, 0, TYPE_DATA, FLAG_END_STREAM)) .isEqualTo(">> 0x00000003 0 DATA END_STREAM")
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 5.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/AbstractAbstractFutureTest.java
delegate.cancel(/* mayInterruptIfRunning= */ false); assertThat(future.setFuture(delegate)).isTrue(); assertCancelled(future, false); } public void testSetFutureDelegateLaterCancelled() throws Exception { assertThat(future.setFuture(delegate)).isTrue(); delegate.cancel(/* mayInterruptIfRunning= */ false); assertCancelled(future, false); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 15.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/net/PercentEscaperTest.java
assertThrows(IllegalArgumentException.class, () -> new PercentEscaper("-+#abc.!", false)); assertThat(expected).hasMessageThat().isEqualTo(msg); } public void testBadArguments_plusforspace() { // space can be a safe char if plusForSpace is false PercentEscaper unused = new PercentEscaper(" ", false); // space cannot be a safe char is plusForSpace is true
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 16 20:34:52 UTC 2025 - 5.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/UnmodifiableTableColumnMapTest.java
import org.jspecify.annotations.NullMarked; @GwtCompatible @NullMarked public class UnmodifiableTableColumnMapTest extends ColumnMapTests { public UnmodifiableTableColumnMapTest() { super(false, false, false, false); } @Override Table<Integer, String, Character> makeTable() { Table<Integer, String, Character> original = HashBasedTable.create(); return unmodifiableTable(original); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 14:50:24 UTC 2024 - 1.5K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/NavigableSetTestSuiteBuilder.java
return set.tailSet(firstExclusive, false); } else if (from == Bound.EXCLUSIVE && to == Bound.EXCLUSIVE) { return set.subSet(firstExclusive, false, lastExclusive, false); } else if (from == Bound.EXCLUSIVE && to == Bound.INCLUSIVE) { return set.subSet(firstExclusive, false, lastInclusive, true); } else if (from == Bound.INCLUSIVE && to == Bound.INCLUSIVE) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 6.2K bytes - Viewed (0) -
cmd/httprange_test.go
validRangeSpecs := []struct { spec string errExpected bool }{ {"bytes=0-", false}, {"bytes=1-", false}, {"bytes=0-9", false}, {"bytes=1-10", false}, {"bytes=1-1", false}, {"bytes=2-5", false}, {"bytes=-5", false}, {"bytes=-1", false}, {"bytes=-1000", false}, {"bytes=", true}, {"bytes= ", true}, {"byte=", true}, {"bytes=A-B", true},
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun May 05 16:56:21 UTC 2024 - 3.7K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
protected boolean useBatching = false; /** Whether to use Unicode encoding for strings */ protected boolean useUnicode = true; /** Force use of Unicode encoding regardless of negotiation */ protected boolean forceUnicode = false; /** Whether SMB signing is preferred but not required */ protected boolean signingPreferred = false; /** Whether SMB signing is enforced (required) */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java
/** * Matches the request locale with the target locale. * * @param requestLocale The request locale. * @param targetLocale The target locale. * @return True if the locales match, otherwise false. */ protected boolean matchLocale(final Locale requestLocale, final Locale targetLocale) { if (targetLocale.equals(requestLocale) || targetLocale.equals(Locale.ROOT)) { return true; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbSessionImplTest.java
when(resp.getSessionId()).thenReturn(42L); session.setSessionSetup(resp); when(transport.isDisconnected()).thenReturn(false); when(transport.isFailed()).thenReturn(false); assertTrue(session.isConnected()); assertFalse(session.isFailed()); when(transport.isDisconnected()).thenReturn(true);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.5K bytes - Viewed (0) -
ci/official/utilities/extract_resultstore_links.py
parser.add_argument('--xml-out-path', required=False, help='Path to which to output ' 'the JUnit-based XML with ResultStore links.') parser.add_argument('--print', action='store_true', dest='print', default=False, help='Whether to print out a short summary with the '
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Wed Nov 08 17:50:27 UTC 2023 - 10.9K bytes - Viewed (0)