Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for maxCount (0.04 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CsvExtractor.java

            final char[] candidates = { ',', '\t', ';', '|' };
            int maxCount = 0;
            char bestDelimiter = ',';
    
            for (final char candidate : candidates) {
                final int count = countOccurrences(line, candidate);
                if (count > maxCount) {
                    maxCount = count;
                    bestDelimiter = candidate;
                }
            }
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  2. scripts/translate.py

            if not lang_path.exists():
                continue
            en_commit_datetime = list(repo.iter_commits(paths=path, max_count=1))[
                0
            ].committed_datetime
            lang_commit_datetime = list(repo.iter_commits(paths=lang_path, max_count=1))[
                0
            ].committed_datetime
            if lang_commit_datetime < en_commit_datetime:
                outdated_paths.append(path)
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 19:05:53 UTC 2025
    - 34.1K bytes
    - Viewed (0)
Back to top