- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for hexCode (0.06 sec)
-
compat/maven-compat/src/test/java/org/apache/maven/artifact/AbstractArtifactComponentTestCase.java
return session; } private static final char[] hexCode = "0123456789ABCDEF".toCharArray(); private static String printHexBinary(byte[] data) { StringBuilder r = new StringBuilder(data.length * 2); for (byte b : data) { r.append(hexCode[(b >> 4) & 0xF]); r.append(hexCode[(b & 0xF)]); } return r.toString(); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.8K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
} NbtAddress doNameQuery ( Name name, InetAddress svr ) throws UnknownHostException { NbtAddress addr; if ( name.hexCode == 0x1d && svr == null ) { svr = this.baddr; // bit of a hack but saves a lookup } name.srcHashCode = svr != null ? svr.hashCode() : 0; addr = getCachedAddress(name);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 14 14:26:22 UTC 2022 - 38.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
* <td> * A relatively sophisticated example that references a file * <code>msmith1</code>'s desktop as user <code>Administrator</code>. Notice the '@' is URL encoded with the '%40' * hexcode escape. * </td> * </tr> * * <tr> * <td width="20%"><code>smb://angus/</code></td> * <td> * This references only a server. The behavior of some methods is different
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu May 23 01:50:13 UTC 2024 - 82.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
* A relativly sophisticated example that references a file * <code>msmith1</code>'s desktop as user <code>Administrator</code>. Notice the '@' is URL encoded with the '%40' hexcode escape. * </td></tr> * * <tr><td width="20%"><code>smb1://angus/</code></td><td> * This references only a server. The behavior of some methods is different
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 107.9K bytes - Viewed (0)