- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 11 for dataCount (0.1 sec)
-
src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun May 17 13:43:42 UTC 2020 - 13.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/SmbComTransactionResponse.java
} /** * @return the dataCount */ protected final int getDataCount () { return this.dataCount; } /** * @param dataCount * the dataCount to set */ public final void setDataCount ( int dataCount ) { this.dataCount = dataCount; } /** * @param buffer */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 9.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComTransaction.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 10.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComTransactionResponse.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComNtTransaction.java
if (command == SMB_COM_NT_TRANSACT_SECONDARY) { writeInt4( parameterDisplacement, dst, dstIndex ); dstIndex += 4; } writeInt4( dataCount, dst, dstIndex ); dstIndex += 4; writeInt4(( dataCount == 0 ? 0 : dataOffset ), dst, dstIndex ); dstIndex += 4; if (command == SMB_COM_NT_TRANSACT_SECONDARY) { writeInt4( dataDisplacement, dst, dstIndex );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 3K bytes - Viewed (0) -
cmd/erasure.go
return nil } // defaultWQuorum write quorum based on setDriveCount and defaultParityCount func (er erasureObjects) defaultWQuorum() int { dataCount := er.setDriveCount - er.defaultParityCount if dataCount == er.defaultParityCount { return dataCount + 1 } return dataCount } // defaultRQuorum read quorum based on setDriveCount and defaultParityCount func (er erasureObjects) defaultRQuorum() int {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Oct 04 22:23:33 UTC 2024 - 16.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransaction.java
SMBUtil.writeInt4(this.parameterDisplacement, dst, dstIndex); dstIndex += 4; } SMBUtil.writeInt4(this.dataCount, dst, dstIndex); dstIndex += 4; SMBUtil.writeInt4( ( this.dataCount == 0 ? 0 : this.dataOffset ), dst, dstIndex); dstIndex += 4; if ( this.getCommand() == SMB_COM_NT_TRANSACT_SECONDARY ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun May 17 13:43:42 UTC 2020 - 3.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java
bufferIndex += e.nextEntryOffset; } /* last nextEntryOffset for NT 4(but not 98) is 0 so we must * use dataCount or our accounting will report an error for NT :~( */ //return bufferIndex - start; return dataCount; } public String toString() { String c; if( subCommand == SmbComTransaction.TRANS2_FIND_FIRST2 ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 8.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComNtTransactionResponse.java
bufferIndex += 4; parameterOffset = readInt4( buffer, bufferIndex ); bufferIndex += 4; parameterDisplacement = readInt4( buffer, bufferIndex ); bufferIndex += 4; dataCount = readInt4( buffer, bufferIndex ); bufferIndex += 4; dataOffset = readInt4( buffer, bufferIndex ); bufferIndex += 4; dataDisplacement = readInt4( buffer, bufferIndex );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2Response.java
bufferIndex += e.getNextEntryOffset(); } setResults(results); /* * last nextEntryOffset for NT 4(but not 98) is 0 so we must * use dataCount or our accounting will report an error for NT :~( */ return getDataCount(); } @Override public String toString () { String c;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.7K bytes - Viewed (0)