- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 333 for representation (0.74 sec)
-
src/main/java/org/codelibs/core/text/DecimalFormatUtil.java
/** * Normalizes the string representation of a number. * * @param s * A string representing a number * @return The normalized string * @see #normalize(String, Locale) */ public static String normalize(final String s) { return normalize(s, LocaleUtil.getDefault()); } /** * Normalizes the string representation of a number by removing grouping separators
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/RequestParameter.java
*/ public String[] getValues() { return values; } /** * Returns a string representation of this RequestParameter. * The format includes the parameter name and its values in array format. * * @return a string representation of this object in the format "[name, [value1, value2, ...]]" */ @Override public String toString() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/DfsReferralTest.java
} /** * Tests the toString method of the DfsReferral class. * It verifies that the toString method returns a string representation of the object * that accurately reflects its properties. */ @Test void testToString() { // Given DfsReferral referral = new DfsReferral(); referral.pathConsumed = 20;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.8K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2.kt
FLAGS[prefixFlag] + '|'.toString() + FLAGS[frameFlag] + "|PADDED" } } for (i in FLAGS.indices) { // Fill in holes with binary representation. if (FLAGS[i] == null) FLAGS[i] = BINARY[i] } } /** * Returns a human-readable representation of HTTP/2 frame headers. * * The format is: * * ``` * direction streamID length type flags * ``` *
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/jcifs/SID.java
* resolved in which case the numeric representation is returned. * * @return the domain name */ String getDomainName(); /** * Return text representing the SID type suitable for display to * users. Text includes 'User', 'Domain group', 'Local group', etc. * * @return textual representation of type */ String getTypeText(); /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.4K bytes - Viewed (0) -
guava/src/com/google/common/math/PairedStats.java
return value; } // Serialization helpers /** The size of byte array representation in bytes. */ private static final int BYTES = Stats.BYTES * 2 + Double.SIZE / 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 - 12.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/SpnegoCredential.java
* @return The username from SPNEGO authentication */ @Override public String getUserId() { return username; } /** * Returns a string representation of this credential. * * @return A string representation containing the username in braces */ @Override public String toString() { return "{" + username + "}"; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K 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) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapSet.java
* @return true if this is an INDEX, false otherwise */ public boolean isIndex() { return INDEX.equals(type); } /** * Returns a string representation of this object. * @return A string representation. */ @Override public String toString() { return "SitemapSet [sitemapList=" + sitemapList + ", type=" + type + "]"; }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 2.9K 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)