- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 744 for tive (0.04 sec)
-
guava-testlib/src/com/google/common/collect/testing/google/TestStringSetMultimapGenerator.java
mapEntry("two", "February"), mapEntry("three", "March"), mapEntry("four", "April"), mapEntry("five", "May")); } @Override public SampleElements<String> sampleKeys() { return new SampleElements<>("one", "two", "three", "four", "five"); } @Override public SampleElements<String> sampleValues() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 14:50:24 UTC 2024 - 3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SearchLogHelperTest.java
return false; } } private static class MockSystemHelper extends SystemHelper { @Override public java.time.LocalDateTime getCurrentTimeAsLocalDateTime() { return java.time.LocalDateTime.now(); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 6K bytes - Viewed (0) -
dbflute_fess/dfprop/databaseInfoMap.dfprop
# | FLOAT | java.math.BigDecimal | decimal? | # | DOUBLE | java.math.BigDecimal | decimal? | # | DATE | java.util.Date | DateTime? | # | TIME | java.sql.Time | DateTime? | # | TIMESTAMP | java.sql.Timestamp | DateTime? | # | BIT | java.lang.Boolean | bool? | # | BOOLEAN | java.lang.Boolean | bool? |
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 31 23:35:14 UTC 2015 - 7.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/AbstractIteratorTest.java
throw sneakyThrow(new SomeCheckedException()); } } }; // The first time, the sneakily-thrown exception comes out assertThrows(SomeCheckedException.class, iter::hasNext); // But the second time, AbstractIterator itself throws an ISE assertThrows(IllegalStateException.class, iter::hasNext); } public void testException() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 7.8K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/GcFinalization.java
// we try hard to make them robust in practice. We could additionally try to add in a system // load timeout multiplier. Or we could try to use a CPU time bound instead of wall clock time // bound. But these ideas are harder to implement. We do not try to detect or handle a // user-specified -XX:+DisableExplicitGC. // // TODO(user): Consider using
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/AbstractConfigHelperTest.java
long startTime = System.currentTimeMillis(); configHelper.waitForNext(); long endTime = System.currentTimeMillis(); long elapsed = endTime - startTime; assertTrue("Expected minimal sleep time, got " + elapsed + "ms", elapsed < 50); } public void test_waitForNext_withNegativeInterval() { configHelper.setReloadInterval(-100L); long startTime = System.currentTimeMillis();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 00:03:47 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractConditionQuery.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.opensearch.user.allcommon; import java.text.SimpleDateFormat; import java.time.LocalDateTime; import java.time.ZoneId; import java.time.format.DateTimeFormatter; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.Date; import java.util.List; import java.util.TimeZone;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 21.1K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/TrailersTest.kt
import assertk.assertions.isTrue import java.lang.Thread.sleep import java.util.concurrent.TimeUnit import kotlin.concurrent.thread import kotlin.test.assertFailsWith import kotlin.time.Duration import kotlin.time.Duration.Companion.milliseconds import kotlin.time.measureTime import mockwebserver3.MockResponse import mockwebserver3.MockWebServer import mockwebserver3.SocketEffect.CloseSocket import mockwebserver3.SocketEffect.ShutdownConnection
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 07 18:57:05 UTC 2025 - 18K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
} /** * Gets the current time as a Date object. * * @return The current time. */ public Date getCurrentTime() { return new Date(getCurrentTimeAsLong()); } /** * Gets the current time in milliseconds. * * @return The current time in milliseconds. */ public long getCurrentTimeAsLong() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 36.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java
* * <p>This method performs a paginated search through all duplicate host configurations, * applying any search filters specified in the pager. The results are sorted * by sort order, creation time, regular name, and duplicate hostname.</p> * * @param duplicateHostPager the pager containing search criteria and pagination settings * @return a list of DuplicateHost entities matching the search criteria
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0)