Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 75 for transformer2 (0.39 sec)

  1. fess-crawler-lasta/src/main/resources/crawler/transformer_basic.xml

    		class="org.codelibs.fess.crawler.transformer.impl.HtmlTransformer" instance="singleton">
    		<property name="name">"htmlTransformer"</property>
    		<property name="featureMap">defaultFeatureMap</property>
    		<property name="propertyMap">defaultPropertyMap</property>
    		<property name="childUrlRuleMap">htmlUrlRuleMap</property>
    	</component>
    
    	<component name="textTransformer"
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Sep 30 21:21:24 UTC 2018
    - 3.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/transformer/FessStandardTransformer.java

    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    
    import jakarta.annotation.PostConstruct;
    
    /**
     * Standard transformer implementation for the Fess search engine.
     * This transformer handles document transformation and content extraction using
     * the standard Fess file transformation process with support for various content types.
     *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  3. compat/maven-compat/src/test/java/org/apache/maven/artifact/AbstractArtifactComponentTestCase.java

    import org.eclipse.aether.util.graph.selector.ExclusionDependencySelector;
    import org.eclipse.aether.util.graph.transformer.ChainedDependencyGraphTransformer;
    import org.eclipse.aether.util.graph.transformer.ConflictResolver;
    import org.eclipse.aether.util.graph.transformer.NearestVersionSelector;
    import org.eclipse.aether.util.graph.transformer.SimpleOptionalitySelector;
    import org.eclipse.aether.util.repository.SimpleArtifactDescriptorPolicy;
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Mar 21 04:56:21 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResultData.java

         */
        void setId(IDTYPE id);
    
        /**
         * Retrieves the name of the transformer associated with this access result data.
         *
         * @return the name of the transformer.
         */
        String getTransformerName();
    
        /**
         * Sets the name of the transformer.
         *
         * @param transformerName the name of the transformer to set
         */
        void setTransformerName(String transformerName);
    
        /**
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Mar 15 06:52:00 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  5. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/transform/ArtifactTransformation.java

        String ROLE = ArtifactTransformation.class.getName();
    
        /**
         * Take in an artifact and return the transformed artifact for locating in the remote repository. If no
         * transformation has occurred the original artifact is returned.
         *
         * @param artifact           Artifact to be transformed.
         * @param request the repositories to check
         */
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/crawler/transformer/FessFileTransformer.java

    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    
    import jakarta.annotation.PostConstruct;
    
    /**
     * File transformer implementation for the Fess search engine.
     * This transformer handles file-based document transformation and content extraction
     * using the Fess file transformation process with support for various file types.
     *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformer.java

     * </p>
     *
     * <p>
     * Example Usage:
     * </p>
     *
     * <pre>
     * XmlTransformer transformer = new XmlTransformer();
     * transformer.setNamespaceAware(true);
     * transformer.setCacheDuration(30);
     * transformer.addFieldRule("title", "/book/title/text()");
     * transformer.addFieldRule("author", "/book/author/name/text()");
     *
     * ResponseData responseData = new ResponseData();
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ResultData.java

            childUrlSet.remove(url);
        }
    
        /**
         * Get the transformer name.
         * @return transformer
         */
        public String getTransformerName() {
            return transformerName;
        }
    
        /**
         * Set the transformer name.
         * @param transformerName the name of the transformer to set
         */
        public void setTransformerName(final String transformerName) {
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  9. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/transform/ArtifactTransformationManager.java

        String ROLE = ArtifactTransformationManager.class.getName();
    
        /**
         * Take in an artifact and return the transformed artifact for locating in the remote repository. If no
         * transformation has occurred the original artifact is returned.
         *
         * @param artifact           Artifact to be transformed.
         * @param request the repositories to check
         */
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. fess-crawler-lasta/src/main/resources/crawler/rule.xml

    <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN"
    	"http://dbflute.org/meta/lastadi10.dtd">
    <components namespace="fessCrawler">
    	<include path="crawler/container.xml" />
    	<include path="crawler/transformer.xml" />
    
    	<component name="ruleManager"
    		class="org.codelibs.fess.crawler.rule.impl.RuleManagerImpl" instance="prototype">
    		<postConstruct name="addRule">
    			<arg>sitemapsRule</arg>
    		</postConstruct>
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 1.5K bytes
    - Viewed (0)
Back to top