Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for thumbnail_id (0.16 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsentity/BsThumbnailQueue.java

            this.target = value;
        }
    
        public String getThumbnailId() {
            checkSpecifiedProperty("thumbnailId");
            return convertEmptyToNull(thumbnailId);
        }
    
        public void setThumbnailId(String value) {
            registerModifiedProperty("thumbnailId");
            this.thumbnailId = value;
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess_config.thumbnail_queue/thumbnail_queue.json

    {
        "properties": {
          "thumbnail_id": {
            "type": "keyword"
          },
          "path": {
            "type": "keyword"
          },
          "generator": {
            "type": "keyword"
          },
          "target": {
            "type": "keyword"
          },
          "createdTime": {
            "type": "long"
          },
          "createdBy": {
            "type": "keyword"
          }
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 359 bytes
    - Viewed (0)
  3. src/main/config/es/fess_config_thumbnail_queue.json

                "type" : "keyword"
              },
              "path" : {
                "type" : "keyword"
              },
              "target" : {
                "type" : "keyword"
              },
              "thumbnail_id" : {
                "type" : "keyword"
              }
            }
          }
        },
        "settings" : {
          "index" : {
            "creation_date" : "1509021057304",
            "number_of_shards" : "5",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 903 bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsThumbnailQueueCB.java

                doColumn("path");
            }
    
            public void columnTarget() {
                doColumn("target");
            }
    
            public void columnThumbnailId() {
                doColumn("thumbnail_id");
            }
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

        public void destroy() {
            destoryTimer.cancel();
            destoryTimer = null;
        }
    
        @Override
        public boolean generate(final String thumbnailId, final File outputFile) {
            if (logger.isDebugEnabled()) {
                logger.debug("Generate Thumbnail: {}", thumbnailId);
            }
    
            if (outputFile.exists()) {
                if (logger.isDebugEnabled()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java

                return false;
            }
    
            return process(thumbnailId, responseData -> {
                if (!isImageMimeType(responseData)) {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Thumbnail is not image: {} : {}", thumbnailId, responseData.getUrl());
                    }
                    updateThumbnailField(thumbnailId, StringUtil.EMPTY);
                    return false;
                }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/thumbnail/impl/EmptyGenerator.java

     */
    package org.codelibs.fess.thumbnail.impl;
    
    import java.io.File;
    
    public class EmptyGenerator extends BaseThumbnailGenerator {
    
        @Override
        public boolean generate(final String thumbnailId, final File outputFile) {
            return false;
        }
    
        @Override
        public void destroy() {
            // nothing
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 939 bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/thumbnail/ThumbnailGenerator.java

    import java.io.File;
    import java.util.Map;
    
    import org.codelibs.core.misc.Tuple3;
    
    public interface ThumbnailGenerator {
    
        String getName();
    
        boolean generate(String thumbnailId, File outputFile);
    
        boolean isTarget(Map<String, Object> docMap);
    
        boolean isAvailable();
    
        void destroy();
    
        Tuple3<String, String, String> createTask(String path, Map<String, Object> docMap);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java

                systemProperties.reload(options.propertiesPath);
            } else {
                try {
                    final File propFile = ComponentUtil.getSystemHelper().createTempFile("thumbnail_", ".properties");
                    if (propFile.delete() && logger.isDebugEnabled()) {
                        logger.debug("Deleted a temp file: {}", propFile.getAbsolutePath());
                    }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top