Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 96 for _suggest (0.06 sec)

  1. src/main/webapp/js/suggestor.js

                suggestor = this;
                $(window).resize(function() {
                  suggestor.resize();
                });
    
                $("body").append($boxElement);
              },
    
              suggest: function() {
                suggestingSts = true;
    
                this.resize();
    
                var suggestor = this;
                inputText = $textArea.val();
    
                listNum = 0;
                listSelNum = 0;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/suggest/AdminSuggestAction.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.suggest;
    
    import org.codelibs.fess.annotation.Secured;
    import org.codelibs.fess.app.web.base.FessAdminAction;
    import org.codelibs.fess.helper.SuggestHelper;
    import org.lastaflute.web.Execute;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. src/test/resources/plugin/repo3/index.html

    <a href="fess-script-ognl/" title="fess-script-ognl/">fess-script-ognl/</a>                                                -         -      
    <a href="fess-suggest/" title="fess-suggest/">fess-suggest/</a>                                                    -         -      
    <a href="fess-theme-classic/" title="fess-theme-classic/">fess-theme-classic/</a>                                              -         -      
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jun 17 13:30:41 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. src/main/resources/fess_label_en.properties

    labels.groups=Groups
    labels.hash=Hash
    labels.kuromojiFile=Kuromoji File
    labels.maxSize=Max Size
    labels.order=Order
    labels.purgeSuggestSearchLogDay=Purge Suggest Documents Before
    labels.q=Query
    labels.roles=Roles
    labels.suggestSearchLog=Suggest Search Log
    labels.suggestWord=Suggest Word
    labels.targetLabel=Label
    labels.term=Term
    labels.fields=Fields
    labels.ex_q=Extended Query
    labels.ldapProviderUrl=LDAP URL
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess_config.scheduled_job/scheduled_job.bulk

    {"index":{"_index":"fess_config.scheduled_job","_id":"suggest_indexer"}}
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/common/admin/sidebar.jsp

    				</ul></li></c:if>
    
    			<c:if test="${fe:permission('admin-suggest-view') or fe:permission('admin-elevateword-view') or fe:permission('admin-badword-view')}">
    
    			<li class="nav-item has-treeview <c:if test="${param.menuCategoryType=='suggest'}">menu-open</c:if>">
    				<a href="#" class="nav-link <c:if test="${param.menuCategoryType=='suggest'}">active</c:if>">
    					<em class='nav-icon fa fa-list'>
    					<p>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Apr 15 20:55:28 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  7. .github/ISSUE_TEMPLATE/feature_request.md

    ---
    name: Feature request
    about: Suggest an idea for this project
    title: ''
    labels: ''
    assignees: ''
    
    ---
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri May 15 11:56:53 UTC 2020
    - 190 bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/Constants.java

        public static final String SUGGEST_SEARCH_LOG_PROPERTY = "suggest.searchlog";
    
        public static final String SUGGEST_DOCUMENTS_PROPERTY = "suggest.document";
    
        public static final String PURGE_SUGGEST_SEARCH_LOG_DAY_PROPERTY = "purge.suggest.searchlog.day";
    
        public static final String LTR_MODEL_NAME_PROPERTY = "ltr.model.name";
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Aug 22 12:43:18 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. .github/ISSUE_TEMPLATE/feature_request.md

    ---
    name: Feature request
    about: Suggest an idea for this project
    title: ''
    labels: community, triage
    assignees: ''
    
    ---
    
    **Is your feature request related to a problem? Please describe.**
    A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
    
    **Describe the solution you'd like**
    A clear and concise description of what you want to happen.
    
    **Describe alternatives you've considered**
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue May 07 20:49:54 UTC 2019
    - 610 bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/job/SuggestJob.java

            }
    
            final TimeoutTask timeoutTask = createTimeoutTask();
            try {
                executeSuggestCreator();
            } catch (final Exception e) {
                logger.warn("Failed to create suggest data.", e);
                resultBuf.append(e.getMessage()).append("\n");
            } finally {
                if (timeoutTask != null && !timeoutTask.isCanceled()) {
                    timeoutTask.cancel();
                }
            }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sun Jun 23 04:13:47 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top