- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 43 for script_type (0.11 sec)
-
src/main/java/org/codelibs/fess/ds/AbstractDataStore.java
public abstract class AbstractDataStore implements DataStore { private static final Logger logger = LogManager.getLogger(AbstractDataStore.class); protected static final String SCRIPT_TYPE = "script_type"; public String mimeType = "application/datastore"; protected boolean alive = true; public void register() { ComponentUtil.getDataStoreFactory().add(getName(), this); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/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 Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 13:01:38 UTC 2024 - 5.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/SchedulerTests.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 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 Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/search/SearchApiTests.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 Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 18.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/DocBoostMatcher.java
private String matchExpression; private final String scriptType; public DocBoostMatcher() { scriptType = Constants.DEFAULT_SCRIPT; } public DocBoostMatcher(final BoostDocumentRule rule) { matchExpression = rule.getUrlExpr(); boostExpression = rule.getBoostExpr(); scriptType = ComponentUtil.getFessConfig().getCrawlerDefaultScript(); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/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 Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsJobLogCQ.java
} public void setScriptType_Equal(String scriptType) { setScriptType_Term(scriptType, null); } public void setScriptType_Equal(String scriptType, ConditionOptionCall<TermQueryBuilder> opLambda) { setScriptType_Term(scriptType, opLambda); } public void setScriptType_Term(String scriptType) { setScriptType_Term(scriptType, null); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 71.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/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 Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 7.5K 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 Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.3K bytes - Viewed (0)