Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for perc (0.17 sec)

  1. src/main/java/org/codelibs/fess/app/web/search/SearchAction.java

                    final HttpSession session = request.getSession(false);
                    if (session != null && form.num != null) {
                        session.setAttribute(Constants.RESULTS_PER_PAGE, form.num);
                    }
                });
            }
            return doSearch(form);
        }
    
        @Execute
        public HtmlResponse prev(final SearchForm form) {
            return doMove(form, -1);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

            final HttpSession session = request.getSession(false);
            if (session != null) {
                final Object resultsPerPage = session.getAttribute(Constants.RESULTS_PER_PAGE);
                if (resultsPerPage instanceof Integer) {
                    form.num = (Integer) resultsPerPage;
                }
            }
    
            // label
    Java
    - Registered: Mon May 06 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/mylasta/direction/FessConfig.java

        String INDEX_REINDEX_BODY = "index.reindex.body";
    
        /** The key of the configuration. e.g. adaptive */
        String INDEX_REINDEX_requests_per_second = "index.reindex.requests_per_second";
    
        /** The key of the configuration. e.g. false */
        String INDEX_REINDEX_REFRESH = "index.reindex.refresh";
    
        /** The key of the configuration. e.g. 1m */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (5)
  4. src/main/java/org/codelibs/fess/Constants.java

        public static final String SEARCH_LOG_ACCESS_TYPE_ADMIN = "admin";
    
        public static final String SEARCH_LOG_ACCESS_TYPE_OTHER = "other";
    
        public static final String RESULTS_PER_PAGE = "resultsPerPage";
    
        public static final String USER_CODE = "userCode";
    
        public static final String SEARCH_FIELD_LOG_SEARCH_QUERY = "q";
    
        public static final String STATS_REPORT_TYPE = "reportType";
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

            try (CurlResponse response = ComponentUtil.getCurlHelper().post("/_reindex").param("refresh", refresh)
                    .param("requests_per_second", requestsPerSecond).param("scroll", scroll).param("max_docs", maxDocs)
                    .param("wait_for_completion", Boolean.toString(waitForCompletion)).body(source).execute()) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: OCaml */
        public static final String LABELS_facet_filetype_ocaml = "{labels.facet_filetype_ocaml}";
    
        /** The key of the message: Perl */
        public static final String LABELS_facet_filetype_perl = "{labels.facet_filetype_perl}";
    
        /** The key of the message: PHP */
        public static final String LABELS_facet_filetype_php = "{labels.facet_filetype_php}";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
Back to top