- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 52 for recv (0.02 seconds)
-
src/test/java/jcifs/smb/SmbPipeHandleInternalTest.java
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 16.7K bytes - Click Count (0) -
src/test/java/jcifs/dcerpc/DcerpcPipeHandleTest.java
when(mockSmbPipeHandleInternal.sendrecv(buf, 0, 50, inB, 4280)).thenReturn(40); when(mockSmbPipeHandleInternal.recv(inB, 40, 40)).thenReturn(40); int result = handle.doSendReceiveFragment(buf, 0, 50, inB); assertEquals(80, result); verify(mockSmbPipeHandleInternal).recv(inB, 40, 40); } @Test @DisplayName("Should throw IOException when handle is stale")
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 21K bytes - Click Count (0) -
KEYS.md
```bash gpg --import gradle_pubkey.asc ``` Alternatively, you can fetch the key directly from a key server: ```bash gpg --keyserver hkps://keys.openpgp.org --recv-keys 1BD97A6A154E7810EE0BC832E2F38302C8075E3D ``` ### Verifying signatures
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Dec 04 14:29:13 GMT 2025 - 4.7K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbPipeHandleInternal.java
* @param off offset in the buffer * @param length maximum length to receive * @return number of bytes received * @throws IOException if an I/O error occurs */ int recv(byte[] buf, int off, int length) throws IOException; /** * Send data to the pipe * * @param buf buffer containing data to send * @param off offset in the bufferCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 3.7K bytes - Click Count (0) -
src/test/java/jcifs/dcerpc/DcerpcBindTest.java
Field maxRecvField = DcerpcBind.class.getDeclaredField("max_recv"); maxRecvField.setAccessible(true); assertEquals(maxRecv, maxRecvField.get(bindWithParams), "Max recv should be set"); } @Test @DisplayName("Package constructor should handle null binding") void testPackageConstructorWithNullBinding() throws Exception { // GivenCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 22.7K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbPipeHandleImpl.java
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 10.2K bytes - Click Count (0) -
src/test/java/jcifs/smb/SmbPipeHandleImplTest.java
verify(tree).send(captor.capture(), any()); assertNotNull(captor.getValue()); } @Test @DisplayName("recv delegates to input.readDirect and returns its value") void testRecvDelegation() throws Exception { SmbPipeHandleImpl spyTarget = spy(target); SmbPipeInputStream in = mock(SmbPipeInputStream.class);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 11.7K bytes - Click Count (0) -
src/main/java/jcifs/dcerpc/DcerpcPipeHandle.java
if (fraglen > getMaxRecv()) { throw new IOException("Unexpected fragment length: " + fraglen); } while (have < fraglen) { final int r = this.handle.recv(inB, have, fraglen - have); if (r == 0) { throw new IOException("Unexpected EOF"); } have += r; } return have; }
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 5.6K bytes - Click Count (0) -
src/main/java/jcifs/util/transport/Transport.java
log.trace("Remote closed connection"); } else if (timeout) { log.debug("socket timeout in non peek state", ex); } else { log.debug("recv failed", ex); } synchronized (this) { try { disconnect(!timeout, false); } catch (final IOException ioe) {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 27.8K bytes - Click Count (0) -
docs/tr/docs/advanced/settings.md
participant execute as Execute function rect rgba(0, 255, 0, .1) code ->> function: say_hi(name="Camila") function ->> execute: execute function code execute ->> code: return the result end rect rgba(0, 255, 255, .1) code ->> function: say_hi(name="Camila") function ->> code: return stored result end rect rgba(0, 255, 0, .1)Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 11.8K bytes - Click Count (0)