- Sort Score
- Num 10 results
- Language All
Results 1 - 9 of 9 for doSkip (0.04 seconds)
-
src/main/java/jcifs/smb1/util/transport/Transport.java
/** * Skips an unexpected or unrecognized message. * * @throws IOException if an I/O error occurs */ protected abstract void doSkip() throws IOException; /** * Sends a request and waits for the corresponding response. * * @param request the request to send * @param response the response object to populateCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 11.3K bytes - Click Count (0) -
src/main/java/jcifs/util/transport/Transport.java
/** * Skip a response with the given key * * @param key the key of the response to skip * @throws IOException if an I/O error occurs */ protected abstract void doSkip(Long key) throws IOException; /** * Checks if the transport is disconnected. * * @return whether the transport is disconnected */ public boolean isDisconnected() {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) -
src/test/java/jcifs/util/transport/TransportTest.java
protected void doRecv(Response response) throws IOException { if (recvException != null) { throw recvException; } } @Override protected void doSkip(Long key) throws IOException { } @Override protected int getResponseTimeout(Request request) { return 1000; } @Override
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 9.5K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 31.8K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
resp.decode(buffer, 4); } } finally { getContext().getBufferCache().releaseBuffer(buffer); } } @Override protected void doSkip(final Long key) throws IOException { synchronized (this.inLock) { final int size = Encdec.dec_uint16be(this.sbuf, 2) & 0xFFFF;
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 69.8K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/MultipartReader.kt
} else { // This is a subsequent part or a preamble. Skip until "\r\n--" followed by the boundary. while (true) { val toSkip = currentPartBytesRemaining(maxByteCount = 8192) if (toSkip == 0L) break source.skip(toSkip) } source.skip(crlfDashDashBoundary.size.toLong()) } // Read either \r\n or --\r\n to determine if there is another part.Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 7.3K bytes - Click Count (0) -
mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt
byteCount: Long, ) { val toRead = minOf(remainingByteCount, byteCount) if (toRead > 0L) { source.read(buffer, toRead) } val toSkip = byteCount - toRead if (toSkip > 0L) { source.skip(toSkip) } remainingByteCount -= toRead receivedByteCount += byteCount } @Throws(IOException::class) override fun flush() { }Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 40.3K bytes - Click Count (0) -
guava/src/com/google/common/collect/Iterables.java
@Override public Iterator<T> iterator() { if (iterable instanceof List) { List<T> list = (List<T>) iterable; int toSkip = Math.min(list.size(), numberToSkip); return list.subList(toSkip, list.size()).iterator(); } Iterator<T> iterator = iterable.iterator(); Iterators.advance(iterator, numberToSkip); /*Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 16:16:42 GMT 2026 - 43.6K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/Iterables.java
@Override public Iterator<T> iterator() { if (iterable instanceof List) { List<T> list = (List<T>) iterable; int toSkip = Math.min(list.size(), numberToSkip); return list.subList(toSkip, list.size()).iterator(); } Iterator<T> iterator = iterable.iterator(); Iterators.advance(iterator, numberToSkip); /*Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Sep 16 18:35:28 GMT 2025 - 43.8K bytes - Click Count (0)