- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 1,647 for ToString (0.19 sec)
-
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java
} public void test_toString() { // Test toString method StopwordsItem item = new StopwordsItem(123, "word"); assertEquals("StopwordsItem [id=123, inputs=word, newInputs=null]", item.toString()); item.setNewInput("updated"); assertEquals("StopwordsItem [id=123, inputs=word, newInputs=updated]", item.toString()); item.setNewInput("");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/SamlCredential.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/RelatedContentDbm.java
{ setupEpg(_epgMap, et -> ((RelatedContent) et).getContent(), (et, vl) -> ((RelatedContent) et).setContent(DfTypeUtil.toString(vl)), "content"); setupEpg(_epgMap, et -> ((RelatedContent) et).getCreatedBy(), (et, vl) -> ((RelatedContent) et).setCreatedBy(DfTypeUtil.toString(vl)), "createdBy"); setupEpg(_epgMap, et -> ((RelatedContent) et).getCreatedTime(),
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.9K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComTreeDisconnectTest.java
} /** * Test the toString method. */ @Test void testToString() { // Given SmbComTreeDisconnect smbComTreeDisconnect = new SmbComTreeDisconnect(); // When String result = smbComTreeDisconnect.toString(); // Then assertTrue(result.startsWith("SmbComTreeDisconnect["), "toString should start with 'SmbComTreeDisconnect['");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2QueryFSInformationResponse.java
bufferIndex += 4; this.info = info; return bufferIndex - start; } @Override public String toString() { return ("Trans2QueryFSInformationResponse[" + super.toString() + "]"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/Base64.java
} if (remainder == 0) { return buffer.toString(); } if (remainder == 1) { block = (bytes[i] & 0xff) << 4; buffer.append(ALPHABET.charAt(block >>> 6)); buffer.append(ALPHABET.charAt(block & 0x3f)); buffer.append("=="); return buffer.toString(); } block = ((bytes[i++] & 0xff) << 8 | bytes[i] & 0xff) << 2;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.1K bytes - Viewed (0) -
compat/maven-builder-support/src/main/java/org/apache/maven/building/DefaultProblem.java
if (!buffer.isEmpty()) { buffer.append(", "); } buffer.append("column ").append(getColumnNumber()); } return buffer.toString(); } @Override public Exception getException() { return exception; } @Override public String getMessage() { String msg;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 4.4K bytes - Viewed (0) -
guava/src/com/google/common/base/Suppliers.java
return uncheckedCastNullableTToT(value); } @Override public String toString() { // This is a little strange if the unit the user provided was not NANOS, // but we don't want to store the unit just for toString return "Suppliers.memoizeWithExpiration(" + delegate + ", " + durationNanos + ", NANOS)"; } @GwtIncompatible
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 16.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/FilesTest.java
assertEquals(ASCII, Files.toString(asciiFile, US_ASCII)); assertEquals(I18N, Files.toString(i18nFile, UTF_8)); assertThat(Files.toString(i18nFile, US_ASCII)).isNotEqualTo(I18N); } public void testWriteString() throws IOException { File temp = createTempFile(); Files.write(I18N, temp, UTF_16LE); assertEquals(I18N, Files.toString(temp, UTF_16LE)); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 22.1K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Suppliers.java
return uncheckedCastNullableTToT(value); } @Override public String toString() { // This is a little strange if the unit the user provided was not NANOS, // but we don't want to store the unit just for toString return "Suppliers.memoizeWithExpiration(" + delegate + ", " + durationNanos + ", NANOS)"; } @GwtIncompatible
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 16.5K bytes - Viewed (0)