Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 41 for scriptType (0.32 seconds)

  1. src/main/resources/fess_indices/fess_config.scheduled_job/scheduled_job.bulk

    {"index":{"_index":"fess_config.scheduled_job","_id":"log_purger"}}
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 5K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/job/ScriptExecutorJob.java

                jobLog.setId(jobLogId);
            }
            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);
            }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 5.7K bytes
    - Click Count (0)
  3. 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;
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:03:38 GMT 2026
    - 5.2K bytes
    - Click Count (0)
  4. 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 + "]";
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/helper/ActivityHelper.java

        public void scriptExecution(final String scriptType, final String script, final String source, final String user, final String result) {
            if (!ComponentUtil.getFessConfig().isScriptAuditLogEnabled()) {
                return;
            }
            final Map<String, String> valueMap = new LinkedHashMap<>();
            valueMap.put("action", Action.SCRIPT_EXECUTION.name());
            valueMap.put("scriptType", scriptType != null ? scriptType : "-");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 11:45:43 GMT 2026
    - 13.1K bytes
    - Click Count (0)
  6. src/main/webapp/WEB-INF/view/admin/scheduler/admin_scheduler_edit.jsp

                                        <label for="scriptType" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.scheduledjob_scriptType"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="scriptType"/>
                                            <la:text styleId="scriptType" property="scriptType" styleClass="form-control"/>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 9.6K bytes
    - Click Count (0)
  7. 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>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 10K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/job/JobExecutorTest.java

            jobExecutor = new TestJobExecutor();
        }
    
        @Test
        public void test_execute() {
            // Test execute method
            String scriptType = "test";
            String script = "test script";
            Object result = jobExecutor.execute(scriptType, script);
            assertEquals("Executed: test test script", result);
    
            // Test with null values
            result = jobExecutor.execute(null, "script");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 9.4K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/job/impl/ScriptExecutorTest.java

            // Setup test script engine
            scriptEngineFactory.add("test", testScriptEngine);
    
            // Execute script
            String scriptType = "test";
            String script = "test script content";
            Object result = scriptExecutor.execute(scriptType, script);
    
            // Verify result
            assertEquals("processed: test script content", result);
    
            // Verify executor was passed in params
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 10.5K bytes
    - Click Count (0)
  10. src/main/webapp/WEB-INF/view/admin/scheduler/admin_scheduler_details.jsp

                                        <tr>
                                            <th><la:message key="labels.scheduledjob_scriptType"/></th>
                                            <td>${f:h(scriptType)}<la:hidden property="scriptType"/></td>
                                        </tr>
                                        <tr>
                                            <th><la:message key="labels.scheduledjob_scriptData"/></th>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 12.2K bytes
    - Click Count (0)
Back to Top