Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for segmentation (0.09 sec)

  1. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiItem.java

         * @param token The token.
         * @param segmentation The segmentation.
         * @param reading The reading.
         * @param pos The part of speech.
         */
        public KuromojiItem(final long id, final String token, final String segmentation, final String reading, final String pos) {
            this.id = id;
            this.token = token;
            this.segmentation = segmentation;
            this.reading = reading;
            this.pos = pos;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/CreateForm.java

        public Integer crudMode;
    
        /** Token (word) to be added to the dictionary */
        @Required
        @Size(max = 1000)
        public String token;
    
        /** Segmentation information for the token */
        @Required
        @Size(max = 1000)
        public String segmentation;
    
        /** Reading (pronunciation) of the token in katakana */
        @Required
        @Size(max = 1000)
        public String reading;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/it/admin/dict/KuromojiTests.java

            requestBody.put("segmentation", "segment");
            requestBody.put("reading", "reading");
            requestBody.put("pos", "pos");
            return requestBody;
        }
    
        @Override
        protected Map<String, Object> getUpdateMap() {
            final Map<String, Object> updateMap = new HashMap<>();
            updateMap.put("segmentation", "new_segment");
            return updateMap;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/AdminDictKuromojiAction.java

                }, this::asEditHtml);
            }
            if (form.segmentation != null && form.reading != null && form.segmentation.split(" ").length != form.reading.split(" ").length) {
                throwValidationError(messages -> {
                    messages.addErrorsInvalidKuromojiSegmentation("segmentation", form.segmentation, form.reading);
                }, this::asEditHtml);
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java

                    String token = null;
                    String segmentation = null;
                    String reading = null;
                    String pos = null;
                    switch (values.length) {
                    case 4:
                        pos = values[3];
                    case 3:
                        reading = values[2];
                    case 2:
                        segmentation = values[1];
                    case 1:
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_en.properties

    labels.purgeUserInfoDay=Delete old user logs
    labels.reading=Reading
    labels.roleTypeIds=Role IDs
    labels.scriptData=Script
    labels.scriptResult=Result
    labels.scriptType=Execution Method
    labels.segmentation=Segmentation
    labels.startTime=Start Time
    labels.target=Target
    labels.token=Token
    labels.synonymFile=Synonym File
    labels.stopwordsFile=Stopwords File
    labels.stemmerOverrideFile=Stemmer Override File
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java

            body.id = entity.getId();
            body.dictId = dictId;
            body.token = entity.getToken();
            body.reading = entity.getReading();
            body.pos = entity.getPos();
            body.segmentation = entity.getSegmentation();
            return body;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_fr.properties

    labels.purgeUserInfoDay=Supprimer les anciens journaux utilisateur
    labels.reading=Lecture
    labels.roleTypeIds=ID de rôle
    labels.scriptData=Script
    labels.scriptResult=Résultat
    labels.scriptType=Méthode d'exécution
    labels.segmentation=Segmentation
    labels.startTime=Heure de début
    labels.target=Cible
    labels.token=Jeton
    labels.synonymFile=Fichier de synonymes
    labels.stopwordsFile=Fichier de mots vides
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.6K bytes
    - Viewed (0)
  9. src/main/resources/fess_label.properties

    labels.purgeUserInfoDay=Delete old user logs
    labels.reading=Reading
    labels.roleTypeIds=Role IDs
    labels.scriptData=Script
    labels.scriptResult=Result
    labels.scriptType=Execution Method
    labels.segmentation=Segmentation
    labels.startTime=Start Time
    labels.target=Target
    labels.token=Token
    labels.synonymFile=Synonym File
    labels.stopwordsFile=Stopwords File
    labels.stemmerOverrideFile=Stemmer Override File
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 28 08:40:50 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  10. src/main/resources/fess_message_ko.properties

    errors.failed_to_download_mapping_file = 매핑 파일을 다운로드하지 못했습니다.
    errors.failed_to_upload_mapping_file = 매핑 파일을 업로드하지 못했습니다.
    errors.invalid_kuromoji_token={0}은(는) 토큰으로 유효하지 않습니다.
    errors.invalid_kuromoji_segmentation=The number of segmentation for {0} and {1} is different.
    errors.invalid_str_is_included = {1} is invalid for {0}.
    errors.blank_password = 비밀번호가 필요합니다.
    errors.invalid_confirm_password = 확인 비밀번호와 일치하지 않습니다.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 14.1K bytes
    - Viewed (0)
Back to top