Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for Tags (0.09 sec)

  1. 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 ? roles
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/storage/StorageClient.java

            return null;
        }
    
        /**
         * Retrieves tags associated with an object in the specified bucket.
         * @param bucketName the name of the bucket containing the object
         * @param path the path to the object within the bucket
         * @return the tags associated with the object, or null if no tags exist or object not found
         */
        protected Tags getObjectTags(final String bucketName, final String path) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 20K bytes
    - Viewed (2)
  6. 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)
  7. 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)
  8. src/main/java/org/codelibs/fess/storage/GcsStorageClient.java

            try {
                final Blob blob = storage.get(BlobId.of(bucket, objectName));
                if (blob != null) {
                    // GCS uses metadata instead of tags
                    blob.toBuilder().setMetadata(tags).build().update();
                } else {
                    throw new StorageException("Object not found: " + objectName);
                }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/suggest/settings/ElevateWordSettings.java

        public static final String ELEVATE_WORD_READING = "reading";
        /** Key for elevate word fields. */
        public static final String ELEVATE_WORD_FIELDS = "fields";
        /** Key for elevate word tags. */
        public static final String ELEVATE_WORD_TAGS = "tags";
        /** Key for elevate word roles. */
        public static final String ELEVATE_WORD_ROLES = "roles";
    
        /** Array settings for elevate words. */
        protected ArraySettings arraySettings;
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java

     *
     * <p>Usage example:</p>
     * <pre>
     * {@code
     * DefaultContentsParser parser = new DefaultContentsParser();
     * SuggestItem item = parser.parseSearchWords(words, readings, fields, tags, roles, score, readingConverter, normalizer, analyzer, langs);
     * }
     * </pre>
     *
     * @see ContentsParser
     * @see SuggestItem
     * @see ReadingConverter
     * @see Normalizer
     * @see SuggestAnalyzer
     */
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 14.9K bytes
    - Viewed (0)
Back to top