- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 159 for representation (0.11 sec)
-
src/main/java/jcifs/util/Hexdump.java
* @return a hexadecimal string representation of the value, padded to the specified size */ public static String toHexString(final int val, final int size) { final char[] c = new char[size]; toHexChars(val, c, 0, size); return new String(c); } /** * Converts a long value to a hexadecimal string representation with specified padding. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/Hexdump.java
* @return a hexadecimal string representation of the value, padded to the specified size */ public static String toHexString(final int val, final int size) { final char[] c = new char[size]; toHexChars(val, c, 0, size); return new String(c); } /** * Converts a long value to a hexadecimal string representation with specified padding. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapFile.java
*/ @Override public int hashCode() { return java.util.Objects.hash(loc, lastmod); } /** * Returns a string representation of this SitemapFile. * @return A string representation. */ @Override public String toString() { return "SitemapFile [loc=" + loc + ", lastmod=" + lastmod + "]"; }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 4.4K bytes - Viewed (1) -
src/main/java/jcifs/smb1/dcerpc/UUID.java
node[3] = uuid.node[3]; node[4] = uuid.node[4]; node[5] = uuid.node[5]; } /** * Constructs a UUID from a string representation * * @param str the string representation of the UUID to parse */ public UUID(final String str) { final char[] arr = str.toCharArray(); time_low = hex_to_bin(arr, 0, 8);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/dcerpc/DcerpcMessageTest.java
buf.enc_ndr_small(0); // minor version buf.enc_ndr_small(2); // ptype = 2 (Response) buf.enc_ndr_small(0); // flags buf.enc_ndr_long(0x00000010); // data representation buf.enc_ndr_short(20); // length buf.enc_ndr_short(0); // auth length buf.enc_ndr_long(0); // call_id // Response body buf.enc_ndr_long(4); // alloc_hint
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResultDataImpl.java
} catch (final UnsupportedEncodingException e) { return new String(data, Constants.UTF_8_CHARSET); } } /** * Returns a string representation of this object. * @return A string representation. */ @Override public String toString() { return "AccessResultDataImpl [id=" + id + ", transformerName=" + transformerName + ", encoding=" + encoding + "]"; }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ObjectUtil.java
public static int hashCode(final Object obj) { return obj == null ? 0 : obj.hashCode(); } /** * Returns the string representation of the specified object, or null if the object is null. * * @param obj the object * @return the string representation or null */ public static String toString(final Object obj) { return obj == null ? null : obj.toString(); } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/Trans2SetFileInformationResponseTest.java
String actualString = response.toString(); assertTrue(actualString.startsWith("Trans2SetFileInformationResponse["), "The string representation should start with the class name."); assertTrue(actualString.endsWith("]"), "The string representation should end with a bracket."); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java
return false; } return true; } /** * Returns a string representation of this CharMappingItem including all fields. * * @return string representation of this object */ @Override public String toString() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Node.java
* @return a new filtered graph */ @Nonnull Node filter(@Nonnull Predicate<Node> filter); /** * Returns a detailed string representation of this dependency node. * <p> * When verbose mode is disabled, returns the basic string representation in the format: * {@code groupId:artifactId:version[:scope]} * <p>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Mon Mar 24 14:10:11 UTC 2025 - 4.2K bytes - Viewed (0)