- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 54 for taps (1.58 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java
logger.debug("Tags updated: from={}, to={}", tagItems, tags); } try (StorageClient client = StorageClientFactory.createClient()) { client.setObjectTags(objectName, tags); } catch (final Exception e) { throw new StorageException("Failed to update tags for " + objectName, e); } } /**
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 22.1K bytes - Viewed (0) -
CLAUDE.md
### SuggestItem (Domain Entity) Location: `src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java` Core attributes: `text`, `timestamp`, `queryFreq`, `docFreq`, `userBoost`, `readings`, `tags`, `roles`, `languages`, `kinds` Kind types: `DOCUMENT`, `QUERY`, `USER` --- ## Development Workflow ### Build Commands ```bash mvn compile # Compile
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java
* @param fields The fields. * @param tags The tags. * @param roles The roles. * @param num The number. * @param langs The languages. * @return The SuggestIndexResponse. */ public SuggestIndexResponse indexFromSearchWord(final String searchWord, final String[] fields, final String[] tags, final String[] roles, final int num, final String[] langs) {Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 34.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PopularWordHelper.java
*/ public List<String> getWordList(final SearchRequestType searchRequestType, final String seed, final String[] tags, final String[] roles, final String[] fields, final String[] excludes) { final String baseSeed = seed != null ? seed : fessConfig.getSuggestPopularWordSeed(); final String[] baseTags = tags != null ? tags : fessConfig.getSuggestPopularWordTagsAsArray(); final String[] baseRoles = roles != null ? rolesRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 7.3K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/util/XmlUtilTest.java
assertNotNull(dataMap); assertTrue(dataMap.get("tags") instanceof List); @SuppressWarnings("unchecked") List<String> tags = (List<String>) dataMap.get("tags"); assertEquals(3, tags.size()); assertEquals("tag1", tags.get(0)); assertEquals("tag2", tags.get(1)); assertEquals("tag3", tags.get(2)); }
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/storage/admin_storage_tag_edit.jsp
<div class="form-group row"> <div class="col-sm-6"> <input type="text" id="tags.${f:h(nameKey)}" name="tags.${f:h(nameKey)}" value="${f:h(savedTags.get(nameKey))}" class="form-control" placeholder="Name" > </div> <div class="col-sm-6"> <input type="text" id="tags.${f:h(valueKey)}" name="tags.${f:h(valueKey)}" value="${f:h(savedTags.get(valueKey))}" class="form-control" placeholder="Value" >
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 4.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/s3/S3Client.java
} final Map<String, String> tags = new HashMap<>(); for (final Tag tag : response.tagSet()) { tags.put(tag.key(), tag.value()); } return tags; } catch (final NoSuchKeyException e) { if (logger.isDebugEnabled()) { logger.debug("Object not found when retrieving tags: bucket={}, path={}", bucketName, path); }Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 21.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/storage/StorageClient.java
/** * Gets tags/metadata for an object. * * @param objectName the name/path of the object * @return map of tag key-value pairs */ Map<String, String> getObjectTags(String objectName); /** * Sets tags/metadata for an object. * * @param objectName the name/path of the object * @param tags the tags to set */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 2.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/AbstractXmlExtractor.java
} /** * Returns whether comment tags are ignored during extraction. * @return true if comment tags are ignored, false otherwise. */ public boolean isIgnoreCommentTag() { return ignoreCommentTag; } /** * Sets whether to ignore comment tags. * @param ignoreCommentTag true to ignore comment tags, false otherwise. */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 12:19:14 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
* @param reading The reading of the word. * @param tags The tags associated with the word. * @param permissions The permissions for the word. * @param boost The boost value for the word. * @param apply true to apply the changes immediately. */ public void addElevateWord(final String word, final String reading, final String[] tags, final String[] permissions, final Float boost,Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 22.3K bytes - Viewed (0)