Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 236 for extentions (0.24 sec)

  1. src/main/resources/fess_config.properties

    max.log.output.length=4000
    # Adaptive load control value.
    adaptive.load.control=50
    # Supported JavaScript file extensions for upload.
    supported.uploaded.js.extentions=js
    # Supported CSS file extensions for upload.
    supported.uploaded.css.extentions=css
    # Supported media file extensions for upload.
    supported.uploaded.media.extentions=jpg,jpeg,gif,png,swf
    # Supported files for upload.
    supported.uploaded.files=license.properties
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 11 09:47:03 UTC 2025
    - 54.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String SUPPORTED_UPLOADED_JS_EXTENTIONS = "supported.uploaded.js.extentions";
    
        /** The key of the configuration. e.g. css */
        String SUPPORTED_UPLOADED_CSS_EXTENTIONS = "supported.uploaded.css.extentions";
    
        /** The key of the configuration. e.g. jpg,jpeg,gif,png,swf */
        String SUPPORTED_UPLOADED_MEDIA_EXTENTIONS = "supported.uploaded.media.extentions";
    
        /** The key of the configuration. e.g. license.properties */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 525.7K bytes
    - Viewed (2)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/JodExtractor.java

         * Gets the extractor for the specified file extension.
         *
         * @param ext the file extension
         * @return the extractor for the extension, or null if not found
         */
        private Extractor getExtractor(final String ext) {
            return extractorMap.get(ext);
        }
    
        /**
         * Gets the output extension for the specified input extension.
         *
         * @param extension the input file extension
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 12:19:14 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/util/MimeMap.java

            return getMimeType(extension, "application/octet-stream");
        }
    
        /**
         * Returns the MIME type for the given file extension with a custom default.
         *
         * @param extension the file extension to look up (without the dot)
         * @param def the default MIME type to return if no mapping is found
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java

                        createTempFile("cmdextin_" + filePrefix + "_", StringUtil.isNotBlank(extention) ? "." + extention : extention, tempDir);
                String ext;
                if (outputExtension == null) {
                    if (StringUtil.isNotBlank(extention)) {
                        ext = "." + extention;
                    } else {
                        ext = extention;
                    }
                } else {
                    ext = outputExtension;
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 12:19:14 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/MarkdownExtractor.java

        }
    
        /**
         * Initializes the Markdown parser with extensions.
         */
        protected void initializeParser() {
            final List<org.commonmark.Extension> extensions = Arrays.asList(YamlFrontMatterExtension.create());
            parser = Parser.builder().extensions(extensions).build();
            textRenderer = TextContentRenderer.builder().build();
        }
    
        @Override
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 03:46:53 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java

         * Used for Google Image Sitemap extension.
         */
        private List<SitemapImage> images;
    
        /**
         * List of videos associated with this URL.
         * Used for Video Sitemap extension.
         */
        private List<SitemapVideo> videos;
    
        /**
         * News information associated with this URL.
         * Used for Google News Sitemap extension.
         */
        private SitemapNews news;
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:34:36 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

            this.commandDestroyTimeout = commandDestroyTimeout;
        }
    
        /**
         * Gets file extension from MIME type for creating temp files with proper extensions.
         * This helps ImageMagick correctly identify file formats.
         * @param mimeType The MIME type of the content.
         * @return The file extension including the dot (e.g., ".gif"), or empty string if unknown.
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 04 08:02:36 UTC 2025
    - 16K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/opensearch/extension/ExtensionPlugin.java

    import org.codelibs.opensearch.extension.analysis.KanjiNumberFilterFactory;
    import org.codelibs.opensearch.extension.analysis.NGramSynonymTokenizerFactory;
    import org.codelibs.opensearch.extension.analysis.NumberConcatenationFilterFactory;
    import org.codelibs.opensearch.extension.analysis.PatternConcatenationFilterFactory;
    import org.codelibs.opensearch.extension.analysis.PosConcatenationFilterFactory;
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Tue Jul 08 14:37:06 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/AbstractIntervalController.java

        /**
         * Checks if exceptions during the delay process should be ignored.
         * @return true if exceptions should be ignored, false otherwise.
         */
        public boolean isIgnoreException() {
            return ignoreException;
        }
    
        /**
         * Sets whether to ignore exceptions.
         * @param ignoreException true to ignore exceptions, false otherwise.
         */
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 20 08:58:39 UTC 2025
    - 4.8K bytes
    - Viewed (0)
Back to top