- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 35 for suggestJob (0.06 seconds)
-
src/main/java/org/codelibs/fess/job/SuggestJob.java
* handling classpath setup, system properties, and process monitoring. */ public class SuggestJob extends ExecJob { private static final Logger logger = LogManager.getLogger(SuggestJob.class); /** * Constructs a new suggest job. */ public SuggestJob() { // do nothing } @Override public String execute() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 10.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/SuggestJobTest.java
assertEquals(Constants.EXECUTE_TYPE_SUGGEST, suggestJob.getExecuteType()); } // Test session ID generation @Test public void test_sessionIdGeneration() { assertNull(suggestJob.sessionId); mockProcessHelper.setExitValue(0); suggestJob.execute(); assertNotNull(suggestJob.sessionId); assertEquals(15, suggestJob.sessionId.length());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 31.6K bytes - Click Count (0) -
src/main/resources/fess_indices/fess_config.scheduled_job/scheduled_job.bulk
{"index":{"_index":"fess_config.scheduled_job","_id":"suggest_indexer"}} {"name":"Suggest Indexer","target":"all","cronExpression":"0 12 * * *","scriptType":"groovy","scriptData":"return container.getComponent(\"suggestJob\").logLevel(\"info\").sessionId(\"SUGGEST\").execute(executor);","jobLogging":true,"crawler":false,"available":true,"sortOrder":2,"createdBy":"system","createdTime":0,"updatedBy":"system","updatedTime":0}Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 5K bytes - Click Count (0) -
src/main/resources/fess_job.xml
</component> <!-- Jobs --> <component name="crawlJob" class="org.codelibs.fess.job.CrawlJob" instance="prototype"> </component> <component name="suggestJob" class="org.codelibs.fess.job.SuggestJob" instance="prototype"> </component> <component name="aggregateLogJob" class="org.codelibs.fess.job.AggregateLogJob" instance="prototype"> </component>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 1.7K bytes - Click Count (0) -
src/main/webapp/js/suggestor.js
e.preventDefault(); } suggestor.selectlist("up"); } else if (e.keyCode === KEY_CODES.DOWN) { if ($boxElement.css("display") === "none") { suggestor.suggest(); } else { suggestor.selectlist("down"); } } else if (e.keyCode === KEY_CODES.ENTER) { if (isFocusList) { suggestor.fixList(); } } });
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 11:04:08 GMT 2025 - 13.3K bytes - Click Count (0) -
src/main/webapp/js/index.js
$("#langSearchOption").prop("selectedIndex", 0); $("#sortSearchOption").prop("selectedIndex", 0); $("#numSearchOption").prop("selectedIndex", 0); }); if (typeof $.fn.suggestor === "function") { $("#contentQuery").suggestor(SUGGESTOR_CONFIG); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 2.2K bytes - Click Count (0) -
src/main/webapp/js/advance.js
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 21 13:12:50 GMT 2025 - 1.1K bytes - Click Count (0) -
src/main/webapp/WEB-INF/orig/view/help.jsp
<script type="text/javascript" src="${fe:url('/js/popper.min.js')}"></script> <script type="text/javascript" src="${fe:url('/js/bootstrap.min.js')}"></script> <script type="text/javascript" src="${fe:url('/js/suggestor.js')}"></script> <script type="text/javascript" src="${fe:url('/js/help.js')}"></script> </body>Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 1.3K bytes - Click Count (0) -
src/main/webapp/js/help.js
$("#langSearchOption").prop("selectedIndex", 0); $("#sortSearchOption").prop("selectedIndex", 0); $("#numSearchOption").prop("selectedIndex", 0); }); if (typeof $.fn.suggestor === "function") { $("#query").suggestor(SUGGESTOR_CONFIG); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 21 13:12:50 GMT 2025 - 1.8K bytes - Click Count (0) -
src/main/webapp/js/admin/plugins/form-validator/jquery.form-validator.min.js
",function(b){var c,d,e=b.keyCode?b.keyCode:b.which,g=a(this);if(13===e&&null!==a.formUtils._selectedSuggestion){if(c=g.valAttr("suggestion-nr"),d=a(".jquery-form-suggestion-"+c),d.length>0){var i=d.find("div").eq(a.formUtils._selectedSuggestion).text();g.val(i),g.trigger("change"),h(g),b.preventDefault()}}else{c=g.valAttr("suggestion-nr"),d=a(".jquery-form-suggestion-"+c);var j=d.children();if(j.length>0&&a.inArray(e,[38,40])>-1){38===e?(null===a.formUtils._selectedSuggestion?a.formUtils._selec...Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Jan 01 05:12:47 GMT 2018 - 32.8K bytes - Click Count (0)