- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 257 for ignores (0.04 sec)
-
src/test/java/jcifs/smb1/util/HexdumpTest.java
// Test with offset - NOTE: srcIndex is ignored due to bug, it always starts from index 0 byte[] data4 = { 0x00, 0x11, 0x22, 0x33, 0x44 }; assertEquals("00", Hexdump.toHexString(data4, 1, 2)); // Bug: ignores srcIndex, reads from 0 assertEquals("0011", Hexdump.toHexString(data4, 1, 4)); // Bug: ignores srcIndex, reads from 0
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/EnumHashBiMap.java
// TODO(b/192446998): Remove this override after tools understand nullness better. public @Nullable V put(K key, @ParametricNullness V value) { return super.put(key, value); } @CanIgnoreReturnValue @Override @SuppressWarnings("RedundantOverride") // b/192446478: RedundantOverride ignores some annotations.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 5.2K bytes - Viewed (0) -
guava/src/com/google/common/base/Functions.java
return "Functions.forPredicate(" + predicate + ")"; } @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0; } /** * Returns a function that ignores its input and always returns {@code value}. * * <p>Prefer to use the lambda expression {@code o -> value} instead. Note that it is not
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 17:32:30 UTC 2025 - 15.4K bytes - Viewed (0) -
android/pom.xml
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Sep 04 21:35:58 UTC 2025 - 24.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileEndOfFileInformationTest.java
int bytesRead = fileInfo.decode(buffer, 0, 8); assertEquals(8, bytesRead); assertTrue(fileInfo.toString().contains("endOfFile=" + value)); } @Test @DisplayName("Test decode ignores extra buffer length") void testDecodeIgnoresExtraLength() throws SMBProtocolDecodingException { // Create larger buffer byte[] buffer = new byte[100]; long value = 999L;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.9K bytes - Viewed (0) -
src/test/java/jcifs/smb/SecurityBlobTest.java
SecurityBlob longer = new SecurityBlob(new byte[] { 1, 2, 9 }); // Act & Assert // Due to implementation, iteration uses this.b.length and ignores extra bytes in argument assertTrue(shorter.equals(longer), "Shorter equals longer when prefix matches (implementation behavior)");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileInternalInfoTest.java
assertTrue(result.contains("SmbQueryFileInternalInfo")); assertTrue(result.contains("indexNumber=" + expectedIndexNumber)); } @Test @DisplayName("Test decode ignores length parameter") void testDecodeIgnoresLengthParameter() throws SMBProtocolDecodingException { // The decode method should always read exactly 8 bytes regardless of len parameter byte[] buffer = new byte[20];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/TransPeekNamedPipeResponseTest.java
assertEquals(6, result); } @Test @DisplayName("Test readParametersWireFormat ignores middle 2 bytes") void testReadParametersWireFormatIgnoresMiddleBytes() { // Arrange byte[] buffer = new byte[10]; SMBUtil.writeInt2(200, buffer, 0); // These bytes should be ignored buffer[2] = (byte) 0xFF; buffer[3] = (byte) 0xFF;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.8K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/ws/RealWebSocketTest.kt
} @Test fun unexpectedPongsDoNotInterfereWithFailureDetection() { client.initWebSocket(random, pingIntervalMillis = 500) // At 0ms the server sends 3 unexpected pongs. The client accepts 'em and ignores em. server.webSocket!!.pong("pong 1".encodeUtf8()) client.processNextFrame() server.webSocket!!.pong("pong 2".encodeUtf8()) client.processNextFrame() taskFaker.runTasks()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 18.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/ServerMessageBlock.java
/** * @return the response */ @Override public ServerMessageBlock getResponse() { return this.response; } /** * Returns a message block that ignores disconnection * @return null */ public CommonServerMessageBlock ignoreDisconnect() { return this; } /** * @param response * the response to set
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 38.9K bytes - Viewed (0)