- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 54 for THUMBNAIL (0.11 sec)
-
src/main/assemblies/files/generate-thumbnail
check_command convert check_command pdftoppm check_command unoconv tmp_pdf_file=/tmp/thumbnail.$$.pdf unoconv -e PageRange=1-1 -o ${tmp_pdf_file} -f pdf "${target_file}" if [[ ! -f ${tmp_pdf_file} ]] ; then echo "unoconv does not work." exit 1 fi tmp_png_prefix=/tmp/thumbnail.png.$$ pdftoppm -png -singlefile ${tmp_pdf_file} ${tmp_png_prefix} tmp_png_file="${tmp_png_prefix}.png"
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jun 12 13:13:28 UTC 2023 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
final String commandTimeoutStr = fessConfig.getSystemProperty("thumbnail.command.timeout"); if (commandTimeoutStr != null) { commandTimeout = Long.parseLong(commandTimeoutStr); } final String commandDestroyTimeoutStr = fessConfig.getSystemProperty("thumbnail.command.destroy.timeout"); if (commandDestroyTimeoutStr != null) {
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
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/test/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGeneratorTest.java
String imagePath = "thumbnail/600x400.png"; try (ImageInputStream input = ImageIO.createImageInputStream(classLoader.getResourceAsStream(imagePath))) { generator.saveImage(input, outputFile); } assertImageSize(outputFile, 100, 66); imagePath = "thumbnail/600x400.gif";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 4.1K 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) -
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) -
src/main/webapp/WEB-INF/view/searchResults.jsp
<c:if test="${thumbnailSupport && !empty doc.thumbnail}"> <div class="mr-3"> <a class="link d-none d-sm-flex" href="${doc.url_link}" data-uri="${doc.url_link}" data-id="${doc.doc_id}" data-order="${s.index}" > <img src="${fe:url('/images/blank.png')}" alt="thumbnail" data-src="${fe:url('/thumbnail/')}?docId=${f:u(doc.doc_id)}&queryId=${f:u(queryId)}" class="thumbnail" > </a> </div> </c:if>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jun 09 04:29:42 UTC 2022 - 9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java
"Failed to process a thumbnail content: " + url + " (Response URL is empty)"); } return consumer.test(responseData); } catch (final CrawlingAccessException e) { if (logger.isDebugEnabled()) { throw new ThumbnailGenerationException("Failed to process a thumbnail content: " + url, e); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 11.1K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_config.scheduled_job/scheduled_job.bulk
{"index":{"_index":"fess_config.scheduled_job","_id":"thumbnail_generate"}}
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 4.2K 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)