Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 85 for thumbnails (0.04 sec)

  1. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

            final String tempPath = "/tmp/source.pdf";
            final String outputPath = "/tmp/thumbnail.jpg";
    
            final String expandedCommand = testCommand.replace("${url}", tempPath).replace("${outputFile}", outputPath);
    
            assertEquals("convert /tmp/source.pdf -resize 100x100 /tmp/thumbnail.jpg", expandedCommand);
            assertFalse("Expanded command should not contain variables", expandedCommand.contains("${"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 16.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

     * managing document lifecycle operations (create, update, delete), and handling
     * thumbnail processing during indexing.
     *
     * <p>The IndexingHelper manages bulk operations, handles retries on failures,
     * and provides various query-based operations for document management.
     * It also integrates with the thumbnail generation system and handles
     * the cleanup of old documents during updates.</p>
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.1K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/env/thumbnail/resources/log4j2.xml

    			filePattern="${log.file.basedir}/${domain.name}${backup.date.suffix}-%i.log.gz">
    			<PatternLayout><Pattern>${log.pattern}</Pattern></PatternLayout><!-- <EcsLayout serviceName="fess" eventDataset="thumbnail" /> -->
    			<Policies>
    				<TimeBasedTriggeringPolicy />
    				<SizeBasedTriggeringPolicy size="100 MB" />
    			</Policies>
    			<DefaultRolloverStrategy fileIndex="max" min="1"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Feb 20 13:05:30 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

    import org.codelibs.fess.helper.SearchHelper;
    import org.codelibs.fess.helper.UserInfoHelper;
    import org.codelibs.fess.mylasta.action.FessUserBean;
    import org.codelibs.fess.query.QueryFieldConfig;
    import org.codelibs.fess.thumbnail.ThumbnailManager;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.optional.OptionalThing;
    import org.lastaflute.web.login.LoginManager;
    import org.lastaflute.web.response.ActionResponse;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/Constants.java

        /** Property key for login link enabled configuration. */
        public static final String LOGIN_LINK_ENALBED_PROPERTY = "login.link.enabled";
    
        /** Property key for thumbnail enabled configuration. */
        public static final String THUMBNAIL_ENALBED_PROPERTY = "thumbnail.enabled";
    
        /** Property key for failure type ignore configuration. */
        public static final String IGNORE_FAILURE_TYPE_PROPERTY = "failure.ignoretype";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

            fessConfig.setResultCollapsed(isCheckboxEnabled(form.resultCollapsed));
            fessConfig.setLoginLinkEnabled(isCheckboxEnabled(form.loginLink));
            fessConfig.setThumbnailEnabled(isCheckboxEnabled(form.thumbnail));
            fessConfig.setIncrementalCrawling(isCheckboxEnabled(form.incrementalCrawling));
            fessConfig.setDayForCleanup(form.dayForCleanup);
            fessConfig.setCrawlingThreadCount(form.crawlingThreadCount);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  7. src/main/webapp/css/style.css

    	color: #007bff;
    }
    
    #result .url-copied {
    	color: #2c974b;
    }
    
    #result .favorited {
    	display: none;
    }
    
    #result .favorited i {
    	color: #fab005;
    }
    
    #result .thumbnail {
    	width: 100px;
    	min-height: 30px;
    	background-position: 50% 50%;
    	background-repeat: no-repeat;
    }
    
    /* Extra small devices (less than 576px) */
    
    @media (max-width: 575.98px) {
    	.mainLogo img {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Jan 12 06:14:02 UTC 2025
    - 2K bytes
    - Viewed (0)
  8. src/main/assemblies/common-bin.xml

    			<fileMode>0755</fileMode>
    			<directoryMode>0755</directoryMode>
    			<lineEnding>unix</lineEnding>
    			<includes>
    				<include>fess.in.sh</include>
    				<include>fess</include>
    				<include>generate-thumbnail</include>
    			</includes>
    		</fileSet>
    		<fileSet>
    			<filtered>false</filtered>
    			<outputDirectory>fess-${project.version}/bin</outputDirectory>
    			<includes>
    				<include>module.xml</include>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Mar 17 02:29:43 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/ThumbnailQueueDbm.java

                    "target");
            setupEpg(_epgMap, et -> ((ThumbnailQueue) et).getThumbnailId(),
                    (et, vl) -> ((ThumbnailQueue) et).setThumbnailId(DfTypeUtil.toString(vl)), "thumbnailId");
        }
    
        @Override
        public PropertyGateway findPropertyGateway(final String prop) {
            return doFindEpg(_epgMap, prop);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/fess/doc.json

    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top