Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for meines (0.1 sec)

  1. src/main/resources/fess_message_de.properties

    errors.failed_to_start_job = Fehler beim Starten eines Jobs: {0}.
    errors.failed_to_stop_job = Fehler beim Stoppen eines Jobs: {0}.
    errors.failed_to_download_synonym_file = Fehler beim Herunterladen einer Synonymdatei.
    errors.failed_to_upload_synonym_file = Fehler beim Hochladen einer Synonymdatei.
    errors.failed_to_download_stemmeroverride_file = Fehler beim Herunterladen einer Stemmer-Override-Datei.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_de.properties

    labels.facet_label_title=Label
    labels.facet_timestamp_title=Zeit
    labels.facet_timestamp_1day=Innerhalb von 24 Stunden
    labels.facet_timestamp_1week=Innerhalb einer Woche
    labels.facet_timestamp_1month=Innerhalb eines Monats
    labels.facet_timestamp_1year=Innerhalb eines Jahres
    labels.facet_timestamp_3month=Innerhalb von 3 Monaten
    labels.facet_timestamp_6month=Innerhalb von 6 Monaten
    labels.facet_timestamp_2year=Innerhalb von 2 Jahren
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 46.9K bytes
    - Viewed (1)
  3. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        /**
         * LDAP base DN (Distinguished Name) for user searches.
         * Defines the root of the LDAP directory tree for user lookups.
         */
        @Size(max = 1000)
        public String ldapBaseDn;
    
        /**
         * LDAP filter for finding user accounts.
         * Defines the search filter used to locate user accounts in LDAP.
         */
        @Size(max = 1000)
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java

            this.commandOutputEncoding = commandOutputEncoding;
        }
    
        /**
         * Sets the maximum number of output lines to process.
         * @param maxOutputLine The maximum output lines to set.
         */
        public void setMaxOutputLine(final int maxOutputLine) {
            this.maxOutputLine = maxOutputLine;
        }
    
        /**
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 12:19:14 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  5. LICENSE

    Each licensee is addressed as "you".
    
      A "library" means a collection of software functions and/or data
    prepared so as to be conveniently linked with application programs
    (which use some of those functions and data) to form executables.
    
      The "Library", below, refers to any such software library or work
    which has been distributed under these terms.  A "work based on the
    Library" means either the Library or any derivative work under
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Mon Jan 18 20:25:38 UTC 2016
    - 25.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java

                while ((line = reader.readLine()) != null) {
                    // Remove comments
                    final String replacedLine = line.replaceAll("#.*$", StringUtil.EMPTY).trim();
    
                    // Skip empty lines or comment lines
                    if (replacedLine.length() == 0) {
                        if (updater != null) {
                            updater.write(line);
                        }
                        continue;
                    }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 07:09:00 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/opensearch/extension/analysis/NGramSynonymTokenizer.java

                this.output = output;
                this.seq = 0; // zero for seq means that this token is the original of synonyms
            }
    
            public MyToken(final String word, final int startOffset, final int endOffset, final int posInc) {
                this(word, startOffset, endOffset, posInc, Integer.MAX_VALUE); // Integer.MAX_VALUE for seq means unused
            }
    
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Sat Mar 15 06:51:20 UTC 2025
    - 17K bytes
    - Viewed (0)
  8. ADDING_NEW_LANGUAGE.md

    src/main/resources/
    ├── fess_label.properties           # Base English labels (fallback)
    ├── fess_label_[locale].properties  # Language-specific labels (~1,056 lines)
    ├── fess_message.properties         # Base English messages (fallback)
    └── fess_message_[locale].properties # Language-specific messages (~200 lines)
    ```
    
    ### Naming Convention
    
    - **Language only**: `fess_label_en.properties`, `fess_label_ja.properties`
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 11:36:30 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/RobotsTxtHelper.java

                                robotsTxt.addDirective(currentDirective);
                            }
                            // Add to current list - multiple consecutive User-agent lines
                            // form a group and subsequent rules apply to all of them
                            currentDirectiveList.add(currentDirective);
                            continue;
                        }
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Fri Nov 14 12:52:01 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  10. LICENSE

          "Legal Entity" shall mean the union of the acting entity and all
          other entities that control, are controlled by, or are under common
          control with that entity. For the purposes of this definition,
          "control" means (i) the power, direct or indirect, to cause the
          direction or management of such entity, whether by contract or
          otherwise, or (ii) ownership of fifty percent (50%) or more of the
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Fri Apr 18 13:54:00 UTC 2025
    - 11.1K bytes
    - Viewed (0)
Back to top