Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 90 for thumbnail_ (0.05 sec)

  1. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                                key="labels.thumbnail"/></span>
                                        <div class="form-inline col-sm-9">
                                            <la:errors property="thumbnail"/>
                                            <div class="form-check">
                                                <la:checkbox styleId="thumbnail" styleClass="form-check-input" property="thumbnail"/>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 14 00:36:40 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/main/resources/fess_indices/fess_config.thumbnail_queue/thumbnail_queue.json

    {
        "properties": {
          "thumbnail_id": {
            "type": "keyword"
          },
          "path": {
            "type": "keyword"
          },
          "generator": {
            "type": "keyword"
          },
          "target": {
            "type": "keyword"
          },
          "createdTime": {
            "type": "long"
          },
          "createdBy": {
            "type": "keyword"
          }
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 359 bytes
    - Viewed (0)
  10. 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 Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 903 bytes
    - Viewed (0)
Back to top