Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 142 for suggester (0.23 sec)

  1. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

    import org.codelibs.fess.suggest.Suggester;
    import org.codelibs.fess.suggest.constants.FieldNames;
    import org.codelibs.fess.suggest.entity.SuggestItem;
    import org.codelibs.fess.suggest.exception.SuggestSettingsException;
    import org.codelibs.fess.suggest.index.SuggestDeleteResponse;
    import org.codelibs.fess.suggest.index.contents.document.ESSourceReader;
    import org.codelibs.fess.suggest.settings.SuggestSettings;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

                        logger.debug("Failed to update suggest index.", e);
                    }
                    exitCode.set(1);
                }
            }
    
            logger.info("Replacing new suggest index.");
            suggestHelper.suggester().switchIndex();
    
            logger.info("Removing old indices.");
            suggestHelper.suggester().removeDisableIndices();
    
            return exitCode.get();
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/PopularWordHelper.java

    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.entity.SearchRequestParams.SearchRequestType;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.suggest.exception.SuggesterException;
    import org.codelibs.fess.suggest.request.popularwords.PopularWordsRequestBuilder;
    import org.codelibs.fess.util.ComponentUtil;
    
    import com.google.common.cache.Cache;
    import com.google.common.cache.CacheBuilder;
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

    import org.codelibs.fess.helper.UserInfoHelper;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.suggest.entity.SuggestItem;
    import org.codelibs.fess.suggest.request.suggest.SuggestRequestBuilder;
    import org.codelibs.fess.suggest.request.suggest.SuggestResponse;
    import org.codelibs.fess.util.ComponentUtil;
    import org.codelibs.fess.util.DocumentUtil;
    import org.codelibs.fess.util.FacetResponse;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 02:17:23 GMT 2024
    - 50.3K bytes
    - Viewed (0)
  5. 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();
            }
          }
        });
    JavaScript
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Mar 30 05:45:24 GMT 2023
    - 13.3K bytes
    - Viewed (2)
  6. src/main/webapp/WEB-INF/view/admin/suggest/admin_suggest.jsp

                                        <la:form action="/admin/suggest/">
                                            <table class="table table-bordered table-striped">
                                                <thead>
                                                <tr>
                                                    <th style="width: 15%"><la:message key="labels.suggest_word_type"/></th>
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Wed Feb 12 20:25:27 GMT 2020
    - 18.1K bytes
    - Viewed (0)
  7. src/main/webapp/js/advance.js

        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()
          },
          boxCssInfo: {
    JavaScript
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Mar 30 05:45:24 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  8. 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()
          },
          boxCssInfo: {
    JavaScript
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Mar 30 05:45:24 GMT 2023
    - 2K bytes
    - Viewed (0)
  9. 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()
          },
          boxCssInfo: {
    JavaScript
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Mar 30 05:45:24 GMT 2023
    - 2K bytes
    - Viewed (0)
  10. src/main/webapp/js/search.js

              $info.slideDown("slow");
            });
          }
        }
        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()
          },
          boxCssInfo: {
    JavaScript
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Mar 30 05:45:24 GMT 2023
    - 7.5K bytes
    - Viewed (1)
Back to top