Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 78 for distros (0.29 sec)

  1. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            systemHelper.addShutdownHook(() -> hookExecuted.set(true));
            systemHelper.destroy();
            assertTrue(hookExecuted.get());
        }
    
        public void test_destroy_withException() {
            systemHelper.addShutdownHook(() -> {
                throw new RuntimeException("test exception");
            });
            try {
                systemHelper.destroy();
                assertTrue(true);
            } catch (Exception e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/filter/WebApiFilterTest.java

            };
    
            // Should not throw any exception
            webApiFilter.init(filterConfig);
            assertTrue(true);
        }
    
        // Test destroy method
        public void test_destroy() {
            // Should not throw any exception
            webApiFilter.destroy();
            assertTrue(true);
        }
    
        // Test doFilter when WebApiManagerFactory returns null WebApiManager
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.2K bytes
    - Viewed (0)
  3. src/packaging/deb/init.d/fess

    #!/bin/sh
    #
    # /etc/init.d/fess -- startup script for Fess
    #
    # Written by Miquel van Smoorenburg <miquels@cistron.nl>.
    # Modified for Debian GNU/Linux	by Ian Murdock <******@****.***>.
    # Modified for Tomcat by Stefan Gybas <******@****.***>.
    # Modified for Tomcat6 by Thierry Carrez <******@****.***>.
    # Additional improvements by Jason Brittain <******@****.***>.
    # Modified by Nicolas Huray for Fess <******@****.***>.
    #
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

         */
        @PreDestroy
        public void destroy() {
            generating = false;
            thumbnailQueueThread.interrupt();
            try {
                thumbnailQueueThread.join(10000);
            } catch (final InterruptedException e) {
                logger.warn("Thumbnail thread is timeouted.", e);
            }
            generatorList.forEach(g -> {
                try {
                    g.destroy();
                } catch (final Exception e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java

                    System.setProperty(FesenClient.HTTP_ADDRESS, originalValue);
                } else {
                    System.clearProperty(FesenClient.HTTP_ADDRESS);
                }
            }
        }
    
        // Test destroy container
        public void test_destroyContainer() {
            // Test destroyContainer method - skip this test as it conflicts with container management
            // The test framework manages the container lifecycle
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            } catch (final Exception e) {
                throw new FessSystemException("Failed to parse project.properties.", e);
            }
        }
    
        /**
         * Destroys the SystemHelper and executes shutdown hooks.
         */
        @PreDestroy
        public void destroy() {
            shutdownHookList.forEach(action -> {
                try {
                    action.run();
                } catch (final Exception e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/filter/EncodingFilter.java

            }
            return paramMap;
        }
    
        /**
         * Cleans up resources when the filter is destroyed.
         * Currently performs no cleanup operations.
         */
        @Override
        public void destroy() {
            // nothing
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/job/CrawlJobTest.java

                }
            }, "keyMatchHelper");
    
            ComponentUtil.register(new ProcessHelper() {
                @Override
                public int destroyProcess(String sessionId) {
                    // Mock destroy
                    return 0;
                }
            }, "processHelper");
    
            crawlJob.jobExecutor(mockJobExecutor);
            String result = crawlJob.execute();
    
            assertNotNull(result);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 25K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

        }
    
        private static void destroyContainer() {
            TimeoutManager.getInstance().stop();
            synchronized (SingletonLaContainerFactory.class) {
                SingletonLaContainerFactory.destroy();
            }
        }
    
        private static int process(final Options options) {
            final DynamicProperties systemProperties = ComponentUtil.getSystemProperties();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 11K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/http/NtlmHttpFilter.java

            if (LogStream.level > 2) {
                try {
                    Config.store(log, "JCIFS PROPERTIES");
                } catch (final IOException ioe) {}
            }
        }
    
        @Override
        public void destroy() {
        }
    
        /**
         * This method simply calls {@code negotiate( req, resp, false )}
         * and then {@code chain.doFilter}. You can override and call
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 11.3K bytes
    - Viewed (0)
Back to top