- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 22 for thumbnail (3.65 sec)
-
src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
} @Override public boolean generate(final String thumbnailId, final File outputFile) { if (logger.isDebugEnabled()) { logger.debug("Generate Thumbnail: {}", thumbnailId); } if (outputFile.exists()) { if (logger.isDebugEnabled()) { logger.debug("The thumbnail file exists: {}", outputFile.getAbsolutePath()); } return true;
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/ThumbnailManager.java
} if (logger.isDebugEnabled()) { logger.debug("Thumbnail Directory: {}", baseDir.getAbsolutePath()); } thumbnailTaskQueue = new LinkedBlockingQueue<>(thumbnailTaskQueueSize); generating = !Constants.TRUE.equalsIgnoreCase(System.getProperty("fess.thumbnail.process")); thumbnailQueueThread = new Thread((Runnable) () -> {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 21.5K bytes - Viewed (0) -
deps.xml
<property name="crawler.dir" value="${basedir}/src/main/webapp/WEB-INF/env/crawler" /> <property name="suggest.dir" value="${basedir}/src/main/webapp/WEB-INF/env/suggest" /> <property name="thumbnail.dir" value="${basedir}/src/main/webapp/WEB-INF/env/thumbnail" /> <property name="site.dir" value="${basedir}/src/main/webapp/WEB-INF/site" /> <property name="kopf.branch" value="fess-14" /> <!-- Maven Repository -->
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 04:37:19 UTC 2024 - 2.5K bytes - Viewed (0) -
.gitignore
/src/main/webapp/WEB-INF/site/ /src/main/webapp/WEB-INF/plugin/* !/src/main/webapp/WEB-INF/plugin/.keep /src/main/webapp/WEB-INF/env/crawler/lib/ /src/main/webapp/WEB-INF/env/suggest/lib/ /src/main/webapp/WEB-INF/env/thumbnail/lib/ /src/main/webapp/WEB-INF/thumbnails/ /src/main/webapp/jar/ /dbflute_fess/extlib/* /dbflute_fess/log/*.log /dbflute_h2/log/*.log /dbflute_mysql/log/*.log /dbflute_oracle/log/*.log /src/main/webapp/WEB-INF/conf/*.properties
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 01:47:10 UTC 2024 - 1023 bytes - Viewed (0) -
src/main/resources/fess_config.properties
searchlog.request.headers= searchlog.process.batch_size=100 thumbnail.html.image.min.width=100 thumbnail.html.image.min.height=100 thumbnail.html.image.max.aspect.ratio=3.0 thumbnail.html.image.thumbnail.width=100 thumbnail.html.image.thumbnail.height=100 thumbnail.html.image.format=png thumbnail.html.image.xpath=//IMG thumbnail.html.image.exclude.extensions=svg,html,css,js thumbnail.generator.interval=0 thumbnail.generator.targets=all
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Oct 01 14:13:38 UTC 2024 - 30.9K bytes - Viewed (0) -
src/test/resources/plugin/repo3/index.html
<a href="fess-theme-simple/" title="fess-theme-simple/">fess-theme-simple/</a> - - <a href="fess-thumbnail-playwright/" title="fess-thumbnail-playwright/">fess-thumbnail-playwright/</a> - -
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jun 17 13:30:41 UTC 2024 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
String THUMBNAIL_HTML_IMAGE_THUMBNAIL_WIDTH = "thumbnail.html.image.thumbnail.width"; /** The key of the configuration. e.g. 100 */ String THUMBNAIL_HTML_IMAGE_THUMBNAIL_HEIGHT = "thumbnail.html.image.thumbnail.height"; /** The key of the configuration. e.g. png */ String THUMBNAIL_HTML_IMAGE_FORMAT = "thumbnail.html.image.format"; /** The key of the configuration. e.g. //IMG */
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 468.5K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 10.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
public enum ArtifactType { DATA_STORE("fess-ds"), // THEME("fess-theme"), // INGEST("fess-ingest"), // SCRIPT("fess-script"), // WEBAPP("fess-webapp"), // THUMBNAIL("fess-thumbnail"), // CRAWLER("fess-crawler"), // UNKNOWN("jar"); private final String id; ArtifactType(final String id) { this.id = id; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 01:47:10 UTC 2024 - 17.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
private static final String X_ROBOTS_TAG = "X-Robots-Tag"; private static final String META_NAME_THUMBNAIL_CONTENT = "//META[@name=\"thumbnail\" or @name=\"THUMBNAIL\"]/@content"; private static final String META_PROPERTY_OGIMAGE_CONTENT = "//META[@property=\"og:image\"]/@content";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 13:01:38 UTC 2024 - 42.9K bytes - Viewed (0)