Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 509 for query1 (0.4 sec)

  1. src/main/webapp/WEB-INF/view/index.jsp

    					</div>
    					<fieldset>
    						<legend><la:message key="labels.search" /></legend>
    						<div class="clearfix">
    							<div class="mx-auto col-10 col-sm-8 col-md-8 col-lg-6">
    								<la:text styleClass="query form-control"
    									property="q" size="50" maxlength="1000" styleId="contentQuery"
    									autocomplete="off" />
    							</div>
    						</div>
    						<c:if test="${!empty popularWords}">
    							<div class="clearfix">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 11:58:45 UTC 2025
    - 7K bytes
    - Viewed (0)
  2. src/main/resources/fess_config.properties

    # Maximum scan for query highlight boundaries.
    query.highlight.boundary.max.scan=20
    # Scanner type for query highlight boundaries.
    query.highlight.boundary.scanner=chars
    # Encoder type for query highlighting.
    query.highlight.encoder=default
    # Whether to force source for query highlighting.
    query.highlight.force.source=false
    # Fragmenter type for query highlighting.
    query.highlight.fragmenter=span
    # Offset for query highlight fragments.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String QUERY_MAX_LENGTH = "query.max.length";
    
        /** The key of the configuration. e.g. 10000 */
        String QUERY_TIMEOUT = "query.timeout";
    
        /** The key of the configuration. e.g. true */
        String QUERY_TIMEOUT_LOGGING = "query.timeout.logging";
    
        /** The key of the configuration. e.g. 10000 */
        String QUERY_TRACK_TOTAL_HITS = "query.track.total.hits";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  4. src/main/webapp/WEB-INF/orig/view/searchResults.jsp

    </div>
    <c:if test="${partialResults}">
    	<div class="alert">
    		<p>
    			<la:message key="labels.process_time_is_exceeded" />
    		</p>
    	</div>
    </c:if>
    <div id="result" class="row">
    	<input type="hidden" id="queryId" value="${f:h(queryId)}" /> <input
    		type="hidden" id="rt" value="${f:h(requestedTime)}" />
    	<ol class="list-unstyled col-md-8">
    		<c:forEach var="doc" varStatus="s" items="${documentItems}">
    			<li id="result${s.index}">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 05:32:37 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/search/SearchAction.java

                }
            }
            form.start = start;
    
            return doSearch(form);
        }
    
        /**
         * Gets the display query.
         * @param form The search form.
         * @param labelTypeItems The list of label type items.
         * @return The display query.
         */
        protected String getDisplayQuery(final SearchForm form, final List<Map<String, String>> labelTypeItems) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/SearchLogPager.java

        private int currentPageNumber;
    
        /** Type of log being displayed (default: search). */
        public String logType = LOG_TYPE_SEARCH;
    
        /** Query ID filter for search logs. */
        public String queryId;
    
        /** User session ID filter for search logs. */
        public String userSessionId;
    
        /** Time range filter for search logs (format: "yyyy-MM-dd HH:mm - yyyy-MM-dd HH:mm"). */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_it.properties

    labels.num=Numero
    labels.pn=Numero di pagina
    labels.protocolScheme=Schema
    labels.purgeByBots=Elimina per Bot
    labels.logLevel=Livello di log
    labels.purgeSearchLogDay=Elimina log di ricerca
    labels.query=Query
    labels.queryId=ID query
    labels.rt=rt
    labels.searchLog=Log di ricerca
    labels.sort=Ordina
    labels.start=Posizione iniziale
    labels.loginRequired=Login richiesto
    labels.loginLink=Mostra link di login
    labels.threadName=Nome thread
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 43.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/query/parser/QueryParser.java

         * @return the parsed Query object
         * @throws QueryParseException if the query cannot be parsed
         */
        public Query parse(final String query) {
            return filterChain.parse(query);
        }
    
        /**
         * Creates a new Lucene query parser with the current configuration.
         * The parser is configured with the default field, analyzer, wildcard settings,
         * and default operator.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/query/QueryCommand.java

        /**
         * Gets the class name of the query this command handles.
         * @return The query class name.
         */
        protected abstract String getQueryClassName();
    
        /**
         * Registers this query command with the query processor.
         * Associates this command with its query class name in the processor.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/query/PhraseQueryCommand.java

                    "Unknown q: " + query.getClass() + " => " + query);
        }
    
        /**
         * Converts a phrase query to a query builder.
         *
         * @param context the query context
         * @param phraseQuery the phrase query
         * @param boost the boost factor
         * @return the query builder
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.5K bytes
    - Viewed (0)
Back to top