- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 169 for sheep (0.17 sec)
-
src/test/java/org/codelibs/core/lang/ThreadUtilTest.java
/** * @author shinsuke * */ public class ThreadUtilTest { /** * @throws Exception */ @Test public void test_sleep() throws Exception { ThreadUtil.sleep(1L); assertTrue(true); ThreadUtil.sleepQuietly(1L); } /** * @throws Exception */ @Test public void test_sleepQuietly() throws Exception {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 1.1K bytes - Viewed (0) -
tests/lru_test.go
} lc.Add("key1", "val1") time.Sleep(100 * time.Millisecond) // not enough to expire if lc.Len() != 1 { t.Fatalf("length differs from expected") } v, ok = lc.Get("key1") if v != "val1" { t.Fatalf("value differs from expected") } if !ok { t.Fatalf("should be true") } time.Sleep(200 * time.Millisecond) // expire v, ok = lc.Get("key1") if ok {
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Sun May 25 07:40:40 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/AbstractDataStore.java
logger.warn("Invalid read interval: {}", value); } } return readInterval; } /** * Sleep for the specified interval. * @param interval The interval. */ protected void sleep(final long interval) { ThreadUtil.sleepQuietly(interval); } /** * Store the data. * @param dataConfig The data configuration.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.5K bytes - Viewed (0) -
dbflute_fess/playsql/_readme.txt
The format of a xls file is like this: /- - - - - - - - - - - - - - - - - - - - |MEMBER_ID|MEMBER_NAME|BIRTHDATE | | 1|Stojkovic |1965/03/03| | 2|Savicevic | | | 3|... |... | (Sheet) MEMBER / MEMBER_LOGIN / MEMBER_SECURITY - - - - - - - - - -/ The defaultValueMap.dataprop is for common columns like this: /- - - - - - - - - - - - - - - - - - - - map:{ ; REGISTER_DATETIME = sysdate
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 04 22:46:31 UTC 2015 - 1.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/TestThread.java
checkNotNull(methodName); checkNotNull(arguments); assertEquals(false, invokeMethod("hasQueuedThread", this)); sendRequest(methodName, arguments); Thread.sleep(DUE_DILIGENCE_MILLIS); assertEquals(true, invokeMethod("hasQueuedThread", this)); assertNull(responseQueue.poll()); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 10.8K bytes - Viewed (0) -
docs/es/llm-prompt.md
* instance: instance (do not translate to "instancia") * scratch the surface: tocar los conceptos básicos * string: string * bug: bug * docs: documentación (do not translate to "documentos") * cheat sheet: cheat sheet (do not translate to "chuleta") * key (as in key-value pair, dictionary key): clave * array (as in JSON array): array * API key: API key (do not translate to "clave API") * 100% test coverage: cobertura de tests del 100%
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Jul 26 18:57:50 UTC 2025 - 5.3K bytes - Viewed (0) -
src/packaging/deb/init.d/fess
return=$? if [ $return -eq 0 ]; then i=0 timeout=10 # Wait for the process to be properly started before exiting until { kill -0 `cat "$PID_FILE"`; } >/dev/null 2>&1 do sleep 1 i=$(($i + 1)) if [ $i -gt $timeout ]; then log_end_msg 1 exit 1 fi done fi log_end_msg $return exit $return ;; stop) log_daemon_msg "Stopping $DESC"
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Jan 15 06:32:15 UTC 2023 - 5.8K bytes - Viewed (0) -
tests/compose.yml
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Mon Aug 04 04:07:30 UTC 2025 - 1.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ServerMessageBlock2ResponseTest.java
} catch (InterruptedException e) { // Ignore } } }); waiter.start(); Thread.sleep(50); // Give waiter time to start response.received(); assertTrue(latch.await(500, TimeUnit.MILLISECONDS)); assertTrue(response.isReceived()); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/AbstractConfigHelper.java
CommonPoolUtil.execute(this::load); } /** * Wait for the next reloading. */ protected void waitForNext() { if (reloadInterval > 0) { ThreadUtil.sleep(reloadInterval); } } /** * Load the configuration. * @return The number of loaded configurations. */ public abstract int load(); /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0)