- Sort Score
- Num 10 results
- Language All
Results 81 - 90 of 141 for 0x (0.03 seconds)
-
internal/ringbuffer/ring_buffer_test.go
} t.Fatalf("expect read %d bytes but got %d", wroteBytes, readBytes) } if readHash.Sum32() != wroteHash.Sum32() { t.Fatalf("expect read hash 0x%08x but got 0x%08x", readHash.Sum32(), wroteHash.Sum32()) } } func TestRingBuffer_BlockingBig(t *testing.T) { // Typical runtime is ~5-10s. defer timeout(60 * time.Second)() const debug = false
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 26.7K bytes - Click Count (0) -
src/main/java/jcifs/ntlmssp/Type1Message.java
return "Type1Message[suppliedDomain=" + (suppliedDomainString == null ? "null" : suppliedDomainString) + ",suppliedWorkstation=" + (suppliedWorkstationString == null ? "null" : suppliedWorkstationString) + ",flags=0x" + jcifs.util.Hexdump.toHexString(getFlags(), 8) + "]"; } private void parse(final byte[] material) throws IOException { int pos = 0; for (int i = 0; i < 8; i++) {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 7.8K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SmbComTransaction.java
+ ",maxParameterCount=" + maxParameterCount + ",maxDataCount=" + maxDataCount + ",maxSetupCount=" + (int) maxSetupCount + ",flags=0x" + Hexdump.toHexString(flags, 2) + ",timeout=" + timeout + ",parameterCount=" + parameterCount + ",parameterOffset=" + parameterOffset + ",parameterDisplacement=" + parameterDisplacement + ",dataCount=" + dataCountCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 10.4K bytes - Click Count (0) -
android/guava/src/com/google/common/primitives/UnsignedLongs.java
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Jan 05 22:13:21 GMT 2026 - 17.8K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationTest.java
String result = trans2QueryFSInfo.toString(); assertNotNull(result); assertTrue(result.contains("Trans2QueryFSInformation")); assertTrue(result.contains("informationLevel=0x")); // SMB_INFO_ALLOCATION is -1, which should be displayed properly assertTrue(result.contains("fff") || result.contains("FFF")); } @TestCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 18.9K bytes - Click Count (0) -
src/test/java/jcifs/smb1/smb1/Trans2QueryPathInformationResponseTest.java
String str = basicInfo.toString(); assertNotNull(str); assertTrue(str.contains("SmbQueryFileBasicInfo")); assertTrue(str.contains("attributes=0x")); } } @Nested @DisplayName("SmbQueryFileStandardInfo Tests") class SmbQueryFileStandardInfoTests { @Test
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 11.5K bytes - Click Count (0) -
src/main/java/jcifs/internal/witness/WitnessRpcMessage.java
case ERROR_ACCESS_DENIED: return "Access denied"; case ERROR_INVALID_STATE: return "Invalid state"; default: return "Unknown error: 0x" + Integer.toHexString(returnCode); } } /** * Encodes the witness RPC message parameters to NDR format. * Subclasses must implement this method to encode their specific parameters.Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 24 00:12:28 GMT 2025 - 5.5K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/ws/WebSocketReader.kt
} else if (frameLength == PAYLOAD_LONG.toLong()) { frameLength = source.readLong() if (frameLength < 0L) { throw ProtocolException( "Frame length 0x${frameLength.toHexString()} > 0x7FFFFFFFFFFFFFFF", ) } } if (isControlFrame && frameLength > PAYLOAD_BYTE_MAX) {
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 10K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/multichannel/NetworkInterfaceInfo.java
return false; } } @Override public String toString() { return "NetworkInterfaceInfo{" + "address=" + address + ", linkSpeed=" + linkSpeed + " Mbps" + ", capability=0x" + Integer.toHexString(capability) + ", rssCapable=" + rssCapable + ", rdmaCapable=" + rdmaCapable + '}'; } @Override public boolean equals(Object obj) { if (this == obj)Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 21 11:13:46 GMT 2025 - 9.8K bytes - Click Count (0) -
src/main/java/jcifs/smb1/http/NtlmHttpFilter.java
} } catch (final SmbAuthException sae) { if (LogStream.level > 1) { log.println("NtlmHttpFilter: " + ntlm.getName() + ": 0x" + jcifs.smb1.util.Hexdump.toHexString(sae.getNtStatus(), 8) + ": " + sae); } if (sae.getNtStatus() == NtStatus.NT_STATUS_ACCESS_VIOLATION) {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 11.3K bytes - Click Count (0)