- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for startTime (0.03 sec)
-
src/test/java/org/codelibs/fess/helper/AbstractConfigHelperTest.java
public void test_waitForNext_withPositiveInterval() throws InterruptedException { configHelper.setReloadInterval(20L); long startTime = System.currentTimeMillis(); configHelper.waitForNext(); long endTime = System.currentTimeMillis(); long elapsed = endTime - startTime; assertTrue("Expected at least 15ms sleep, got " + elapsed + "ms", elapsed >= 15);
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/core/timer/TimeoutTask.java
private final boolean permanent; private long startTime; private int status = ACTIVE; TimeoutTask(final TimeoutTarget timeoutTarget, final int timeout, final boolean permanent) { this.timeoutTarget = timeoutTarget; this.timeoutMillis = timeout * 1000L; this.permanent = permanent; this.startTime = System.currentTimeMillis(); } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/JobLog.java
+ ", scriptData=" + scriptData + ", scriptResult=" + scriptResult + ", scriptType=" + scriptType + ", startTime=" + startTime + ", target=" + target + ", docMeta=" + docMeta + "]"; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsJobLog.java
this.scriptType = value; } public Long getStartTime() { checkSpecifiedProperty("startTime"); return startTime; } public void setStartTime(Long value) { registerModifiedProperty("startTime"); this.startTime = value; } public String getTarget() { checkSpecifiedProperty("target");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/config/es/fess_config_job_log.json
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 1.1K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_config.job_log/job_log.json
}, "scriptData": { "type": "keyword" }, "scriptResult": { "type": "keyword" }, "lastUpdated": { "type": "long" }, "startTime": { "type": "long" }, "endTime": { "type": "long" } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 524 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/joblog/EditForm.java
*/ public String scriptResult; /** * The timestamp when the job started execution. * This is a required field indicating when the job began. */ @Required public String startTime; /** * The timestamp when the job completed execution. * This field indicates when the job finished, if it has completed. */ public String endTime; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/JobLogPager.java
/** Search criteria: target */ public String target; /** Search criteria: script type */ public String scriptType; /** Search criteria: start time */ public String startTime; /** * Clears all pagination data and search criteria. */ public void clear() { allRecordCount = 0; allPageCount = 0; existPrePage = false;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsJobLogCB.java
doColumn("scriptResult"); } public void columnScriptType() { doColumn("scriptType"); } public void columnStartTime() { doColumn("startTime"); } public void columnTarget() { doColumn("target"); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsJobLogBhv.java
result.setScriptResult(DfTypeUtil.toString(source.get("scriptResult"))); result.setScriptType(DfTypeUtil.toString(source.get("scriptType"))); result.setStartTime(DfTypeUtil.toLong(source.get("startTime"))); result.setTarget(DfTypeUtil.toString(source.get("target"))); return updateEntity(source, result); } catch (InstantiationException | IllegalAccessException e) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.6K bytes - Viewed (0)