Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 1,153 for Search (0.45 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/ApiAdminElevatewordAction.java

    import jakarta.annotation.Resource;
    
    /**
     * API action for admin elevate word management.
     * Provides RESTful API endpoints for managing elevate word settings in the Fess search engine.
     * Elevate words boost specific search terms to appear higher in search results.
     */
    public class ApiAdminElevatewordAction extends FessApiAdminAction {
    
        private static final Logger logger = LogManager.getLogger(ApiAdminElevatewordAction.class);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java

        }
    
        /**
         * Retrieves related content for a given search query.
         * First checks for exact term matches, then evaluates regex patterns.
         * For regex matches, the query placeholder is replaced with the actual query.
         *
         * @param query the search query to find related content for
         * @return array of related content strings, or empty array if no matches found
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/labeltype/admin_labeltype.jsp

                                                        name="search"
                                                        value="<la:message key="labels.crud_button_search" />">
                                                    <em class="fa fa-search">
                                                    <la:message key="labels.crud_button_search"/>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Mar 31 05:47:05 UTC 2020
    - 10.5K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/orig/view/advance.jsp

    				</div>
    			</div>
    
    			<div class="row justify-content-center">
    				<div class="col-auto">
    					<button type="submit" name="search" id="searchButton"
    						class="btn btn-primary mx-auto">
    						<em class="fa fa-search">
    						<la:message key="labels.index_form_search_btn" />
    					</button>
    				</div>
    			</div>
    		</main>
    		<jsp:include page="footer.jsp" />
    	</la:form>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  5. docs/zh-CN/README.md

    *[Fess 网站搜索](https://github.com/codelibs/fess-site-search)* 是 [Google 网站搜索](https://enterprise.google.com/search/products/gss.html)的免费替代品。更多详情请参阅 [FSS JS 生成器文档](https://fss-generator.codelibs.org/docs/manual)。
    
    ## 官网
    
    [fess.codelibs.org](https://fess.codelibs.org/)
    
    ## 问题/疑问
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 12 07:19:47 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/relatedquery/SearchBody.java

    import org.codelibs.fess.app.web.api.admin.BaseSearchBody;
    
    /**
     * Search request body for related query administration API.
     */
    public class SearchBody extends BaseSearchBody {
    
        /**
         * Default constructor.
         */
        public SearchBody() {
            super();
        }
    
        /** Search term for related queries */
        public String term;
    
        /** Related queries text */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/SearchBody.java

     */
    package org.codelibs.fess.app.web.api.admin.dict.protwords;
    
    import org.codelibs.fess.app.web.api.admin.dict.BaseSearchDictBody;
    
    /**
     * Search request body for protected words dictionary administration.
     * Extends BaseSearchDictBody with protected words dictionary-specific search parameters.
     */
    public class SearchBody extends BaseSearchDictBody {
    
        /**
         * Default constructor for SearchBody.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/SearchBody.java

     */
    package org.codelibs.fess.app.web.api.admin.dict.stemmeroverride;
    
    import org.codelibs.fess.app.web.api.admin.dict.BaseSearchDictBody;
    
    /**
     * Search request body for stemmer override dictionary administration.
     * Extends BaseSearchDictBody with stemmer override dictionary-specific search parameters.
     */
    public class SearchBody extends BaseSearchDictBody {
    
        /**
         * Default constructor for SearchBody.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/SearchBody.java

     */
    package org.codelibs.fess.app.web.api.admin.dict.stopwords;
    
    import org.codelibs.fess.app.web.api.admin.dict.BaseSearchDictBody;
    
    /**
     * Search request body for stop words dictionary administration.
     * Extends BaseSearchDictBody with stop words dictionary-specific search parameters.
     */
    public class SearchBody extends BaseSearchDictBody {
    
        /**
         * Default constructor for SearchBody.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/exception/UnsupportedSearchException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    /**
     * Exception thrown when an unsupported search operation is requested.
     * This exception indicates that the requested search functionality is not available or supported.
     */
    public class UnsupportedSearchException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
Back to top