Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for initiatives (0.09 sec)

  1. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

        protected Map<String, PrunedTag[]> prunedTagsCache = new HashMap<>();
    
        /**
         * Default constructor.
         */
        public FessXpathTransformer() {
            super();
        }
    
        /**
         * Initializes the transformer after dependency injection.
         * Sets up the Fess configuration and data serializer components.
         */
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/ViewHelper.java

        /** Length of text fragment suffix */
        protected int textFragmentSuffixLength;
    
        /** Size of text fragments */
        protected int textFragmentSize;
    
        /**
         * Initializes the ViewHelper with configuration settings.
         * Sets up highlighting, caching, and other view-related configurations.
         */
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/ldap/LdapManager.java

        /** The Fess configuration. */
        protected FessConfig fessConfig;
    
        /**
         * Default constructor.
         */
        public LdapManager() {
            // do nothing
        }
    
        /**
         * Initializes the LDAP manager.
         */
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 82K bytes
    - Viewed (0)
Back to top