- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 39 for dnes (0.09 sec)
-
src/main/assemblies/files/generate-thumbnail
if [[ -z "${im_cmd}" ]] ; then echo "ImageMagick (convert or magick) does not exist." exit 1 fi check_command pdftoppm check_command unoconv tmp_pdf_file=/tmp/thumbnail.$$.pdf unoconv -e PageRange=1-1 -o ${tmp_pdf_file} -f pdf "${target_file}" if [[ ! -f ${tmp_pdf_file} ]] ; then echo "unoconv does not work." exit 1 fi tmp_png_prefix=/tmp/thumbnail.png.$$
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 04 08:02:36 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/CurlResponse.java
* @throws CurlException if the content does not exist. */ public InputStream getContentAsStream() throws IOException { if (contentCache == null) { if (contentException != null) { throw new CurlException("The content does not exist.", contentException); } else { throw new CurlException("The content does not exist."); } }Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Mon Nov 24 03:10:07 UTC 2025 - 7K bytes - Viewed (0) -
src/main/resources/fess_label_fr.properties
labels.crawling_info_list=Liste des informations d'exploration labels.boost_document_rule_list=Liste des règles de boost de document labels.bad_word_list=Liste des mots interdits labels.backup_list=Liste des sauvegardes labels.access_token_list=Liste des jetons d'accès labels.suggest_search_log_enabled=Suggérer à partir des termes de recherche labels.suggest_documents_enabled=Suggérer à partir des documents
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 49.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ThemeHelper.java
/** * Recursively deletes a directory and all its contents. * Does not throw exceptions, only logs warnings if deletion fails. * * @param dir the directory to delete */ protected void closeQuietly(final Path dir) { if (Files.notExists(dir)) { if (logger.isDebugEnabled()) { logger.debug("Path does not exist: path={}", dir); } return; }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java
* The value is, e.g. false <br> * comment: Does it enable the Framework internal debug? (true only when emergency) * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getFrameworkDebug(); /** * Is the property for the key 'framework.debug' true? <br> * The value is, e.g. false <br>
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 9.9K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/RobotsTxtHelperTest.java
assertNotNull(robotsTxt.getDirective("goodbot")); assertFalse(robotsTxt.allows("/admin/", "GoodBot")); assertTrue(robotsTxt.allows("/public/", "GoodBot")); // Invalid directives should not cause parsing to fail // Test crawl-delay with invalid values // Invalid number should be ignored, valid ones should work
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 20.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/net/protocol/gcs/HandlerTest.java
assertEquals("mybucket", getField(conn, "bucketName")); assertEquals("", getField(conn, "objectName")); } /** * Test URL with multiple consecutive slashes. * Note: Java's URL class does NOT normalize multiple slashes in the path. */ public void test_urlParsing_multipleSlashes() throws Exception { URL url = new URL("gcs://mybucket//path//to//object.txt");
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 14.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/util/TemporaryFileInputStreamTest.java
fos.write("ABCDEFGH".getBytes()); } try (TemporaryFileInputStream stream = new TemporaryFileInputStream(tempFile)) { // FileInputStream does not support mark/reset assertFalse(stream.markSupported()); assertEquals('A', stream.read()); assertEquals('B', stream.read());
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 22 13:28:22 UTC 2025 - 7.2K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/AbstractExtractorTest.java
assertTrue("Exception message should mention 'null'", message.toLowerCase().contains("null")); } } /** * Test that validateInputStream does not modify or consume the stream. */ public void test_validateInputStream_doesNotConsumeStream() throws Exception { final byte[] testData = "test data for validation".getBytes();
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 8.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/FileUtil.java
protected static final int DEFAULT_BUF_SIZE = 4096; // 4k /** Max Buffer Size */ protected static final int MAX_BUF_SIZE = 10 * 1024 * 1024; // 10m /** * Validates that a given path is safe and does not attempt path traversal attacks. * <p> * This method checks if the resolved absolute path starts with the allowed base directory, * preventing access to files outside the intended directory through path traversalRegistered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 13.1K bytes - Viewed (0)