Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 114 for administrator (0.07 sec)

  1. src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java

     * This service provides functionality to create, read, update, and delete
     * duplicate host configurations used by the Fess crawler system.
     *
     * <p>Duplicate host configurations allow administrators to define hostname patterns
     * that should be treated as equivalent during crawling. This helps avoid indexing
     * duplicate content from the same logical site that may be accessible via different
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/pager/ReqHeaderPager.java

    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Pager class for request header management in the Fess search engine.
     * This class provides pagination functionality for displaying and managing
     * request headers in the administration interface.
     */
    public class ReqHeaderPager implements Serializable {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * Default number of records to display per page.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/index.jsp

    													</la:link>
    												</c:if>
    												<c:if test="${adminUser == true}">
    													<la:link href="/admin" styleClass="dropdown-item">
    														<la:message key="labels.administration" />
    													</la:link>
    												</c:if>
    												<la:link href="/logout/" styleClass="dropdown-item">
    													<la:message key="labels.logout" />
    												</la:link>
    											</div>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 11:58:45 UTC 2025
    - 7K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.22.md

    ### Kubernetes Node system swap support
    
    Every system administrator or Kubernetes user has been in the same boat regarding setting up and using Kubernetes: disable swap space. With the release of Kubernetes 1.22, *alpha* support is available to run nodes with swap memory. This change lets administrators opt in to configuring swap on Linux nodes, treating a portion of block storage as additional virtual memory.
    
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/orig/view/header.jsp

    											</la:link>
    										</c:if>
    										<c:if test="${adminUser == true}">
    											<la:link href="/admin" styleClass="dropdown-item">
    												<la:message key="labels.administration" />
    											</la:link>
    										</c:if>
    										<la:link href="/logout/" styleClass="dropdown-item">
    											<la:message key="labels.logout" />
    										</la:link>
    									</div>
    								</div>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/header.jsp

    											</la:link>
    										</c:if>
    										<c:if test="${adminUser == true}">
    											<la:link href="/admin" styleClass="dropdown-item">
    												<la:message key="labels.administration" />
    											</la:link>
    										</c:if>
    										<la:link href="/logout/" styleClass="dropdown-item">
    											<la:message key="labels.logout" />
    										</la:link>
    									</div>
    								</div>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 11:58:45 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/StemmerOverrideService.java

    /**
     * Service class for managing stemmer override dictionary operations.
     *
     * This service provides functionality for CRUD operations on stemmer override
     * dictionaries. Stemmer override dictionaries allow administrators to define
     * custom stemming rules that override the default stemming behavior for
     * specific terms, improving search accuracy for domain-specific vocabularies.
     */
    public class StemmerOverrideService {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/DuplicateHostPager.java

     * This class provides pagination support for duplicate host listings in the admin interface,
     * including navigation controls and search/filter parameters.
     *
     * <p>Duplicate hosts allow administrators to define hostname patterns that should
     * be treated as equivalent during crawling, helping to avoid duplicate content
     * from the same logical site accessed via different hostnames.</p>
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  9. README.md

    Fess is based on [OpenSearch](https://github.com/opensearch-project/OpenSearch), but knowledge/experience about OpenSearch is _not_ required. Fess provides an easy to use Administration GUI to configure the system via your browser.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 06:34:32 UTC 2025
    - 7.2K bytes
    - Viewed (2)
  10. src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/AdminDuplicatehostAction.java

        /**
         * Default constructor.
         */
        public AdminDuplicatehostAction() {
            super();
        }
    
        /**
         * Role name for duplicate host administration.
         */
        public static final String ROLE = "admin-duplicatehost";
    
        private static final Logger logger = LogManager.getLogger(AdminDuplicatehostAction.class);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16.3K bytes
    - Viewed (0)
Back to top