Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 90 for thumbnailId (0.04 sec)

  1. src/test/java/org/codelibs/fess/exception/ThumbnailGenerationExceptionTest.java

            Exception middleCause = new RuntimeException("Processing failed", innerCause);
            ThumbnailGenerationException exception = new ThumbnailGenerationException("Thumbnail generation error", middleCause);
    
            assertEquals("Thumbnail generation error", exception.getMessage());
            assertEquals(middleCause, exception.getCause());
            assertEquals("Processing failed", exception.getCause().getMessage());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/job/PurgeThumbnailJobTest.java

            assertEquals("Deleted 1 thumbnail files.", result);
        }
    
        // Test execute with successful purge (multiple files deleted)
        public void test_execute_multipleFilesDeleted() {
            thumbnailManager.setPurgeCallCount(100);
    
            String result = purgeThumbnailJob.execute();
    
            assertEquals("Deleted 100 thumbnail files.", result);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess_config.scheduled_job/scheduled_job.bulk

    {"index":{"_index":"fess_config.scheduled_job","_id":"thumbnail_generate"}}
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Nov 07 06:19:20 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/exception/ThumbnailGenerationException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    /**
     * Exception thrown when thumbnail generation fails.
     * This exception is used for errors during thumbnail creation and processing.
     */
    public class ThumbnailGenerationException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  5. 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 Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Jun 17 13:30:41 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/exec/ThumbnailGeneratorTest.java

    import org.codelibs.fess.helper.SystemHelper;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.opensearch.client.SearchEngineClient;
    import org.codelibs.fess.thumbnail.ThumbnailManager;
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.codelibs.fess.util.ComponentUtil;
    import org.lastaflute.di.core.factory.SingletonLaContainerFactory;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

        /** HTTP header name for robots tag */
        private static final String X_ROBOTS_TAG = "X-Robots-Tag";
    
        /** XPath expression for extracting thumbnail content from meta tags */
        private static final String META_NAME_THUMBNAIL_CONTENT = "//META[@name=\"thumbnail\" or @name=\"THUMBNAIL\"]/@content";
    
        /** XPath expression for extracting Open Graph image content from meta tags */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/PluginHelperTest.java

            assertEquals(ArtifactType.WEBAPP, webappArtifact.getType());
    
            Artifact thumbnailArtifact = new Artifact("fess-thumbnail-test", "1.0.0");
            assertEquals(ArtifactType.THUMBNAIL, thumbnailArtifact.getType());
    
            Artifact crawlerArtifact = new Artifact("fess-crawler-test", "1.0.0");
            assertEquals(ArtifactType.CRAWLER, crawlerArtifact.getType());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 22.1K 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