- Sort Score
- Result 10 results
- Languages All
Results 531 - 540 of 1,647 for GoString (0.04 sec)
-
src/test/java/jcifs/internal/smb1/com/SmbComRenameTest.java
// When int result = smbComRename.readBytesWireFormat(buffer, 0); // Then assertEquals(0, result); } /** * Test toString method */ @Test @DisplayName("Test toString returns properly formatted string") public void testToString() { // Given String oldFileName = "oldFile.txt"; String newFileName = "newFile.txt";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/MatchAllQueryCommandTest.java
assertTrue(result2 instanceof MatchAllQueryBuilder); // Both should generate the same JSON String json1 = result1.toString().replaceAll("[\\s\\n]", ""); String json2 = result2.toString().replaceAll("[\\s\\n]", ""); assertEquals(json1, json2); } public void test_execute_withVeryLargeBoost() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/UnsignedLongsTest.java
String maxAsString = max.toString(radix); assertThat(UnsignedLongs.parseUnsignedLong(maxAsString, radix)).isEqualTo(max.longValue()); assertThrows( NumberFormatException.class, () -> { BigInteger overflow = max.add(ONE); String overflowAsString = overflow.toString(radix); UnsignedLongs.parseUnsignedLong(overflowAsString, radix);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComWrite.java
} @Override protected int readBytesWireFormat(final byte[] buffer, final int bufferIndex) { return 0; } @Override public String toString() { return ("SmbComWrite[" + super.toString() + ",fid=" + this.fid + ",count=" + this.count + ",offset=" + this.offset + ",remaining=" + this.remaining + "]"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationResponse.java
break; default: return null; } return inf; } @Override public String toString() { return ("Trans2QueryFSInformationResponse[" + super.toString() + "]"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapFile.java
* to incrementally fetch sitemaps that have been updated since a certain date. * </p> * * <p> * This class also provides implementations for {@code equals}, {@code hashCode}, and {@code toString} methods * to facilitate object comparison and representation. * </p> * */ public class SitemapFile implements Sitemap { private static final long serialVersionUID = 1L; /**
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/test/java/org/codelibs/fess/util/InputStreamThreadTest.java
for (int i = 1; i <= 15; i++) { inputBuilder.append("line").append(i).append("\n"); } InputStream is = new ByteArrayInputStream(inputBuilder.toString().getBytes(StandardCharsets.UTF_8)); InputStreamThread thread = new InputStreamThread(is, StandardCharsets.UTF_8, 10, null); thread.start(); thread.join(1000);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.7K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/InterruptibleTask.java
@VisibleForTesting @Nullable Thread getOwner() { return super.getExclusiveOwnerThread(); } @Override public String toString() { return task.toString(); } } @Override public final String toString() { Runnable state = get(); String result; if (state == DONE) { result = "running=[DONE]"; } else if (state instanceof Blocker) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 10K bytes - Viewed (0) -
android/guava/src/com/google/common/math/LinearTransformation.java
@Override public LinearTransformation inverse() { LinearTransformation result = inverse; return (result == null) ? inverse = createInverse() : result; } @Override public String toString() { return String.format("y = %g * x + %g", slope, yIntercept); } private LinearTransformation createInverse() { if (slope != 0.0) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 9.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileStandardInfoTest.java
buffer[offset++] = (byte) 1; // directory = true // Decode fileStandardInfo.decode(buffer, 0, buffer.length); // Test toString String result = fileStandardInfo.toString(); // Verify string contains expected values assertTrue(result.contains("SmbQueryInfoStandard")); assertTrue(result.contains("allocationSize=" + expectedAllocationSize));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0)