- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 28 for script_type (0.24 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/exentity/CrawlingConfig.java
} } } default String getScriptType() { final String scriptType = getConfigParameterMap(ConfigName.CONFIG).get(Param.Config.SCRIPT_TYPE); if (StringUtil.isNotBlank(scriptType)) { return scriptType; } return Constants.DEFAULT_SCRIPT; } public enum ConfigType { WEB("W"), FILE("F"), DATA("D");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/AbstractDataStore.java
// nothing } private static final Logger logger = LogManager.getLogger(AbstractDataStore.class); /** * The script type. */ protected static final String SCRIPT_TYPE = "script_type"; /** * The mime type. */ public String mimeType = "application/datastore"; /** * The flag to check if the data store is alive. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/SchedulerTests.java
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/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java
final Map<String, Object> requestBody = new HashMap<>(); requestBody.put("name", NAME_PREFIX + "Scheduler"); requestBody.put("target", "all"); requestBody.put("script_type", "groovy"); requestBody.put("sort_order", 0); requestBody.put("crawler", true); requestBody.put("job_logging", true); requestBody.put("available", true);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_config.scheduled_job/scheduled_job.bulk
{"index":{"_index":"fess_config.scheduled_job","_id":"log_purger"}}
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Nov 07 06:19:20 UTC 2024 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsScheduledJob.java
this.scriptData = value; } public String getScriptType() { checkSpecifiedProperty("scriptType"); return convertEmptyToNull(scriptType); } public void setScriptType(String value) { registerModifiedProperty("scriptType"); this.scriptType = value; } public Integer getSortOrder() { checkSpecifiedProperty("sortOrder");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/job/ScriptExecutorJob.java
final JobLog jobLog = new JobLog(scheduledJob); final String scriptType = scheduledJob.getScriptType(); final String script = scheduledJob.getScriptData(); final JobExecutor jobExecutor = ComponentUtil.getJobExecutor(scriptType); if (jobExecutor == null) { throw new ScheduledJobException("No jobExecutor: " + scriptType); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsJobLog.java
this.scriptResult = value; } public String getScriptType() { checkSpecifiedProperty("scriptType"); return convertEmptyToNull(scriptType); } public void setScriptType(String value) { registerModifiedProperty("scriptType"); this.scriptType = value; } public Long getStartTime() { checkSpecifiedProperty("startTime");
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/indexer/DocBoostMatcher.java
/** The script engine type used for expression evaluation */ private final String scriptType; /** * Default constructor that creates a DocBoostMatcher with default script type. * Uses the default script engine as defined in Constants.DEFAULT_SCRIPT. */ public DocBoostMatcher() { scriptType = Constants.DEFAULT_SCRIPT; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/ScheduledJob.java
+ ", cronExpression=" + cronExpression + ", jobLogging=" + jobLogging + ", name=" + name + ", scriptData=" + scriptData + ", scriptType=" + scriptType + ", sortOrder=" + sortOrder + ", target=" + target + ", updatedBy=" + updatedBy + ", updatedTime=" + updatedTime + ", docMeta=" + docMeta + "]"; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 3.1K bytes - Viewed (0)