Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 91 for temp (0.21 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/AbstractCrawlerClient.java

                tempFile.setWritable(false, false);
                tempFile.setWritable(true, true);
                return tempFile;
            } catch (final IOException e) {
                throw new CrawlerSystemException("Could not create a temp file.", e);
            }
        }
    
        /**
         * Sets the maximum cached content size.
         * @param maxCachedContentSize The maximum cached content size in bytes.
         */
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 9.7K bytes
    - Viewed (10)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/util/TemporaryFileInputStreamTest.java

            // Create a temporary file
            File tempFile = File.createTempFile("test-", ".tmp");
            try (FileOutputStream fos = new FileOutputStream(tempFile)) {
                fos.write("Test data for deletion".getBytes());
            }
    
            String filePath = tempFile.getAbsolutePath();
            assertTrue("Temp file should exist before opening stream", tempFile.exists());
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Nov 22 13:28:22 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  3. src/main/assemblies/files/service.bat

    set JVM_SS=256
    
    set FESS_PARAMS=-Dfess;-Dfess.home="%FESS_HOME%";-Dfess.es.dir="%SEARCH_ENGINE_HOME%";-Dfess.home="%FESS_HOME%";-Dfess.context.path="/";-Dfess.port=8080;-Dfess.webapp.path="%FESS_HOME%\app";-Dfess.temp.path="%FESS_HOME%\temp";-Dfess.log.name="%APP_NAME%";-Dfess.log.path="%FESS_HOME%\logs";-Dfess.log.level=warn;-Dlasta.env=web;-Dtomcat.config.path=tomcat_config.properties
    
    set JVM_OPTS=-XX:+UseG1GC%FESS_JAVA_OPTS: =;%
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/util/ResponseDataUtilTest.java

                }
            } finally {
                // Clean up
                tempFile.delete();
            }
        }
    
        public void test_createResponseBodyFile_tempFilePrefix() throws Exception {
            // Test that temp file has correct prefix
            ResponseData responseData = new ResponseData() {
                @Override
                public InputStream getResponseBody() {
                    return new ByteArrayInputStream("Test".getBytes());
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Nov 22 13:28:22 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/AbstractExtractor.java

                tempFile.setWritable(false, false);
                tempFile.setWritable(true, true);
                return tempFile;
            } catch (final IOException e) {
                throw new CrawlerSystemException("Could not create a temp file.", e);
            }
        }
    
        /**
         * Validates that the input stream is not null.
         * This is a common validation performed by most extractors.
         *
         * @param in The input stream to validate
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Wed Nov 19 08:55:01 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

                    return false;
                } finally {
                    if (tempFile != null && !tempFile.delete()) {
                        logger.debug("Failed to delete temp file: {}", tempFile.getAbsolutePath());
                    }
                }
            });
    
        }
    
        /**
         * Executes a command to generate a thumbnail using the specified command list.
         * <p>
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 04 08:02:36 UTC 2025
    - 16K bytes
    - Viewed (0)
  7. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/s3/S3ClientTest.java

            } catch (CrawlingAccessException e) {
                assertTrue(e.getCause() instanceof InterruptedException);
            }
        }
    
        public void test_temp_file_creation() {
            // Test that temp file uses correct prefix "S3Client" not "StorageClient"
            S3Client client = new S3Client() {
                @Override
                protected java.io.File createTempFile(String prefix, String suffix, java.io.File directory) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 07:57:44 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/storage/StorageClientTest.java

        public void test_temp_file_creation() {
            // Test that temp file uses correct prefix "StorageClient" not "SmbClient"
            StorageClient client = new StorageClient() {
                @Override
                protected java.io.File createTempFile(String prefix, String suffix, java.io.File directory) {
                    // Verify the prefix is correct
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 20.9K bytes
    - Viewed (0)
  9. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/RobotsTxtHelperTest.java

            assertTrue(robotsTxt.allows("/fishing", "EndPathBot"));
            assertTrue(robotsTxt.allows("/fish/", "EndPathBot"));
    
            // Disallow: /temp$ but Allow: /fishing
            assertFalse(robotsTxt.allows("/temp", "EndPathBot"));
            assertTrue(robotsTxt.allows("/temporary", "EndPathBot"));
            assertTrue(robotsTxt.allows("/fishing", "EndPathBot"));
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/job/ExecJob.java

        protected void deleteTempDir(final File ownTmpDir) {
            if (ownTmpDir == null) {
                return;
            }
            if (!FileUtils.deleteQuietly(ownTmpDir)) {
                logger.warn("Could not delete temp directory: path={}", ownTmpDir.getAbsolutePath());
            }
        }
    
        /**
         * Appends JAR files from the specified directory to the classpath buffer.
         *
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 14.2K bytes
    - Viewed (0)
Back to top