- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 73 for stoppedAt (1.09 sec)
-
src/main/resources/fess_message.properties
success.create_crawling_config_at_wizard = Created a crawling config {0}. success.failure_url_delete_all = Deleted failure URLs. success.delete_file = Deleted {0} file. success.job_started = Started a job: {0}. success.job_stopped = Stopped a job: {0}. success.upload_synonym_file = Uploaded a synonym file. success.upload_protwords_file = Uploaded a protwords file. success.upload_stopwords_file = Uploaded a stopwords file.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 11.6K bytes - Viewed (0) -
src/main/resources/fess_message_en.properties
success.create_crawling_config_at_wizard = Created a crawling config {0}. success.failure_url_delete_all = Deleted failure URLs. success.delete_file = Deleted {0} file. success.job_started = Started a job: {0}. success.job_stopped = Stopped a job: {0}. success.upload_synonym_file = Uploaded a synonym file. success.upload_protwords_file = Uploaded a protwords file. success.upload_stopwords_file = Uploaded a stopwords file.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 11.5K bytes - Viewed (0) -
cmd/admin-heal-ops.go
type healStatusSummary string // healStatusSummary constants const ( healNotStartedStatus healStatusSummary = "not started" healRunningStatus = "running" healStoppedStatus = "stopped" healFinishedStatus = "finished" ) const ( // a heal sequence with this many un-consumed heal result // items blocks until heal-status consumption resumes or is // aborted due to timeout.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 25.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportPoolImpl.java
*/ public void stopProactiveHealthChecking() { if (healthCheckTask != null) { healthCheckTask.cancel(false); healthCheckTask = null; log.info("Stopped proactive health checking"); } } /** * Perform proactive health check on all connections */ private void performProactiveHealthCheck() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 33.4K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Ascii.java
* known as the XON code used for software flow control in serial communications. The main use is * restarting the transmission after the communication has been stopped by the XOFF control code. * * @since 8.0 */ public static final byte XON = 17; // aka DC1 /** * Device Control 2. Characters for the control of ancillary devices associated with data
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 21.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
/** A map of design JSP file names. */ protected final Map<String, String> designJspFileNameMap = new LinkedHashMap<>(); /** A flag to indicate if the system should be forcefully stopped. */ protected final AtomicBoolean forceStop = new AtomicBoolean(false); /** A cache for language items. */ protected LoadingCache<String, List<Map<String, String>>> langItemsCache;
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/Constants.java
public static final String OK = "ok"; /** Status constant representing failed operation. */ public static final String FAIL = "fail"; /** Status constant representing stopped state. */ public static final String STOP = "stop"; /** Constant representing automatic mode. */ public static final String AUTO = "auto"; /** Constant representing no value or empty state. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 34.6K bytes - Viewed (0) -
docs/en/docs/alternatives.md
And after searching for a long time for a similar framework and testing many different alternatives, APIStar was the best option available. Then APIStar stopped to exist as a server and Starlette was created, and was a new better foundation for such a system. That was the final inspiration to build **FastAPI**.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 23.6K bytes - Viewed (0) -
cmd/metacache-set.go
tmp.Close() entries.o = append(entries.o, e.o...) if o.Limit > 0 && entries.len() > o.Limit { entries.truncate(o.Limit) return entries, nil } if err == nil { // We stopped within the listing, we are done for now... return entries, nil } if err != nil && !errors.Is(err, io.EOF) { switch toObjectErr(err, minioMetaBucket, o.objectPath(partN)).(type) { case ObjectNotFound:
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 30.7K bytes - Viewed (0) -
cmd/server-main.go
t1 := time.Now() r := rand.New(rand.NewSource(time.Now().UnixNano())) for { select { case <-ctx.Done(): // Retry was canceled successfully. return fmt.Errorf("Initializing sub-systems stopped gracefully %w", ctx.Err()) default: } // These messages only meant primarily for distributed setup, so only log during distributed setup. if globalIsDistErasure {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue May 27 15:18:36 UTC 2025 - 35.9K bytes - Viewed (4)