Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for extension (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/main/java/org/codelibs/core/io/ResourceUtil.java

         * @param extension
         *            The extension.
         * @return The resource path.
         */
        public static String getResourcePath(final String path, final String extension) {
            assertArgumentNotNull("path", path);
    
            if (extension == null) {
                return path;
            }
            final String ext = "." + extension;
            if (path.endsWith(ext)) {
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 14.7K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapImage.java

    import java.io.Serializable;
    
    /**
     * Represents an image entry within a sitemap URL.
     * This class encapsulates the properties of an image as defined in the Google Image Sitemap extension.
     *
     * <p>
     * The image extension allows you to provide additional information about images on your pages.
     * This can help Google index your images and display them in Google Images search results.
     * </p>
     *
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:34:36 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  6. plugin.xml

    		<delete dir="${plugins.dir}" />
    		<mkdir dir="${plugins.dir}" />
    		<!-- analysis-extension -->
    		<antcall target="install.plugin">
    			<param name="repo.url" value="${maven.release.repo.url}" />
    			<param name="plugin.groupId" value="org/codelibs/opensearch" />
    			<param name="plugin.name.prefix" value="opensearch-" />
    			<param name="plugin.name" value="analysis-extension" />
    			<param name="plugin.version" value="3.4.0" />
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 18 09:50:31 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  7. 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)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapNews.java

    import java.io.Serializable;
    
    /**
     * Represents a news entry within a sitemap URL.
     * This class encapsulates the properties of a news article as defined in the Google News Sitemap extension.
     *
     * <p>
     * The news extension allows you to provide additional information about news articles on your site.
     * This can help Google News index your articles and display them in Google News search results.
     * </p>
     *
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:34:36 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/suggest/settings/ArraySettingsTest.java

            })
                    .build(newConfigs().clusterName("ArraySettingsTest")
                            .numOfNode(1)
                            .pluginTypes("org.codelibs.opensearch.extension.ExtensionPlugin"));
            runner.ensureYellow();
        }
    
        @AfterClass
        public static void afterClass() throws Exception {
            runner.close();
            runner.clean();
        }
    
        @Before
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Sun Nov 23 13:04:17 UTC 2025
    - 3.4K bytes
    - Viewed (1)
  10. 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)
Back to top