Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for buat (0.06 sec)

  1. src/main/resources/fess_label_id.properties

    labels.interval_time=Interval
    labels.millisec=milidetik
    labels.permissions=Izin
    labels.virtual_hosts=Virtual Host
    labels.virtual_host=Virtual Host
    labels.label_type=Label
    labels.file_crawling_button_create=Buat
    labels.file_crawling_button_create_job=Buat Job Baru
    labels.web_crawling_configuration=Perayapan Web
    labels.web_crawling_title_details=Konfigurasi Perayapan Web
    labels.included_urls=URL yang Disertakan
    labels.excluded_urls=URL yang Dikecualikan
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 45.2K bytes
    - Viewed (0)
  2. src/main/assemblies/files/fess.in.bat

    Shinsuke Sugaya <******@****.***> 1764215339 +0900
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 27 03:48:59 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         */
        String getDomainTitle();
    
        /**
         * Get the value for the key 'search_engine.type'. <br>
         * The value is, e.g. default <br>
         * comment: The type of search engine backend (e.g., default, opensearch).
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 525.7K bytes
    - Viewed (2)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

         */
        String getLastaDiSmartDeployMode();
    
        /**
         * Get the value for the key 'development.here'. <br>
         * The value is, e.g. true <br>
         * comment: Is development environment here? (used for various purpose, you should set false if unknown)
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 27 07:01:25 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  5. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/MarkdownExtractorTest.java

            // Verify no front matter metadata
            assertNull(extractData.getValues("frontmatter.title"));
            assertNull(extractData.getValues("frontmatter.author"));
    
            // But content should still be present
            final String content = extractData.getContent();
            assertTrue(content.contains("Introduction"));
        }
    
        public void test_getText_withoutHeadings() {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/RobotsTxtHelperTest.java

            // Test EndPathBot - end-of-path ($) patterns
            // Disallow: /fish$ - should block exactly /fish but not /fishing
            assertFalse(robotsTxt.allows("/fish", "EndPathBot"));
            assertTrue(robotsTxt.allows("/fishing", "EndPathBot"));
            assertTrue(robotsTxt.allows("/fish/", "EndPathBot"));
    
            // Disallow: /temp$ but Allow: /fishing
            assertFalse(robotsTxt.allows("/temp", "EndPathBot"));
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  7. README.md

    Fess is based on [OpenSearch](https://github.com/opensearch-project/OpenSearch), but knowledge/experience about OpenSearch is _not_ required. Fess provides an easy to use Administration GUI to configure the system via your browser.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 00:28:33 UTC 2025
    - 7.8K bytes
    - Viewed (2)
  8. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

            }
            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 })
        public HtmlResponse reloadDocIndex(final ActionForm form) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  9. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/AbstractExtractorTest.java

         */
        public void test_validateInputStream_acceptsEmptyStream() {
            final InputStream emptyStream = new ByteArrayInputStream(new byte[0]);
    
            // Should not throw exception for empty but non-null stream
            extractor.testValidateInputStream(emptyStream);
        }
    
        /**
         * Test that CrawlerSystemException is the correct exception type.
         */
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  10. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/JsonExtractorTest.java

            CloseableUtil.closeQuietly(in);
    
            // Verify no metadata extracted
            assertNull(extractData.getValues("title"));
            assertNull(extractData.getValues("author"));
    
            // But content should still be present
            final String content = extractData.getContent();
            assertTrue(content.contains("Sample Document"));
        }
    
        public void test_maxDepth() {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 03:46:53 UTC 2025
    - 4.7K bytes
    - Viewed (0)
Back to top