- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for setLastUpdated (0.05 sec)
-
src/test/java/org/codelibs/fess/helper/JobHelperTest.java
// Mock implementation that doesn't require client entity.setLastUpdated(System.currentTimeMillis()); } @Override public void insert(JobLog entity) { // Mock implementation that doesn't require client entity.setLastUpdated(System.currentTimeMillis()); } @Override public void update(JobLog entity) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/JobLog.java
setScriptType(scheduledJob.getScriptType()); setScriptData(scheduledJob.getScriptData()); setStartTime(ComponentUtil.getSystemHelper().getCurrentTimeAsLong()); setLastUpdated(ComponentUtil.getSystemHelper().getCurrentTimeAsLong()); setJobStatus(Constants.RUNNING); final String myName = ComponentUtil.getFessConfig().getSchedulerTargetName();
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.jobStatus = value; } public Long getLastUpdated() { checkSpecifiedProperty("lastUpdated"); return lastUpdated; } public void setLastUpdated(Long value) { registerModifiedProperty("lastUpdated"); this.lastUpdated = value; } public String getScriptData() { checkSpecifiedProperty("scriptData");
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/java/org/codelibs/fess/opensearch/config/bsbhv/BsJobLogBhv.java
result.setJobName(DfTypeUtil.toString(source.get("jobName"))); result.setJobStatus(DfTypeUtil.toString(source.get("jobStatus"))); result.setLastUpdated(DfTypeUtil.toLong(source.get("lastUpdated"))); result.setScriptData(DfTypeUtil.toString(source.get("scriptData"))); result.setScriptResult(DfTypeUtil.toString(source.get("scriptResult")));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.6K bytes - Viewed (0)