- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 63 for distros (0.4 sec)
-
CHANGELOG/CHANGELOG-1.9.md
* Fixed an issue with Azure disk mount failures on CoreOS and some other distros ([#54334](https://github.com/kubernetes/kubernetes/pull/54334),[ @andyzhangx](https://github.com/andyzhangx))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Tue Nov 16 10:46:27 UTC 2021 - 313.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/EmptyGenerator.java
public boolean generate(final String thumbnailId, final File outputFile) { return false; } /** * Destroys this generator and releases any resources. * This implementation does nothing as no resources are held. */ @Override public void destroy() { // nothing }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/filter/WebApiFilter.java
*/ @Override public void init(final FilterConfig filterConfig) throws ServletException { // nothing } /** * Destroys the web API filter and cleans up resources. */ @Override public void destroy() { // nothing } /** * Filters HTTP requests and processes them through appropriate web API managers. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailGenerator.java
/** * Checks if this thumbnail generator is available for use. * @return True if available, false otherwise. */ boolean isAvailable(); /** * Destroys this thumbnail generator and releases any resources. */ void destroy(); /** * Creates a thumbnail generation task. * @param path The path to the source document. * @param docMap The document map containing metadata.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ProcessHelper.java
} /** * Internal method to destroy a specific JobProcess. * Handles cleanup of streams, threads, and process termination. * * @param sessionId unique identifier for the process session * @param jobProcess the JobProcess to destroy * @return exit code of the destroyed process, or -1 if the process was null or could not be destroyed */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
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
*/ public HtmlTagBasedGenerator() { super(); } /** * Destroys this thumbnail generator and releases any resources. * This implementation is empty as no cleanup is required. */ @Override public void destroy() { } /** * Creates a thumbnail generation task for the specified document. *
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/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
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/thumbnail/impl/EmptyGeneratorTest.java
// Initialize without container emptyGenerator = new EmptyGenerator(); // Test that destroy method can be called without error emptyGenerator.destroy(); // Call destroy multiple times to ensure it's safe emptyGenerator.destroy(); emptyGenerator.destroy(); } public void test_isAvailable() { // Initialize without container
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java
assertTrue(generator.isGenerateCalled()); } public void test_destroy() { // Test destroy method is called correctly generator = new TestThumbnailGenerator(); assertFalse(generator.isDestroyCalled()); generator.destroy(); assertTrue(generator.isDestroyCalled()); } public void test_expandPath() { // Test expandPath method
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.1K bytes - Viewed (0)