- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 129 for Representation (0.12 sec)
-
src/main/java/org/codelibs/core/xml/DomUtil.java
final StringBuilder buf = new StringBuilder(1000); appendElement(element, buf); return new String(buf); } /** * Appends the string representation of an {@link Element}. * * @param element * The element. Must not be {@literal null}. * @param buf * The string buffer. Must not be {@literal null}. */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 10.1K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Joiner.java
} /** * Appends the string representation of each of {@code parts}, using the previously configured * separator between each, to {@code appendable}. */ @CanIgnoreReturnValue public <A extends Appendable> A appendTo(A appendable, Iterable<?> parts) throws IOException { return appendTo(appendable, parts.iterator()); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 19.3K bytes - Viewed (0) -
guava/src/com/google/common/base/Joiner.java
} /** * Appends the string representation of each of {@code parts}, using the previously configured * separator between each, to {@code appendable}. */ @CanIgnoreReturnValue public <A extends Appendable> A appendTo(A appendable, Iterable<?> parts) throws IOException { return appendTo(appendable, parts.iterator()); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Apr 14 15:16:19 UTC 2025 - 21K bytes - Viewed (0) -
src/main/java/jcifs/smb/SID.java
si += 4; } } /** * Construct a SID from it's textual representation such as * {@code S-1-5-21-1496946806-2192648263-3843101252-1029}. * * @param textual the textual representation of the SID * @throws SmbException if the textual format is invalid */ public SID(final String textual) throws SmbException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 16K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcMessageTest.java
.thenReturn(DcerpcConstants.RPC_PT_RESPONSE) // ptype .thenReturn(DcerpcConstants.RPC_C_PF_BROADCAST); // flags when(mockBuffer.dec_ndr_long()).thenReturn(0x00000010) // Data representation .thenReturn(123); // call_id when(mockBuffer.dec_ndr_short()).thenReturn(100) // length .thenReturn(0); // auth_value length
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 18.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SID.java
* only the name component will be returned (e.g. SYSTEM). * If the sid cannot be resolved the numeric representation from * toString() is returned. */ /** * Returns a string representation of this SID suitable for display to users. * * @return display string representation of the SID */ public String toDisplayString() { if (origin_server != null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.5K bytes - Viewed (0) -
guava/src/com/google/common/math/Stats.java
return mean; } // Serialization helpers /** The size of byte array representation in bytes. */ static final int BYTES = (Long.SIZE + Double.SIZE * 4) / Byte.SIZE; /** * Gets a byte array representation of this instance. * * <p><b>Note:</b> No guarantees are made regarding stability of the representation between * versions. */ public byte[] toByteArray() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 24.8K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtAddress.java
* is based on the integer IP address and not the string representation. */ @Override public boolean equals(final Object obj) { return obj instanceof NbtAddress && ((NbtAddress) obj).address == this.address; } /** * Returns the {@link java.lang.String} representaion of this address. */ @Override public String toString() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileSystemInformationTest.java
assertEquals(0, smbInfoAllocation.getCapacity()); assertEquals(0, smbInfoAllocation.getFree()); } @Test @DisplayName("Should provide string representation") void testToString() { String result = smbInfoAllocation.toString(); assertNotNull(result); assertTrue(result.contains("SmbInfoAllocation"));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/MethodUtil.java
} /** * Returns the string representation of the method signature. * * @param methodName * The method name. Cannot be {@literal null} or empty * @param argTypes * The argument types * @return The string representation of the method signature */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 12.6K bytes - Viewed (0)