- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 94 for imatge (0.07 seconds)
-
src/main/resources/fess_config.properties
video/x-m4v=m4v\n\ audio/x-aif=aif\n\ audio/midi=midi\n\ audio/mpga=mpga\n\ audio/mp4=mp4a\n\ audio/ogg=oga\n\ audio/x-wav=wav\n\ image/webp=webp\n\ image/bmp=bmp\n\ image/x-icon=ico\n\ image/x-icon=ico\n\ image/png=png\n\ image/svg+xml=svg\n\ image/tiff=tiff\n\ image/jpeg=jpg\n\ # Number of documents to process per reindex operation. index.reindex.size=100 # Request body template for reindex operations.
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 59.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java
assertTrue("application/pdf".matches("application/pdf")); assertTrue("image/jpeg".matches("image/jpeg")); assertTrue("image/png".matches("image/png")); assertTrue("image/gif".matches("image/gif")); assertTrue("image/tiff".matches("image/tiff")); } @Test public void test_addConditionWithSvgMimetype() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Feb 04 14:24:39 GMT 2026 - 17.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/FileTypeHelperTest.java
fileTypeHelper.add("text/plain", "text"); assertEquals("text", fileTypeHelper.get("text/plain")); fileTypeHelper.add("image/jpeg", "image"); assertEquals("image", fileTypeHelper.get("image/jpeg")); } @Test public void test_get() { fileTypeHelper.add("application/pdf", "pdf"); fileTypeHelper.add("text/plain", "text");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 5.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java
} // Test all supported image MIME types in one comprehensive test @Test public void test_getExtensionFromMimeType_allImageTypes() { final String[][] testCases = { { "image/gif", ".gif" }, { "image/tiff", ".tiff" }, { "image/svg+xml", ".svg" }, { "image/jpeg", ".jpg" }, { "image/png", ".png" }, { "image/bmp", ".bmp" }, { "image/x-windows-bmp", ".bmp" },Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 27.8K bytes - Click Count (0) -
src/main/resources/fess_thumbnail.xml
<arg>"image/x-windows-bmp" </arg> </postConstruct> <postConstruct name="addCondition"> <arg>"mimetype"</arg> <arg>"image/x-ms-bmp" </arg> </postConstruct> <postConstruct name="addCondition"> <arg>"mimetype"</arg> <arg>"image/gif" </arg> </postConstruct> <postConstruct name="addCondition"> <arg>"mimetype"</arg> <arg>"image/png" </arg> </postConstruct>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Feb 04 14:24:39 GMT 2026 - 6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ThumbnailGenerationExceptionTest.java
Exception cause = new RuntimeException("Image processing error"); ThumbnailGenerationException exception = new ThumbnailGenerationException(message, cause); assertEquals(message, exception.getMessage()); assertEquals(cause, exception.getCause()); assertEquals("Image processing error", exception.getCause().getMessage()); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 10.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 11.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java
&& checkFileType(uploadedFileName, fessConfig.getSupportedUploadedMediaExtentionsAsArray())) { expectedBaseDir = new File(baseDir, "images"); uploadFile = new File(getServletContext().getRealPath("/images/" + fileName)); } else if (checkFileType(fileName, fessConfig.getSupportedUploadedCssExtentionsAsArray())
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 23 23:57:26 GMT 2026 - 20.1K bytes - Click Count (0) -
src/main/webapp/css/admin/adminlte.min.css.map
.brand-image-xl.single {\n margin-top: -.3rem;\n}\n\n.brand-link.text-sm .brand-image,\n.text-sm .brand-link .brand-image {\n height: 29px;\n margin-bottom: -.25rem;\n margin-left: .95rem;\n margin-top: -.25rem;\n}\n\n.brand-link.text-sm .brand-image-xs,\n.text-sm .brand-link .brand-image-xs {\n margin-top: -.2rem;\n max-height: 29px;\n}\n\n.brand-link.text-sm .brand-image-xl,\n.text-sm .brand-link .brand-image-xl {\n margin-top: -.225rem;\n max-height: 38px;\n}\n\n.main-sidebar {\n height: 100vh;\n...Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Oct 26 01:49:09 GMT 2024 - 3.7M bytes - Click Count (3) -
src/test/java/org/codelibs/fess/crawler/rule/CrawlerRuleMimeTypePatternTest.java
public void test_webFileRulePattern_doesNotMatchImageTypes() { Pattern pattern = Pattern.compile(WEB_FILE_RULE_PATTERN); assertFalse(pattern.matcher("image/jpeg").matches()); assertFalse(pattern.matcher("image/png").matches()); assertFalse(pattern.matcher("image/gif").matches()); } @Test public void test_fsFileRulePattern_xhtmlXml() { // Test that application/xhtml+xml is correctly matched
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Feb 04 14:24:39 GMT 2026 - 8.7K bytes - Click Count (0)