- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 116 for STOP (0.02 sec)
-
src/main/resources/fess_indices/fess.json
}, "japanese_stop": { "type": "stop", "stopwords_path": "${fess.dictionary.path}ja/stopwords.txt" }, "korean_stop": { "type": "stop", "stopwords_path": "${fess.dictionary.path}ko/stopwords.txt" }, "latvian_stop": { "type": "stop", "stopwords_path": "${fess.dictionary.path}lv/stopwords.txt"
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Fri Jun 06 14:17:42 UTC 2025 - 39.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/DataStoreTest.java
// Do nothing } @Override public void stop() { stopCallCount.incrementAndGet(); } }; // Execute stop multiple times dataStore.stop(); dataStore.stop(); dataStore.stop(); assertEquals(3, stopCallCount.get()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/DataIndexHelperTest.java
} try { dataIndexHelper.crawl("test-session-force-stop"); assertTrue("Should exit quickly when force stopped", true); } catch (Exception e) { assertTrue("Force stop should handle exceptions quickly", true); } } public void test_crawl_with_short_intervals() { try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 12.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/ExecutionSequencerTest.java
// stop it. blockingCallable.waitForStart(); // Give the second task a chance to (incorrectly) start up while the first task is running. assertThat(future2.isDone()).isFalse(); // Stop the first task. The second task should then run. blockingCallable.stop(); executor.shutdown();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 20:58:01 UTC 2025 - 16.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerAction.java
* * @param id the ID of the scheduled job to stop * @return JSON response indicating success or failure */ // PUT /api/admin/scheduler/{id}/stop @Execute(urlPattern = "{}/@word") public JsonResponse<ApiResult> put$stop(final String id) { scheduledJobService.getScheduledJob(id).ifPresent(entity -> { try { entity.stop(); } catch (final Exception e) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10K bytes - Viewed (0) -
cmd/erasure-server-pool-rebalance.go
Status rebalStatus `msg:"status"` // Current state of rebalance operation. One of Started|Stopped|Completed|Failed. } // rebalanceMeta contains information pertaining to an ongoing rebalance operation. type rebalanceMeta struct { cancel context.CancelFunc `msg:"-"` // to be invoked on rebalance-stop lastRefreshedAt time.Time `msg:"-"`
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Sep 04 20:47:24 UTC 2025 - 28.9K bytes - Viewed (0) -
cmd/admin-heal-ops.go
// for too long. unconsumedTimer := time.NewTimer(healUnconsumedTimeout) defer unconsumedTimer.Stop() var itemsLen int for { h.mutex.Lock() itemsLen = len(h.currentStatus.Items) if itemsLen == maxUnconsumedHealResultItems { // wait for a second, or quit if an external // stop signal is received or the // unconsumedTimer fires. select { // Check after a second
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 25.4K bytes - Viewed (0) -
docs/resiliency/resiliency-tests.sh
./mc ready myminio } function test_resiliency_failure_with_servers_down() { echo echo -e "${GREEN}Running test_resiliency_failure_with_servers_down ...${NC}" # Stop two nodes docker stop resiliency-minio1-1 docker stop resiliency-minio2-1 sleep 10 verify_resiliency_failure "${FUNCNAME[0]}" # Restart the nodes docker start resiliency-minio1-1 docker start resiliency-minio2-1
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sat Dec 21 04:24:45 UTC 2024 - 20.5K bytes - Viewed (0) -
cmd/utils.go
p.records[recordName] = buf.Bytes() } // Records returns the recorded profiling if any. func (p profilerWrapper) Records() map[string][]byte { return p.records } // Stop the currently running benchmark. func (p profilerWrapper) Stop() ([]byte, error) { return p.stopFn() } // Extension returns the extension without dot prefix. func (p profilerWrapper) Extension() string { return p.ext }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 33K bytes - Viewed (0) -
src/main/resources/fess_message_pl.properties
errors.failed_to_upload_protwords_file = Nie można przesłać pliku Protwords. errors.failed_to_download_stopwords_file = Nie można pobrać pliku stop-słów. errors.failed_to_upload_stopwords_file = Nie można przesłać pliku stop-słów. errors.failed_to_download_elevate_file = Nie można pobrać pliku słów podniesionych. errors.failed_to_upload_elevate_file = Nie można przesłać pliku słów podniesionych.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 12.5K bytes - Viewed (0)