Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for stkm (0.01 seconds)

  1. scripts/docs.py

                stem = py_file.stem
                for suffix in ("_py39", "_py310"):
                    if suffix in stem:
                        an_stem = stem.replace(suffix, f"_an{suffix}", 1)
                        break
                else:
                    an_stem = f"{stem}_an"
                counterpart = full_path_str.replace(f"/{stem}.", f"/{an_stem}.")
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 17:46:10 GMT 2026
    - 25.4K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

    /**
     * Manages a dictionary file for stemmer overrides.
     * This class handles reading, parsing, and updating files that contain
     * stemmer override rules, where each rule maps an input word to an
     * output stem. The file format is expected to be `input => output`.
     *
     * The class provides methods for retrieving, adding, updating, and
     * deleting stemmer override items, as well as reloading the dictionary
     * from its source file.
     */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 05:56:45 GMT 2025
    - 14.2K bytes
    - Click Count (0)
Back to Top