Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for segmentation (0.23 sec)

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

                    || !Objects.equals(token, other.token)) {
                return false;
            }
            return true;
        }
    
        @Override
        public String toString() {
            return "KuromojiItem [token=" + token + ", segmentation=" + segmentation + ", reading=" + reading + ", pos=" + pos + ", newToken="
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  2. 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);
            }
        }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.8K 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;
        }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/dict/kuromoji/admin_dict_kuromoji_edit.jsp

                                        <label for="segmentation" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.dict_kuromoji_segmentation"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="segmentation"/>
                                            <la:text styleId="segmentation" property="segmentation"
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Wed Feb 12 20:25:27 GMT 2020
    - 8.6K 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:
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.7K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/dict/kuromoji/admin_dict_kuromoji_details.jsp

                                        <tr>
                                            <th><la:message key="labels.dict_kuromoji_segmentation"/></th>
                                            <td>${f:h(segmentation)}<la:hidden
                                                    property="segmentation"/></td>
                                        </tr>
                                        <tr>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Wed Feb 12 20:25:27 GMT 2020
    - 8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/CreateForm.java

        public String dictId;
    
        @ValidateTypeFailure
        public Integer crudMode;
    
        @Required
        @Size(max = 1000)
        public String token;
    
        @Required
        @Size(max = 1000)
        public String segmentation;
    
        @Required
        @Size(max = 1000)
        public String reading;
    
        @Required
        @Size(max = 1000)
        public String pos;
    
        public void initialize() {
            crudMode = CrudMode.CREATE;
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  8. 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;
        }
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.3K bytes
    - Viewed (0)
  9. src/main/resources/fess_message_ru.properties

    errors.failed_to_download_mapping_file=Failed to download the Mapping file.
    errors.failed_to_upload_mapping_file=Failed to upload the Mapping file.
    errors.invalid_kuromoji_token={0} is invalid.
    errors.invalid_kuromoji_segmentation=The number of segmentations {0} does not the match number of readings {1}.
    errors.invalid_str_is_included="{1}" in "{0}" is invalid.
    errors.blank_password=Password is required.
    errors.invalid_confirm_password=Confirm Password does not match.
    Properties
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri May 20 12:12:28 GMT 2022
    - 10.2K bytes
    - Viewed (0)
  10. src/main/resources/fess_label.properties

    labels.purgeUserInfoDay=Purge User Before
    labels.reading=Reading
    labels.roleTypeIds=Role ID
    labels.scriptData=Script
    labels.scriptResult=Result
    labels.scriptType=Executor
    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
    Properties
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (1)
Back to top