Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for updateThumbnailField (0.78 sec)

  1. src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java

                    if (logger.isDebugEnabled()) {
                        logger.debug("Thumbnail is not image: {} : {}", thumbnailId, responseData.getUrl());
                    }
                    updateThumbnailField(thumbnailId, StringUtil.EMPTY);
                    return false;
                }
                boolean created = false;
                try (ImageInputStream input = ImageIO.createImageInputStream(responseData.getResponseBody())) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

                        if (outputFile.delete()) {
                            logger.info("Deleted: {}", outputFile.getAbsolutePath());
                        }
                        updateThumbnailField(thumbnailId, StringUtil.EMPTY);
                        return false;
                    }
    
                    if (logger.isDebugEnabled()) {
                        logger.debug("Thumbnail File: {}", outputPath);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java

            if (value != null && filePathMap.containsKey(value)) {
                return filePathMap.get(value);
            }
            return value;
        }
    
        protected void updateThumbnailField(final String thumbnailId, final String value) {
            // TODO bulk
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            try {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top