Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 183 for initiatives (0.04 sec)

  1. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

        /** Cache for storing statistics objects keyed by crawler object identifiers. */
        protected LoadingCache<String, StatsObject> statsCache;
    
        /**
         * Initializes the crawler statistics helper.
         * Sets up the statistics logger and creates the cache for storing
         * statistics objects with the configured size and expiration settings.
         */
        @PostConstruct
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2.java

    import jcifs.Configuration;
    import jcifs.internal.smb1.trans.SmbComTransaction;
    import jcifs.internal.util.SMBUtil;
    import jcifs.util.Hexdump;
    
    /**
     * SMB1 Trans2 Find First 2 transaction request implementation.
     * Initiates directory enumeration operations in SMB1 protocol, allowing clients
     * to search for files and directories matching specified patterns and criteria.
     *
     * @author mbechler
     */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/NtlmContext.java

                        break;
                    }
                }
                ri += len;
            }
    
            return null;
        }
    
        /**
         * Initializes the security context with the given token.
         * @param token the input token bytes
         * @param offset offset into the token array
         * @param len length of token data
         * @return the output token bytes
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/lang/ClassUtil.java

            if (clazz != null) {
                return clazz;
            }
            return forName(className);
        }
    
        /**
         * Creates and initializes a new instance of the class using its default constructor.
         *
         * @param <T>
         *            The class represented by the {@link Class} object
         * @param clazz
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/crawler/transformer/FessStandardTransformer.java

            super();
        }
    
        /** Logger instance for this class */
        private static final Logger logger = LogManager.getLogger(FessStandardTransformer.class);
    
        /**
         * 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 Jul 17 08:28:31 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/joblog/EditForm.java

        /**
         * The timestamp when the job completed execution.
         * This field indicates when the job finished, if it has completed.
         */
        public String endTime;
    
        /**
         * Initializes the form with default null values.
         * This method resets all fields to their default state for creating a new entry.
         */
        public void initialize() {
            id = null;
            jobName = null;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/PopularWordHelper.java

        protected FessConfig fessConfig;
    
        /**
         * Default constructor.
         */
        public PopularWordHelper() {
            // Default constructor
        }
    
        /**
         * Initializes the PopularWordHelper after dependency injection.
         * Sets up the cache with configured size and expiration settings.
         */
        @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
    - 7.3K bytes
    - Viewed (0)
  8. src/test/java/jcifs/context/SingletonContextTest.java

            assertNotNull(SingletonContext.getInstance()); // Should still initialize
        }
    
        @Test
        void testGetInstanceInitializesIfNull() {
            // Test getInstance initializes the context if it's null
            assertNull(getSingletonInstanceViaReflection()); // Ensure it's null initially
            CIFSContext context = SingletonContext.getInstance();
            assertNotNull(context);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/LanguageHelper.java

        protected int maxTextLength;
    
        /**
         * Default constructor.
         */
        public LanguageHelper() {
            // do nothing
        }
    
        /**
         * Initializes the helper.
         */
        @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
    - 6.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/crawler/serializer/DataSerializer.java

        /** ThreadLocal container for Kryo instances to ensure thread safety. */
        protected final ThreadLocal<Kryo> kryoThreadLocal;
    
        /**
         * Constructs a new DataSerializer.
         * <p>
         * Initializes the ThreadLocal Kryo instances with appropriate configuration.
         * The Kryo instances are configured to not require class registration for
         * flexibility, and debug mode warnings are enabled when debug logging is active.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.1K bytes
    - Viewed (0)
Back to top