- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 78 for GetLength (0.16 sec)
-
src/main/java/jcifs/dcerpc/ndr/NdrBuffer.java
* Returns the length of data in the buffer. * * @return the data length */ public int getLength() { return this.deferred.length; } /** * Sets the length of data in the buffer. * * @param length the new data length */ public void setLength(final int length) { this.deferred.length = length; } /**Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.7K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomNodePointer.java
@Override public Object getBaseValue() { return node; } @Override public Object getImmediateNode() { return node; } @Override public int getLength() { return 1; } @Override public QName getName() { return new QName(null, node.name()); } @Override public boolean isCollection() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/xml/DomUtil.java
public static void appendChildren(final NodeList children, final StringBuilder buf) { assertArgumentNotNull("children", children); assertArgumentNotNull("buf", buf); final int length = children.getLength(); for (int i = 0; i < length; ++i) { appendNode(children.item(i), buf); } } /** * Appends the string representation of a {@link NamedNodeMap}. *
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 10.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/Smb2RdmaTransform.java
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 3K bytes - Viewed (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
} } private void handleRdmaRead(Smb2ReadRequest request) throws IOException { // Allocate buffer for read data ByteBuffer readBuffer = bufferManager.allocateBuffer(request.getLength()); RdmaMemoryRegion readRegion = provider.registerMemory(readBuffer, EnumSet.of(RdmaAccess.LOCAL_WRITE, RdmaAccess.REMOTE_WRITE)); try {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 35.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
final NodeList snapshotNodeList = doc.getElementsByTagName("snapshot"); if (snapshotNodeList.getLength() > 0) { final NodeList nodeList = snapshotNodeList.item(0).getChildNodes(); for (int i = 0; i < nodeList.getLength(); i++) { final Node node = nodeList.item(i); if ("timestamp".equalsIgnoreCase(node.getNodeName())) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 24.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java
final int length = msg.getLength() - raxr.getDataLength(); update(data, index, length - SmbConstants.SIGNATURE_OFFSET - 8); update(raxr.getData(), raxr.getOffset(), raxr.getDataLength()); } else { update(data, index, msg.getLength() - SmbConstants.SIGNATURE_OFFSET - 8); } final byte[] signature = digest();
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.9K bytes - Viewed (0) -
src/test/java/jcifs/pac/PacUnicodeStringTest.java
assertNotNull(pacString, "The PacUnicodeString object should not be null."); // Verify that the getters return the correct values assertEquals(length, pacString.getLength(), "The length should match the value provided in the constructor."); assertEquals(maxLength, pacString.getMaxLength(), "The maxLength should match the value provided in the constructor.");
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2Request.java
*/ @Override public int encode(final byte[] dst, final int dstIndex) { final int len = super.encode(dst, dstIndex); final int exp = size(); final int actual = getLength(); if (exp != actual) { // Log the size mismatch for debugging but don't throw exception // This can occur due to padding alignment differences between size8() and pad8()Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NameServiceClient.java
} @Override public void run() { int nameTrnId; NameServicePacket response; try { while (thread == Thread.currentThread()) { in.setLength(RCV_BUF_SIZE); socket.setSoTimeout(closeTimeout); socket.receive(in); if (LogStream.level > 3) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 17.6K bytes - Viewed (0)