- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 1,071 for reserved (0.04 sec)
-
src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequest.java
SMBUtil.writeInt4(this.maxOutputResponse, dst, dstIndex); dstIndex += 4; SMBUtil.writeInt4(this.flags, dst, dstIndex); dstIndex += 4; dstIndex += 4; // Reserved2 if (this.inputData != null) { SMBUtil.writeInt4(dstIndex - getHeaderStart(), dst, inputOffsetOffset); final int len = this.inputData.encode(dst, dstIndex);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java
this.endOfFile = SMBUtil.readInt8(buffer, bufferIndex); bufferIndex += 8; this.fileAttributes = SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4; bufferIndex += 4; // Reserved2 System.arraycopy(buffer, bufferIndex, this.fileId, 0, 16); bufferIndex += 16; final int createContextOffset = SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 15.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/AllocInfoTest.java
// When long capacity = allocInfo.getCapacity(); long free = allocInfo.getFree(); // Then - values should be preserved even at boundaries assertEquals(Long.MAX_VALUE, capacity); assertEquals(Long.MAX_VALUE, free); // Note: In real implementation, free > capacity might be invalid,
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.8K bytes - Viewed (0) -
cmd/metacache-entries.go
} // filterObjectsOnly will remove prefix directories. // Order is preserved, but the underlying slice is modified. func (m *metaCacheEntriesSorted) filterObjectsOnly() { dst := m.o[:0] for _, o := range m.o { if !o.isDir() { dst = append(dst, o) } } m.o = dst } // filterPrefixesOnly will remove objects. // Order is preserved, but the underlying slice is modified.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Aug 08 15:29:58 UTC 2024 - 24.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDescResponseTest.java
assertThrows(ArrayIndexOutOfBoundsException.class, () -> { response.readDataWireFormat(buffer, 0, 0); }); } @Test @DisplayName("Test readDataWireFormat preserves buffer index calculation") void testReadDataWireFormatBufferIndexCalculation() throws Exception { byte[] buffer = createValidSecurityDescriptorBuffer(); int startIndex = 10;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.8K bytes - Viewed (0) -
docs/en/docs/fastapi-people.md
Here I'm also highlighting contributions from sponsors.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Jan 28 20:34:56 UTC 2025 - 10.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/CommonServerMessageBlockResponseTest.java
// When boolean received = response.isReceived(); // Then assertTrue(received); verify(response).isReceived(); } @Test @DisplayName("Test Response interface methods - received") void testReceived() { // Given doNothing().when(response).received(); // When response.received();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.3K bytes - Viewed (0) -
cmd/object-api-interface.go
ReplicationSourceTaggingTimestamp time.Time // set if MinIOSourceTaggingTimestamp received ReplicationSourceLegalholdTimestamp time.Time // set if MinIOSourceObjectLegalholdTimestamp received ReplicationSourceRetentionTimestamp time.Time // set if MinIOSourceObjectRetentionTimestamp received DeletePrefix bool // set true to enforce a prefix deletion, only application for DeleteObject API,
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Sep 07 16:13:09 UTC 2025 - 17.5K bytes - Viewed (0) -
okhttp/src/jvmMain/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.list
repbody.aero repl.co repl.run replit.app replit.dev report republican res.aero res.in research.aero researched.cx reservd.com reservd.dev.thingdust.io reservd.disrec.thingdust.io reservd.testing.thingdust.io reserve-online.com reserve-online.net resindevice.io rest restaurant restaurant.bj resto.bj review reviews revista.bo rexroth rg.it
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue May 27 22:00:49 UTC 2025 - 129.6K bytes - Viewed (3) -
src/main/java/jcifs/smb1/util/transport/Response.java
package jcifs.smb1.util.transport; /** * Abstract base class for transport layer response objects. * Represents a response that can be received through the SMB1 transport layer. */ public abstract class Response { /** * Default constructor for Response. */ public Response() { // Default constructor } /** * The expiration time for this response in milliseconds. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 557 bytes - Viewed (0)