- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 32 for suggestJob (0.04 sec)
-
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() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/SuggestJobTest.java
assertEquals(Constants.EXECUTE_TYPE_SUGGEST, suggestJob.getExecuteType()); } // Test session ID generation public void test_sessionIdGeneration() { assertNull(suggestJob.sessionId); mockProcessHelper.setExitValue(0); suggestJob.execute(); assertNotNull(suggestJob.sessionId); assertEquals(15, suggestJob.sessionId.length());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 31.4K bytes - Viewed (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>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jun 12 22:21:45 UTC 2025 - 1.5K bytes - Viewed (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}
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/webapp/js/suggestor.js
e.preventDefault(); } suggestor.selectlist("up"); } else if (e.keyCode === 40) { if ($boxElement.css("display") === "none") { suggestor.suggest(); } else { suggestor.selectlist("down"); } } else if (e.keyCode === 13) { if (isFocusList) { suggestor.fixList(); } } });
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Mar 30 05:45:24 UTC 2023 - 13.3K bytes - Viewed (0) -
src/main/webapp/js/index.js
$("#sortSearchOption").prop("selectedIndex", 0); $("#numSearchOption").prop("selectedIndex", 0); return false; }); if (typeof $.fn.suggestor === "function") { $("#contentQuery").suggestor({ ajaxinfo: { url: contextPath + "/api/v1/suggest-words", fn: ["_default", "content", "title"], num: 10, lang: $("#langSearchOption").val() },
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Mar 30 05:45:24 UTC 2023 - 2K bytes - Viewed (0) -
src/main/webapp/js/help.js
$("#sortSearchOption").prop("selectedIndex", 0); $("#numSearchOption").prop("selectedIndex", 0); return false; }); if (typeof $.fn.suggestor === "function") { $("#query").suggestor({ ajaxinfo: { url: contextPath + "/api/v1/suggest-words", fn: ["_default", "content", "title"], num: 10, lang: $("#langSearchOption").val() },
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Mar 30 05:45:24 UTC 2023 - 2K bytes - Viewed (0) -
src/main/webapp/js/advance.js
$searchButton.attr("disabled", true); setTimeout(function() { $searchButton.attr("disabled", false); }, 3000); return true; }); if (typeof $.fn.suggestor === "function") { $("#as_q").suggestor({ ajaxinfo: { url: contextPath + "/api/v1/suggest-words", fn: ["_default", "content", "title"], num: 10, lang: $("#langSearchOption").val() },
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Mar 30 05:45:24 UTC 2023 - 1.3K bytes - Viewed (0) -
src/main/resources/fess_config.properties
suggest.popular.word.window.size=30 # Query frequency for popular word suggestion. suggest.popular.word.query.freq=10 # Minimum hit count for suggestion. suggest.min.hit.count=1 # Field for suggestion contents. suggest.field.contents=_default # Field for suggestion tags. suggest.field.tags=label # Field for suggestion roles. suggest.field.roles=role # Index contents for suggestion.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (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...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Jan 01 05:12:47 UTC 2018 - 32.8K bytes - Viewed (0)