Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for CLOSING (1.7 sec)

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

            this.processDestroyTimeout = processDestroyTimeout;
        }
    
        /**
         * Sets the timeout for stream closing operations.
         *
         * @param streamCloseTimeout timeout in seconds for stream closing operations
         */
        public void setStreamCloseTimeout(final int streamCloseTimeout) {
            this.streamCloseTimeout = streamCloseTimeout;
        }
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 06:54:47 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

         */
        protected FessFunctions() {
            // nothing
        }
    
        /**
         * Generates an HTML opening or closing tag with appropriate language attribute.
         *
         * @param isOpen true to generate opening HTML tag, false for closing tag
         * @return HTML opening tag with language attribute or closing tag
         */
        public static String html(final boolean isOpen) {
            if (isOpen) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 25.4K bytes
    - Viewed (1)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactory.java

            if (obj instanceof AutoCloseable) {
                try {
                    ((AutoCloseable) obj).close();
                } catch (final Exception e) {
                    logger.warn("Error closing pooled object for component: {}", componentName, e);
                    throw e;
                }
            }
        }
    
        /**
         * Listener interface for handling object destruction events.
         *
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

                saveInfo(messages -> messages.addSuccessStartedDataUpdate(GLOBAL));
            }
            return redirect(getClass());
        }
    
        /**
         * Reloads the document index by closing and reopening it.
         *
         * @param form the action form (validated but not used for configuration)
         * @return HTML response redirecting to the maintenance page
         */
        @Execute
        @Secured({ ROLE })
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                    // StringWriter close() should not throw IOException, but log just in case
                    if (logger.isDebugEnabled()) {
                        logger.debug("Unexpected IOException while closing StringWriter", e);
                    }
                }
                return buf.toString();
            };
            final String message;
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 55.4K bytes
    - Viewed (1)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java

        }
    
        @Override
        public void close() {
            if (ftpAuthenticationHolder == null) {
                return;
            }
            if (logger.isDebugEnabled()) {
                logger.debug("Closing FtpClient...");
            }
            ftpAuthenticationHolder = null;
            for (final FTPClient ftpClient : ftpClientQueue) {
                try {
                    ftpClient.disconnect();
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 40K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

        }
    
        @Override
        public void close() {
            if (httpClient == null) {
                return;
            }
            if (logger.isDebugEnabled()) {
                logger.debug("Closing HTTP client...");
            }
            if (connectionMonitorTask != null) {
                connectionMonitorTask.cancel();
                if (logger.isDebugEnabled()) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 12:19:14 UTC 2025
    - 53.7K bytes
    - Viewed (0)
Back to top