Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Tags (0.03 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. 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)
  3. 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)
  4. src/main/java/org/codelibs/fess/storage/S3StorageClient.java

            } catch (final Exception e) {
                throw new StorageException("Failed to get tags from " + objectName, e);
            }
        }
    
        @Override
        public void setObjectTags(final String objectName, final Map<String, String> tags) {
            try {
                final List<Tag> tagList = tags.entrySet()
                        .stream()
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        default PrunedTag[] getCrawlerDocumentHtmlPrunedTagsAsArray() {
            PrunedTag[] tags = (PrunedTag[]) propMap.get("crawlerDocumentHtmlPrunedTags");
            if (tags == null) {
                tags = PrunedTag.parse(getCrawlerDocumentHtmlPrunedTags());
                propMap.put("crawlerDocumentHtmlPrunedTags", tags);
            }
            return tags;
        }
    
        String getCrawlerDocumentCacheHtmlMimetypes();
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 88.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * Get the value for the key 'crawler.ignore.robots.tags'. <br>
         * The value is, e.g. false <br>
         * comment: Whether to ignore robots meta tags during crawling.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getCrawlerIgnoreRobotsTags();
    
        /**
         * Is the property for the key 'crawler.ignore.robots.tags' true? <br>
         * The value is, e.g. false <br>
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 525.7K bytes
    - Viewed (2)
  7. src/main/resources/fess_label_nl.properties

    labels.storage_button_upload=Uploaden
    labels.storage_bucket_name=Bucketnaam
    labels.storage_file=Bestand
    labels.storage_folder_name=Mapnaam
    labels.storage_button_download=Downloaden
    labels.storage_button_tags=Tags
    labels.storage_title_tag=Tag:
    labels.storage_tag_key=Tag-sleutel
    labels.storage_tag_value=Tag-waarde
    labels.login.newpassword=U moet uw wachtwoord bijwerken
    labels.login.placeholder_new_password=Nieuw wachtwoord
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 46.1K bytes
    - Viewed (1)
  8. src/main/resources/fess_label.properties

    labels.storage_button_upload=Upload
    labels.storage_bucket_name=Bucket Name
    labels.storage_file=File
    labels.storage_folder_name=Folder Name
    labels.storage_button_download=Download
    labels.storage_button_tags=Tags
    labels.storage_title_tag=Tag:
    labels.storage_tag_key=Tag Key
    labels.storage_tag_value=Tag Value
    labels.login.newpassword=You need to update your password
    labels.login.placeholder_new_password=New Password
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 44K bytes
    - Viewed (0)
  9. src/main/resources/fess_label_pt_BR.properties

    labels.storage_button_upload=Fazer upload
    labels.storage_bucket_name=Nome do bucket
    labels.storage_file=Arquivo
    labels.storage_folder_name=Nome da pasta
    labels.storage_button_download=Baixar
    labels.storage_button_tags=Tags
    labels.storage_title_tag=Tag:
    labels.storage_tag_key=Chave da tag
    labels.storage_tag_value=Valor da tag
    labels.login.newpassword=VocĂȘ precisa atualizar sua senha
    labels.login.placeholder_new_password=Nova senha
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 48.7K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_en.properties

    labels.storage_button_upload=Upload
    labels.storage_bucket_name=Bucket Name
    labels.storage_file=File
    labels.storage_folder_name=Folder Name
    labels.storage_button_download=Download
    labels.storage_button_tags=Tags
    labels.storage_title_tag=Tag:
    labels.storage_tag_key=Tag Key
    labels.storage_tag_value=Tag Value
    labels.login.newpassword=You need to update your password
    labels.login.placeholder_new_password=New Password
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 44K bytes
    - Viewed (0)
Back to top