- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 625 for 16 (0.02 sec)
-
src/main/java/jcifs/internal/smb2/info/Smb2SetInfoRequest.java
dstIndex += 4; SMBUtil.writeInt4(this.additionalInformation, dst, dstIndex); dstIndex += 4; System.arraycopy(this.fileId, 0, dst, dstIndex, 16); dstIndex += 16; SMBUtil.writeInt2(dstIndex - getHeaderStart(), dst, bufferOffsetOffset); int len = this.info.encode(dst, dstIndex); SMBUtil.writeInt4(len, dst, bufferLengthOffset);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.8K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/HashCode.java
} /** * Creates a {@code HashCode} from a hexadecimal ({@code base 16}) encoded string. The string must * be at least 2 characters long, and contain only valid, lower-cased hexadecimal characters. * * <p>This method accepts the exact format generated by {@link #toString}. If you require more * lenient {@code base 16} decoding, please use {@link com.google.common.io.BaseEncoding#decode}
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 19:54:59 UTC 2024 - 12.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CloseRequest.java
SMBUtil.writeInt2(this.closeFlags, dst, dstIndex + 2); dstIndex += 4; dstIndex += 4; // Reserved System.arraycopy(this.fileId, 0, dst, dstIndex, 16); dstIndex += 16; if ( log.isDebugEnabled() ) { log.debug(String.format("Closing %s (%s)", Hexdump.toHexString(this.fileId), this.fileName)); } return dstIndex - start; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/LockingAndXRange.java
this.byteOffset = ( boHigh << 32 ) | boLow; int lHigh = SMBUtil.readInt4(buffer, bufferIndex + 12); int lLow = SMBUtil.readInt4(buffer, bufferIndex + 16); this.lengthInBytes = ( lHigh << 32 ) | lLow; return 20; } this.pid = SMBUtil.readInt2(buffer, bufferIndex); this.byteOffset = SMBUtil.readInt4(buffer, bufferIndex + 2);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.5K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/arm.s
XTAB R2@>8, R8 // 7284a8e6 XTAB R2@>16, R8 // 7288a8e6 XTAB R2@>24, R8 // 728ca8e6 XTAH R3@>0, R9 // 7390b9e6 XTAH R3@>8, R9 // 7394b9e6 XTAH R3@>16, R9 // 7398b9e6 XTAH R3@>24, R9 // 739cb9e6 XTABU R4@>0, R7 // 7470e7e6 XTABU R4@>8, R7 // 7474e7e6 XTABU R4@>16, R7 // 7478e7e6
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Dec 15 20:51:01 UTC 2023 - 69K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:52:42 UTC 2020 - 15.4K bytes - Viewed (0) -
compat/maven-compat/src/test/projects/project-dependencies-resolver/it0063/jdk/lib/tools.jar
META-INF/MANIFEST.MF Manifest-Version: 1.0 Created-By: 1.6.0_07 (Sun Microsystems Inc.)...
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 345 bytes - Viewed (0) -
src/main/java/jcifs/util/Encdec.java
return 2; } public static int enc_uint32be ( int i, byte[] dst, int di ) { dst[ di++ ] = (byte) ( ( i >> 24 ) & 0xFF ); dst[ di++ ] = (byte) ( ( i >> 16 ) & 0xFF ); dst[ di++ ] = (byte) ( ( i >> 8 ) & 0xFF ); dst[ di ] = (byte) ( i & 0xFF ); return 4; } public static int enc_uint16le ( short s, byte[] dst, int di ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 11K bytes - Viewed (0) -
manifests/addons/dashboards/ztunnel-dashboard.gen.json
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Jul 26 23:54:32 UTC 2024 - 17.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/ntlmssp/Type1Message.java
0xffffffff); } byte[] type1 = new byte[hostInfo ? (32 + domain.length + workstation.length) : 16]; System.arraycopy(NTLMSSP_SIGNATURE, 0, type1, 0, 8); writeULong(type1, 8, 1); writeULong(type1, 12, flags); if (hostInfo) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 8K bytes - Viewed (0)