- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 1,878 for Pong (0.02 sec)
-
src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java
assertNotNull(deleteQuery); } public void test_execute_withLongExceptionMessage() { // Create a very long exception message StringBuilder longMessage = new StringBuilder("Error: "); for (int i = 0; i < 100; i++) { longMessage.append("This is a very long error message part ").append(i).append(". "); } final String errorMessage = longMessage.toString();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsPathMapping.java
public void setCreatedBy(String value) { registerModifiedProperty("createdBy"); this.createdBy = value; } public Long getCreatedTime() { checkSpecifiedProperty("createdTime"); return createdTime; } public void setCreatedTime(Long value) { registerModifiedProperty("createdTime"); this.createdTime = value; } public String getProcessType() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.6K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/RecordedResponse.kt
}, ).isNotNull() } fun assertSentRequestAtMillis( minimum: Long, maximum: Long, ) = apply { assertDateInRange(minimum, response!!.sentRequestAtMillis, maximum) } fun assertReceivedResponseAtMillis( minimum: Long, maximum: Long, ) = apply { assertDateInRange(minimum, response!!.receivedResponseAtMillis, maximum) }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 5.3K bytes - Viewed (0) -
android/guava/src/com/google/common/math/MathPreconditions.java
if (x <= 0) { throw new IllegalArgumentException(role + " (" + x + ") must be > 0"); } return x; } @CanIgnoreReturnValue static long checkPositive(String role, long x) { if (x <= 0) { throw new IllegalArgumentException(role + " (" + x + ") must be > 0"); } return x; } @CanIgnoreReturnValue
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 3.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/SmbInfoAllocationTest.java
// Negative values remain negative when stored in long fields // The calculations will result in negative values long expectedCapacity = (long) alloc * sectPerAlloc * bytesPerSect; assertEquals(expectedCapacity, smbInfoAllocation.getCapacity()); long expectedFree = (long) free * sectPerAlloc * bytesPerSect;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.2K bytes - Viewed (0) -
src/test/java/jcifs/util/EncdecTest.java
@Test @DisplayName("Should encode and decode 64-bit integers") void testInt64Operations() { // Given long value = 0x123456789ABCDEF0L; byte[] buffer = new byte[8]; // When - encode little endian Encdec.enc_uint64le(value, buffer, 0); long decoded = Encdec.dec_uint64le(buffer, 0); // Then assertEquals(value, decoded);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.1K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http1/Http1ExchangeCodec.kt
private inner class FixedLengthSource( url: HttpUrl, private var bytesRemaining: Long, ) : AbstractSource(url) { init { if (bytesRemaining == 0L) { responseBodyComplete(trailers = Headers.EMPTY) } } override fun read( sink: Buffer, byteCount: Long, ): Long { require(byteCount >= 0L) { "byteCount < 0: $byteCount" } check(!closed) { "closed" }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 17.5K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/base/StopwatchBenchmark.java
@NullUnmarked public class StopwatchBenchmark { @Benchmark long stopwatch(int reps) { long total = 0; for (int i = 0; i < reps; i++) { Stopwatch s = Stopwatch.createStarted(); // here is where you would do something total += s.elapsed(NANOSECONDS); } return total; } @Benchmark long manual(int reps) { long total = 0; for (int i = 0; i < reps; i++) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileStandardInfo.java
public int getAttributes() { return 0; } @Override public long getCreateTime() { return 0L; } @Override public long getLastWriteTime() { return 0L; } @Override public long getLastAccessTime() { return 0L; } @Override public long getSize() { return this.endOfFile; } /** * {@inheritDoc}
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.7K bytes - Viewed (0) -
src/main/resources/fess_indices/fess/doc.json
} } ], "properties": { "anchor": { "type": "keyword" }, "boost": { "type": "float" }, "click_count": { "type": "long" }, "config_id": { "type": "keyword" }, "important_content": { "type": "text", "analyzer": "standard_analyzer",
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 15 11:50:35 UTC 2023 - 11.8K bytes - Viewed (0)