Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 149 for metadata (0.08 sec)

  1. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

         *
         * @param item the item to delete
         */
        public abstract void delete(T item);
    
        /**
         * A paginated list implementation that wraps another list and provides
         * pagination metadata and functionality.
         *
         * @param <E> the type of elements in this list
         */
        public static class PagingList<E> implements List<E> {
            /** The underlying list containing the actual data. */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 07:09:00 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  2. MIGRATION.md

    - **Index Size**: Storage requirements for search indices
    - **Crawl Sources**: URLs, file shares, databases being indexed
    - **Custom Configurations**: URL patterns, security rules, metadata fields
    - **Search Features**: Facets, suggestions, security filtering, ranking rules
    - **Integration Points**: Applications consuming search APIs
    - **User Permissions**: Access control and label configurations
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 12:40:11 UTC 2025
    - 23.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/pac/PacLogonInfo.java

     * This class parses and provides access to user authentication and authorization
     * data from Kerberos tickets, including user identity, group memberships, and
     * logon metadata.
     */
    public class PacLogonInfo {
    
        private Date logonTime;
        private Date logoffTime;
        private Date kickOffTime;
        private Date pwdLastChangeTime;
        private Date pwdCanChangeTime;
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  4. README.md

    Suggester suggester = Suggester.builder().build(client, suggestId);
    ```
    
    #### 2. Add Suggestion Documents
    
    ```java
    import org.codelibs.fess.suggest.entity.SuggestItem;
    
    // Create suggestion item with text, readings, and metadata
    String[][] readings = new String[2][];
    readings[0] = new String[]{"kensaku", "engine"};
    readings[1] = new String[]{"search", "injin"};
    
    String[] tags = new String[]{"technology", "search"};
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Sun Aug 31 03:31:14 UTC 2025
    - 12.1K bytes
    - Viewed (1)
  5. docs/smb3-features/04-directory-leasing-design.md

    # Directory Leasing Feature - Detailed Design Document
    
    ## 1. Overview
    
    Directory leasing extends the SMB3 lease concept to directories, enabling client-side caching of directory metadata and change notifications. This significantly improves performance for applications that frequently enumerate directories or monitor directory changes.
    
    ## 2. Protocol Specification Reference
    
    - **MS-SMB2 Section 2.2.13.2.12**: SMB2_CREATE_REQUEST_LEASE_V2 for directories
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  6. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java

    import org.opensearch.action.search.SearchResponse;
    import org.opensearch.action.support.WriteRequest.RefreshPolicy;
    import org.opensearch.action.support.clustermanager.AcknowledgedResponse;
    import org.opensearch.cluster.metadata.MappingMetadata;
    import org.opensearch.common.unit.TimeValue;
    import org.opensearch.common.xcontent.XContentType;
    import org.opensearch.core.rest.RestStatus;
    import org.opensearch.core.xcontent.XContentBuilder;
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 20 08:40:57 UTC 2025
    - 34.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

            });
        }
    
        /**
         * Gets the action response for the specified SSO response type.
         *
         * SPNEGO authentication typically doesn't require special response handling
         * for metadata or logout operations, so this method returns null.
         *
         * @param responseType The type of SSO response requested
         * @return Always returns null for SPNEGO authentication
         */
        @Override
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 17.8K bytes
    - Viewed (3)
  8. src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java

         * Also processes permissions and virtual hosts from form fields.
         *
         * @param form the form containing the web config data
         * @return an optional WebConfig entity with updated metadata
         */
        public static OptionalEntity<WebConfig> getWebConfig(final CreateForm form) {
            final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
            final String username = systemHelper.getUsername();
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 13:56:35 UTC 2025
    - 20.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java

         *
         * @param form the form containing the web authentication data
         * @return an optional WebAuthentication entity with updated metadata
         */
        public static OptionalEntity<WebAuthentication> getWebAuthentication(final CreateForm form) {
            final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 13:56:35 UTC 2025
    - 19.7K bytes
    - Viewed (0)
  10. src/main/resources/fess_config.properties

    crawler.hotthread.timeout=30s
    # Type of hot thread monitoring (e.g., cpu).
    crawler.hotthread.type=cpu
    # Metadata fields to exclude from document content.
    crawler.metadata.content.excludes=resourceName,X-Parsed-By,Content-Encoding.*,Content-Type.*,X-TIKA.*,X-FESS.*
    # Mapping for document metadata names.
    crawler.metadata.name.mapping=\
    title=title:string\n\
    Title=title:string\n\
    dc:title=title:string\n\
    
    # html
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 11 09:47:03 UTC 2025
    - 54.8K bytes
    - Viewed (0)
Back to top