- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 48 for jobname (0.04 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/exentity/JobLog.java
asDocMeta().version(version); } @Override public String toString() { return "JobLog [scheduledJob=" + scheduledJob + ", endTime=" + endTime + ", jobName=" + jobName + ", jobStatus=" + jobStatus + ", scriptData=" + scriptData + ", scriptResult=" + scriptResult + ", scriptType=" + scriptType + ", startTime="
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.endTime = value; } public String getJobName() { checkSpecifiedProperty("jobName"); return convertEmptyToNull(jobName); } public void setJobName(String value) { registerModifiedProperty("jobName"); this.jobName = value; } public String getJobStatus() { checkSpecifiedProperty("jobStatus");
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
{ "properties": { "jobName": { "type": "keyword" }, "jobStatus": { "type": "keyword" }, "target": { "type": "keyword" }, "scriptType": { "type": "keyword" }, "scriptData": { "type": "keyword" }, "scriptResult": { "type": "keyword" }, "lastUpdated": { "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/pager/JobLogPager.java
private int pageSize; /** Current page number */ private int currentPageNumber; /** Search criteria: job ID */ public String id; /** Search criteria: job name */ public String jobName; /** Search criteria: job status */ public String jobStatus; /** Search criteria: target */ public String target; /** Search criteria: script type */ public String scriptType;
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("_id"); } public void columnEndTime() { doColumn("endTime"); } public void columnJobName() { doColumn("jobName"); } public void columnJobStatus() { doColumn("jobStatus"); } public void columnLastUpdated() { doColumn("lastUpdated"); }
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/app/web/admin/joblog/EditForm.java
@ValidateTypeFailure public String id; /** * The name of the job that was executed. * This is a required field identifying the specific job type. */ @Required public String jobName; /** * The execution status of the job. * This is a required field indicating success, failure, or running status. */ @Required public String jobStatus; /**
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/opensearch/config/bsbhv/BsJobLogBhv.java
try { final RESULT result = entityType.newInstance(); result.setEndTime(DfTypeUtil.toLong(source.get("endTime"))); result.setJobName(DfTypeUtil.toString(source.get("jobName"))); result.setJobStatus(DfTypeUtil.toString(source.get("jobStatus"))); result.setLastUpdated(DfTypeUtil.toLong(source.get("lastUpdated")));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.6K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Challenge.kt
authParams["charset"] = charset.name() return Challenge(scheme, authParams) } @JvmName("-deprecated_scheme") @Deprecated( message = "moved to val", replaceWith = ReplaceWith(expression = "scheme"), level = DeprecationLevel.ERROR, ) fun scheme(): String = scheme @JvmName("-deprecated_authParams") @Deprecated( message = "moved to val",
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue May 27 15:01:35 UTC 2025 - 3.5K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/MediaType.kt
return parameterNamesAndValues[i + 1] } } return null } @JvmName("-deprecated_type") @Deprecated( message = "moved to val", replaceWith = ReplaceWith(expression = "type"), level = DeprecationLevel.ERROR, ) fun type(): String = type @JvmName("-deprecated_subtype") @Deprecated( message = "moved to val",
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue May 27 14:51:08 UTC 2025 - 5.9K bytes - Viewed (0)