Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 167 for doc_id (0.14 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/UploadForm.java

        /**
         * The dictionary ID that identifies which Kuromoji dictionary configuration to update.
         * This ID corresponds to a specific Kuromoji dictionary instance in the system.
         */
        @Required
        public String dictId;
    
        /**
         * The multipart file containing the Kuromoji user dictionary to be uploaded.
         * This file should be in the Kuromoji user dictionary format containing custom word definitions.
         */
        @Required
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/CreateForm.java

        /**
         * Creates a new CreateForm instance.
         */
        public CreateForm() {
            // Default constructor
        }
    
        /** Dictionary identifier */
        @Required
        public String dictId;
    
        /** CRUD operation mode (CREATE, EDIT, etc.) */
        @ValidateTypeFailure
        public Integer crudMode;
    
        /** Word or phrase to be protected from analysis */
        @Required
        @Size(max = 1000)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/log/bsbhv/BsFavoriteLogBhv.java

            try {
                final RESULT result = entityType.newInstance();
                result.setCreatedAt(toLocalDateTime(source.get("createdAt")));
                result.setDocId(DfTypeUtil.toString(source.get("docId")));
                result.setQueryId(DfTypeUtil.toString(source.get("queryId")));
                result.setUrl(DfTypeUtil.toString(source.get("url")));
                result.setUserInfoId(DfTypeUtil.toString(source.get("userInfoId")));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/dict/admin_dict.jsp

                                        <tbody>
                                        <c:forEach var="data" varStatus="s" items="${dictFiles}">
                                            <tr data-href="${f:h(data.type)}/?dictId=${f:h(data.id)}">
                                                <td>${f:h(data.path)}</td>
                                                <td>${f:h(data.type)}</td>
                                            </tr>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/EditForm.java

         * This method creates a composite identifier for UI display purposes.
         *
         * @return A string in the format "dictId:id" for display purposes
         */
        public String getDisplayId() {
            return dictId + ":" + id;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/UploadForm.java

         * The dictionary ID that identifies which protected words dictionary configuration to update.
         * This ID corresponds to a specific protected words dictionary instance in the system.
         */
        @Required
        public String dictId;
    
        /**
         * The multipart file containing the protected words to be uploaded.
         * This file should contain a list of words that should be protected from stemming.
         */
        @Required
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/EditForm.java

         * This method creates a composite identifier for UI display purposes.
         *
         * @return A string in the format "dictId:id" for display purposes
         */
        public String getDisplayId() {
            return dictId + ":" + id;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/SearchForm.java

        /**
         * Default constructor for SearchForm.
         */
        public SearchForm() {
        }
    
        /**
         * The dictionary ID field for mapping dictionary operations.
         */
        @Required
        public String dictId;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1007 bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/DownloadForm.java

     *
     */
    public class DownloadForm {
    
        /**
         * Dictionary ID for identifying the stemmer override dictionary to download.
         */
        @Required
        public String dictId;
    
        /**
         * Default constructor.
         */
        public DownloadForm() {
            // Use of default constructor
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/DownloadForm.java

     *
     */
    public class DownloadForm {
    
        /**
         * Dictionary ID for identifying the stop words dictionary to download.
         */
        @Required
        public String dictId;
    
        /**
         * Default constructor.
         */
        public DownloadForm() {
            // Use of default constructor
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
Back to top