- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for thumbnail_id (0.16 sec)
-
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: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6.2K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_config.thumbnail_queue/thumbnail_queue.json
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 359 bytes - Viewed (0) -
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: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 903 bytes - Viewed (0) -
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: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6.9K bytes - Viewed (0) -
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: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 9.6K bytes - Viewed (0) -
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: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/EmptyGenerator.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 939 bytes - Viewed (0) -
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: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1K bytes - Viewed (0) -
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: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 8.2K bytes - Viewed (0)