Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for eden (0.03 sec)

  1. docs/de/README.md

    ![Administrationsoberfläche](https://fess.codelibs.org/_images/fess_admin_dashboard.png)
    
    Sie können in der Administrationsoberfläche (Web, Datei, Datenspeicher) Crawling-Ziele in den Crawler-Konfigurationsseiten registrieren und den Crawler manuell auf der [Scheduler-Seite](https://fess.codelibs.org/15.3/admin/scheduler-guide.html) starten.
    
    ## Migration von einem anderen Suchanbieter
    
    Bitte lesen Sie [MIGRATION.md](MIGRATION.md).
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Tue Nov 11 22:42:32 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/ArchiveExtractorErrorHandlingTest.java

            assertFalse(result.getContent().isEmpty());
        }
    
        /**
         * Test that ZipExtractor handles mixed valid and invalid entries gracefully.
         * Should continue processing valid entries even when some fail.
         */
        public void test_ZipExtractor_mixedEntries_continuesProcessing() throws IOException {
            // Create a ZIP with one valid text file
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/processor/impl/NullResponseProcessorTest.java

        public void test_processWithNullResponseData() {
            // Test process method with null ResponseData
            NullResponseProcessor processor = new NullResponseProcessor();
    
            // Execute - should not throw any exception even with null
            processor.process(null);
        }
    
        public void test_processWithEmptyResponseData() {
            // Test process method with empty ResponseData
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:29:22 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  4. src/main/resources/fess_label_nl.properties

    labels.index_form_option_btn=Opties
    labels.index_help=Help
    labels.search_options=Zoekopties
    labels.search_options_close=Sluiten
    labels.search_options_clear=Wissen
    labels.search_cache_msg=Dit is een cache van {0}. Het is een momentopname van de pagina zoals deze verscheen op {1}.
    labels.search_unknown=Onbekend
    labels.footer_back_to_top=Terug naar boven
    labels.header_brand_name=Fess
    labels.header_form_option_btn=Opties
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 46.1K bytes
    - Viewed (1)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactory.java

                } catch (final Exception e) {
                    logger.warn("Error occurred in onDestroy listener for component: {}", componentName, e);
                    // Continue with destruction even if listener fails
                }
            }
    
            // Close the object if it implements AutoCloseable or Closeable
            final T obj = p.getObject();
            if (obj instanceof AutoCloseable) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactoryTest.java

            // destroyObject should continue and close the resource even if listener throws
            factoryWithListener.destroyObject(pooledObject);
    
            // Resource should still be closed despite listener exception
            assertTrue("Component should be closed even if listener throws", component.isClosed());
        }
    
        /**
         * Test destroyObject with AutoCloseable component
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 20 13:07:01 UTC 2025
    - 36.7K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java

         * time they are accessed. The value "never" should be used to describe
         * archived URLs.
         *
         * Please note that the value of this tag is considered a hint and not a
         * command. Even though search engine crawlers may consider this information
         * when making decisions, they may crawl pages marked "hourly" less
         * frequently than that, and they may crawl pages marked "yearly" more
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:34:36 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  8. src/main/resources/fess_message_tr.properties

    errors.design_editor_disabled = Bu özellik devre dışı.
    errors.not_found_on_file_system = Bulunamadı. Sebep: {0}
    errors.could_not_open_on_system = {0} açılamadı.<br>Lütfen dosyanın bir uygulamayla ilişkilendirilip ilişkilendirilmediğini kontrol edin.
    errors.result_size_exceeded = Daha fazla sonuç görüntülenemiyor.
    errors.target_file_does_not_exist = {0} dosyası mevcut değil.
    errors.failed_to_delete_file = {0} dosyası silinemedi.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 07 21:12:48 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  9. fess-crawler/src/test/java/org/codelibs/fess/crawler/processor/impl/SitemapsResponseProcessorTest.java

                fail("Should not throw exception in test setup");
            }
    
            // Execute and verify
            try {
                processor.process(responseData);
                fail("Should throw ChildUrlsException even with empty set");
            } catch (ChildUrlsException e) {
                Set<RequestData> childUrls = e.getChildUrlList();
                assertNotNull(childUrls);
                assertEquals(0, childUrls.size());
            }
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:29:22 UTC 2025
    - 12K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/suggest/SuggesterResourceLoadingTest.java

                assertEquals("Braces should be balanced", openBraces, closeBraces);
            }
        }
    
        /**
         * Test that InputStream is properly closed even when exception occurs.
         * Verifies try-with-resources cleanup behavior.
         */
        @Test
        public void testResourceLoading_exceptionHandling() {
            try {
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 9.6K bytes
    - Viewed (0)
Back to top