- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 100 for generating (0.07 sec)
-
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
thumbnailManager = new TestThumbnailManager(); thumbnailManager.baseDir = tempDir; thumbnailManager.thumbnailTaskQueue = new LinkedBlockingQueue<>(100); thumbnailManager.generating = false; } // Test implementation of ThumbnailManager to avoid container dependencies private class TestThumbnailManager extends ThumbnailManager { @Override public void init() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.7K bytes - Viewed (0) -
docs/en/docs/advanced/generate-clients.md
# Generating SDKs { #generating-sdks } Because **FastAPI** is based on the **OpenAPI** specification, its APIs can be described in a standard format that many tools understand. This makes it easy to generate up-to-date **documentation**, client libraries (<abbr title="Software Development Kits">**SDKs**</abbr>) in multiple languages, and **testing** or **automation workflows** that stay in sync with your code.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 10.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
/** * Queue for thumbnail generation tasks containing URL, content, and path tuples. */ protected BlockingQueue<Tuple3<String, String, String>> thumbnailTaskQueue; /** * Flag indicating whether thumbnail generation is currently in progress. */ protected volatile boolean generating; private Thread thumbnailQueueThread; /**
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/jcifs/internal/smb1/SMB1SigningDigest.java
private int updates; private int signSequence; /** * Constructs a signing digest with bypass option * * @param macSigningKey * The MAC signing key used for generating signatures * @param bypass * Whether to bypass signature verification */ public SMB1SigningDigest(final byte[] macSigningKey, final boolean bypass) { this(macSigningKey, bypass, 0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.9K bytes - Viewed (0) -
docs/tls/README.md
Use the following command to generate a private key with RSA: ```sh openssl genrsa -out private.key 2048 ``` A response similar to this one should be displayed: ``` Generating RSA private key, 2048 bit long modulus ............................................+++ ...........+++ e is 65537 (0x10001) ```
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 8.6K bytes - Viewed (0) -
docs/en/docs/advanced/using-request-directly.md
Taking data from: * The path as parameters. * Headers. * Cookies. * etc. And by doing so, **FastAPI** is validating that data, converting it and generating documentation for your API automatically. But there are situations where you might need to access the `Request` object directly. ## Details about the `Request` object { #details-about-the-request-object }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ThreadDumpUtil.java
import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.codelibs.core.exception.IORuntimeException; import org.codelibs.fess.Constants; /** * Utility class for generating and writing thread dumps. * Provides methods to capture thread information for debugging purposes. */ public class ThreadDumpUtil { private static final Logger logger = LogManager.getLogger(ThreadDumpUtil.class);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailAction.java
if (fessConfig.isThumbnailEnabled()) { thumbnailManager.offer(doc); } // 404 throw responseManager.new404("Thumbnail for " + form.docId + " is under generating."); } return asStream(form.docId).contentType(getImageMimeType(thumbnailFile)).stream(out -> { try (BufferedInputStream in = new BufferedInputStream(new FileInputStream(thumbnailFile))) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java
import org.opensearch.monitor.os.OsProbe; import org.opensearch.monitor.process.ProcessProbe; import jakarta.annotation.Resource; /** * Executable class for generating thumbnails for indexed documents. * This class provides a command-line interface for thumbnail generation tasks. */ public class ThumbnailGenerator { private static final Logger logger = LogManager.getLogger(ThumbnailGenerator.class); /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java
import org.codelibs.fess.util.JobProcess; import org.codelibs.fess.util.ResourceUtil; import org.codelibs.fess.util.SystemUtil; import jakarta.servlet.ServletContext; /** * Job class for generating thumbnails for documents in the search engine. * This job executes the ThumbnailGenerator process as a separate JVM process * to create thumbnail images for supported document types. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.7K bytes - Viewed (0)