- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 165 for 0L (0.01 sec)
-
src/test/java/org/codelibs/fess/dict/DictionaryItemTest.java
// Initial value assertEquals(0L, item.getId()); // First modification item.id = 50L; assertEquals(50L, item.getId()); // Second modification item.id = 100L; assertEquals(100L, item.getId()); // Third modification back to 0 item.id = 0L; assertEquals(0L, item.getId()); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/LongsTest.java
assertThat(max(8L, 6L, 7L, 5L, 3L, 0L, 9L)).isEqualTo(9L); } public void testMin_noArgs() { assertThrows(IllegalArgumentException.class, () -> min()); } public void testMin() { assertThat(min(MIN_VALUE)).isEqualTo(MIN_VALUE); assertThat(min(MAX_VALUE)).isEqualTo(MAX_VALUE); assertThat(min(8L, 6L, 7L, 5L, 3L, 0L, 9L)).isEqualTo(0L); } public void testConstrainToRange() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 28.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/rank/fusion/RankFusionSearcherTest.java
} } private static class SimpleSearcher extends RankFusionSearcher { @Override protected SearchResult search(String query, SearchRequestParams params, OptionalThing<FessUserBean> userBean) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.3K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/CacheStrategy.kt
val servedMillis = servedDate?.time ?: sentRequestMillis val delta = servedMillis - lastModified!!.time return if (delta > 0L) delta / 10 else 0L } return 0L } /** * Returns the current age of the response, in milliseconds. The calculation is specified by RFC * 7234, 4.2.3 Calculating Age. */
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 12K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache2/FileOperator.kt
@Throws(IOException::class) fun write( pos: Long, source: Buffer, byteCount: Long, ) { if (byteCount < 0L || byteCount > source.size) { throw IndexOutOfBoundsException() } var mutablePos = pos var mutableByteCount = byteCount while (mutableByteCount > 0L) { val bytesWritten = fileChannel.transferFrom(source, mutablePos, mutableByteCount) mutablePos += bytesWritten
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 2.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java
assertEquals("0", mockConfig.getTimeAdjustTimeMillis()); assertEquals(Long.valueOf(0L), mockConfig.getTimeAdjustTimeMillisAsLong()); // Test multiple calls return same values for (int i = 0; i < 10; i++) { assertEquals("0", mockConfig.getTimeAdjustTimeMillis()); assertEquals(Long.valueOf(0L), mockConfig.getTimeAdjustTimeMillisAsLong()); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java
assertEquals(0, freshData.getCurrentPageNumber()); assertEquals(0L, freshData.getAllRecordCount()); assertEquals(0, freshData.getAllPageCount()); assertFalse(freshData.isExistNextPage()); assertFalse(freshData.isExistPrevPage()); assertEquals(0L, freshData.getCurrentStartRecordNumber()); assertEquals(0L, freshData.getCurrentEndRecordNumber()); assertFalse(freshData.isPartialResults());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 23.3K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/KotlinSourceModernTest.kt
builder = builder.callTimeout(0L, TimeUnit.SECONDS) builder = builder.callTimeout(Duration.ofSeconds(0L)) builder = builder.connectTimeout(0L, TimeUnit.SECONDS) builder = builder.connectTimeout(Duration.ofSeconds(0L)) builder = builder.readTimeout(0L, TimeUnit.SECONDS) builder = builder.readTimeout(Duration.ofSeconds(0L)) builder = builder.writeTimeout(0L, TimeUnit.SECONDS)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jun 21 20:36:35 UTC 2025 - 46.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java
// Test with null values SearchResult result = new SearchResult(null, 0L, null, 0L, true, null); assertNull(result.getDocumentList()); assertEquals(0L, result.getAllRecordCount()); assertNull(result.getAllRecordCountRelation()); assertEquals(0L, result.getQueryTime()); assertTrue(result.isPartialResults()); assertNull(result.getFacetResponse());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.9K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerReader.kt
throw ProtocolException("length encoded with more than 8 bytes is not supported") } var lengthBits = source.readByte().toLong() and 0xff if (lengthBits == 0L || lengthBytes == 1 && lengthBits and 0b1000_0000 == 0L) { throw ProtocolException("invalid encoding for length") } for (i in 1 until lengthBytes) { lengthBits = lengthBits shl 8
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 10.5K bytes - Viewed (0)