- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 37 for scriptType (0.36 sec)
-
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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 5.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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java
* @param value the original value to process * @param template the template script to evaluate * @param scriptType the type of script engine to use */ default void putResultDataWithTemplate(final Map<String, Object> dataMap, final String key, final Object value, final String template, final String scriptType) { Object target = value; if (template != null) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/AbstractDataStore.java
protected Object convertValue(final String scriptType, final String template, final Map<String, Object> paramMap) { if (StringUtil.isEmpty(template)) { return StringUtil.EMPTY; } if (paramMap.containsKey(template)) { return paramMap.get(template); } return ComponentUtil.getScriptEngineFactory().getScriptEngine(scriptType).evaluate(template, paramMap); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 7.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/JobLogDbm.java
false, false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false); protected final ColumnInfo _columnScriptType = cci("scriptType", "scriptType", null, null, String.class, "scriptType", null, false, false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/scheduler/CreateForm.java
*/ @Size(max = 100) @CronExpression public String cronExpression; /** * The type of script for the scheduled job. */ @Required @Size(max = 100) public String scriptType; /** * The script data or code for the scheduled job. */ @CustomSize(maxKey = "form.admin.max.input.size") public String scriptData; /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/joblog/EditForm.java
public String target; /** * The type of script that was executed for this job. * This is a required field indicating the script engine or type used. */ @Required public String scriptType; /** * The script data or code that was executed. * This field contains the actual script content that was run. */ public String scriptData; /**Registered: Sat Dec 20 09:19:18 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: job status */ public String jobStatus; /** 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;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/impl/ScriptExecutor.java
public ScriptExecutor() { super(); } @Override public Object execute(final String scriptType, final String script) { final Map<String, Object> params = new HashMap<>(); params.put("executor", this); return ComponentUtil.getScriptEngineFactory().getScriptEngine(scriptType).evaluate(script, params); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/joblog/admin_joblog_details.jsp
<tr> <th><la:message key="labels.joblog_scriptType"/></th> <td>${f:h(scriptType)}<la:hidden property="scriptType"/></td> </tr> <tr> <th><la:message key="labels.joblog_scriptData"/></th>
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 10K bytes - Viewed (0)