- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 44 for THUMBNAIL (0.04 sec)
-
src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java
// Test successful thumbnail generation String thumbnailId = "test-thumbnail-001"; assertTrue(thumbnailGenerator.generate(thumbnailId, tempOutputFile)); assertTrue(tempOutputFile.exists()); } public void test_generate_withNullThumbnailId() { // Test generation with null thumbnail ID assertFalse(thumbnailGenerator.generate(null, tempOutputFile));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
destoryTimer.cancel(); destoryTimer = null; } /** * Generates a thumbnail for the given ID and saves it to the output file. * @param thumbnailId The ID of the thumbnail to generate. * @param outputFile The file where the thumbnail will be saved. * @return True if thumbnail generation was successful, false otherwise. */ @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Fri Jul 18 14:34:06 UTC 2025 - 14.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java
* * @param thumbnailId the unique identifier for the thumbnail * @param outputFile the file where the generated thumbnail will be saved * @return true if the thumbnail was successfully generated, false otherwise */ @Override public boolean generate(final String thumbnailId, final File outputFile) { if (logger.isDebugEnabled()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
/** * Base directory for storing thumbnail files. */ protected File baseDir; /** * List of available thumbnail generators. */ protected final List<ThumbnailGenerator> generatorList = new ArrayList<>(); /** * Queue for thumbnail generation tasks containing URL, content, and path tuples. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java
import org.codelibs.fess.opensearch.config.exentity.CrawlingConfig; import org.codelibs.fess.thumbnail.ThumbnailGenerator; import org.codelibs.fess.util.ComponentUtil; import org.codelibs.fess.util.DocumentUtil; /** * Abstract base class for thumbnail generators. * Provides common functionality for thumbnail generation implementations. */ public abstract class BaseThumbnailGenerator implements ThumbnailGenerator {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java
* This job executes the ThumbnailGenerator process as a separate JVM process * to create thumbnail images for supported document types. */ public class GenerateThumbnailJob extends ExecJob { /** Logger for this class. */ static final Logger logger = LogManager.getLogger(GenerateThumbnailJob.class); /** Number of threads to use for thumbnail generation. */ protected int numOfThreads = 1;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.thumbnail; import java.io.File; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Path; import java.util.HashMap; import java.util.List; import java.util.Map;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.7K bytes - Viewed (0) -
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) -
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) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
*/ @Size(max = 10) public String loginLink; /** * Enable or disable thumbnail generation for documents. * When enabled, thumbnails are generated for supported file types. */ @Size(max = 10) public String thumbnail; /** * Types of crawling failures to ignore during crawling operations.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0)