Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for taps (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  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. 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)
  9. 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)
  10. 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)
Back to top