Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 131 for initialisation (0.11 sec)

  1. src/test/java/org/codelibs/fess/exception/PluginExceptionTest.java

            assertNull(exception.getCause());
        }
    
        public void test_constructor_withMessageAndCause() {
            // Test constructor with message and cause
            String message = "Plugin initialization failed";
            Throwable cause = new RuntimeException("Underlying error");
            PluginException exception = new PluginException(message, cause);
    
            assertNotNull(exception);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/synonym/SynonymCreator.java

         * and ending with ".txt".
         */
        public SynonymCreator() {
            super("synonym.*\\.txt");
        }
    
        /**
         * Registers this creator with the dictionary manager upon initialization.
         * This method is annotated with {@link PostConstruct} to be executed after
         * dependency injection is complete.
         */
        @PostConstruct
        public void register() {
            if (logger.isInfoEnabled()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/validation/CronExpressionValidatorTest.java

            assertNotNull(validator);
    
            // Test initialize method doesn't throw exception
            validator.initialize(null);
    
            // Test that validator can be used after initialization
            assertTrue(validator.isValid(null, null));
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/filter/EncodingFilter.java

         * Sets up encoding mappings and default encoding from filter configuration.
         *
         * @param config the filter configuration containing initialization parameters
         * @throws ServletException if an error occurs during initialization
         */
        @Override
        public void init(final FilterConfig config) throws ServletException {
            servletContext = config.getServletContext();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/cors/DefaultCorsHandler.java

         */
        public DefaultCorsHandler() {
            super();
        }
    
        /**
         * Registers this CORS handler with the factory for configured allowed origins.
         * This method is automatically called after bean initialization.
         */
        @PostConstruct
        public void register() {
            final CorsHandlerFactory factory = ComponentUtil.getCorsHandlerFactory();
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/dcerpc/DcerpcPipeHandle.java

         * @param auth the NTLM authentication credentials
         * @throws UnknownHostException if the host cannot be resolved
         * @throws MalformedURLException if the URL is malformed
         * @throws DcerpcException if DCERPC initialization fails
         */
        public DcerpcPipeHandle(String url, final NtlmPasswordAuthentication auth)
                throws UnknownHostException, MalformedURLException, DcerpcException {
            binding = DcerpcHandle.parseBinding(url);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/config/BaseConfiguration.java

         * Constructs a BaseConfiguration with default settings
         *
         * @throws CIFSException if configuration initialization fails
         */
        protected BaseConfiguration() throws CIFSException {
            this(false);
        }
    
        /**
         * Constructs a BaseConfiguration with optional default initialization
         *
         * @param initDefaults
         *            whether to initialize defaults based on other settings
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/ReqHeaderPager.java

        /**
         * Default constructor for ReqHeaderPager.
         * Initializes the pager with default values for page size and current page number.
         */
        public ReqHeaderPager() {
            // Default constructor - initialization handled by field defaults and clear() method
        }
    
        /**
         * Clears all pager data and resets to default values.
         * This method resets pagination state and clears all request header fields.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/message/MessageFormatter.java

        protected static final int CODE_NUMBER_LENGTH = 4;
    
        /** Suffix of the resource bundle name corresponding to the message code */
        protected static final String MESSAGES = "Messages";
    
        /** Flag indicating initialization */
        protected static volatile boolean initialized;
    
        /**
         * Returns the message.
         *
         * @param messageCode
         *            Message code
         * @param args
         *            Arguments
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/rdma/disni/DisniRdmaProvider.java

            ensureInitialized();
            return new DisniMemoryRegion(buffer, access, endpoint);
        }
    
        /**
         * Initialize DiSNI components if not already initialized
         *
         * @throws IOException if initialization fails
         */
        private void ensureInitialized() throws IOException {
            if (!initialized) {
                try {
                    // In a real implementation, this would initialize DiSNI:
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 5.2K bytes
    - Viewed (0)
Back to top