Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for tots (0.07 sec)

  1. src/main/resources/fess_label_fr.properties

    labels.token=Jeton
    labels.synonymFile=Fichier de synonymes
    labels.stopwordsFile=Fichier de mots vides
    labels.stemmerOverrideFile=Fichier de remplacement de racinisation
    labels.mappingFile=Fichier de mappage
    labels.protwordsFile=Fichier de mots de protection
    labels.kuromojiFile=Fichier Kuromoji
    labels.elevateWordFile=Fichier de mots à élever
    labels.badWordFile=Fichier de mots incorrects
    labels.urlExpr=Condition
    labels.boostExpr=Expression de boost
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 49.2K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb1/SmbClientTest.java

            Files.writeString(specialDir.resolve("file_with_underscores.txt"), "underscores");
            Files.writeString(specialDir.resolve("file.multiple.dots.txt"), "dots");
    
            // Setup deeply nested directories
            Path currentDir = deepDir;
            for (int i = 1; i <= 5; i++) {
                currentDir = currentDir.resolve("level" + i);
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Tue Sep 23 06:42:59 UTC 2025
    - 30K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb/SmbClientTest.java

            Files.writeString(specialDir.resolve("file-with-dashes.txt"), "dashes");
            Files.writeString(specialDir.resolve("file_with_underscores.txt"), "underscores");
            Files.writeString(specialDir.resolve("file.multiple.dots.txt"), "dots");
    
            // Empty directory for test_emptyDirectory
            Path emptyDir = publicDir.resolve("empty");
            Files.createDirectory(emptyDir);
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Tue Sep 23 06:42:59 UTC 2025
    - 31.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

         */
        @Min(-1)
        @Max(100000)
        @ValidateTypeFailure
        public Integer purgeUserInfoDay;
    
        /**
         * Bot user agents whose search logs should be purged.
         * Search logs from these bots will be automatically removed.
         */
        @Size(max = 10000)
        public String purgeByBots;
    
        /**
         * Email addresses to receive system notifications.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  5. fess-crawler/src/test/java/org/codelibs/fess/net/protocol/gcs/HandlerTest.java

            assertEquals("my-bucket-name", getField(gcsConn, "bucketName"));
            assertEquals("object.txt", getField(gcsConn, "objectName"));
        }
    
        /**
         * Test URL parsing with dots in bucket name.
         */
        public void test_urlParsing_dotsInBucket() throws Exception {
            URL url = new URL("gcs://my.bucket.name/object.txt");
            Handler handler = new Handler();
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RobotsTxt.java

        /**
         * Returns the most specific directive matching the given user agent.
         * The method finds the longest matching user agent pattern in the directives,
         * excluding the general "*" pattern which matches all bots.
         *
         * @param userAgent the user agent string to match against directives,
         *                 can be null (treated as empty string)
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 18.5K bytes
    - Viewed (0)
  7. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/RobotsTxtHelperTest.java

            // Test TabBot - tab characters should be treated as whitespace
            assertFalse(robotsTxt.allows("/tab1/", "TabBot"));
            assertTrue(robotsTxt.allows("/tab2/", "TabBot"));
    
            // Test bots with special characters - should be normalized to lowercase
            assertFalse(robotsTxt.allows("/trademark/", "Bot™"));
            assertFalse(robotsTxt.allows("/registered/", "Bot®"));
    
            // Test wildcard user-agent
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/JodExtractor.java

            extensionMap.put("wpd", "txt");
            extensionMap.put("txt", "txt");
            extensionMap.put("html", "txt");
            // Spreadsheet Formats
            extensionMap.put("ods", "tsv");
            extensionMap.put("ots", "tsv");
            extensionMap.put("sxc", "tsv");
            extensionMap.put("xls", "tsv");
            extensionMap.put("xlsx", "tsv");
            extensionMap.put("csv", "tsv");
            extensionMap.put("tsv", "tsv");
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 12:19:14 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  9. fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/RobotsTxtTest.java

        }
    
        public void test_complexScenario() {
            // Test complex robots.txt scenario
            RobotsTxt robotsTxt = new RobotsTxt();
    
            // Add directive for all bots
            Directive allBotsDirective = new Directive("*");
            allBotsDirective.addDisallow("/admin/");
            allBotsDirective.addDisallow("/private/");
            allBotsDirective.setCrawlDelay(1);
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:29:22 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  10. fess-crawler/src/test/java/org/codelibs/fess/net/protocol/storage/HandlerTest.java

            assertEquals("my-bucket-name", getField(storageConn, "bucketName"));
            assertEquals("object.txt", getField(storageConn, "objectName"));
        }
    
        /**
         * Test URL parsing with dots in bucket name.
         */
        public void test_urlParsing_dotsInBucket() throws Exception {
            URL url = new URL("storage://my.bucket.name/object.txt");
            Handler handler = new Handler();
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 14.4K bytes
    - Viewed (0)
Back to top