Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for keines (0.23 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/_aws/fess.json

    "jeden", "jeder", "jedes", "jene", "jenem", "jenen", "jener", "jenes", "jetzt", "kann", "kein", "keine", "keinem", "keinen", "keiner", "keines", "können", "könnte", "machen", "man", "manche", "manchem", "manchen", "mancher", "manches", "mein", "meine", "meinem", "meinen", "meiner", "meines", "mit", "muss", "musste", "nach", "nicht", "nichts", "noch", "nun", "nur", "ob", "oder", "ohne", "sehr", "sein", "seine", "seinem", "seinen", "seiner", "seines", "selbst", "sich", "sie", "ihnen", "sind", "so", "solche",...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 14 00:36:40 UTC 2025
    - 117.3K bytes
    - Viewed (0)
  3. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 43.5K bytes
    - Viewed (1)
  4. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/entity/SearchLogEvent.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.entity;
    
    import java.util.Map;
    
    /**
     * Interface for search log events in the Fess search system.
     *
     * This interface defines the contract for search log event objects that can be
     * written to log files or stored in the search index. Implementations include
     * search logs, click logs, favorite logs, and user information logs.
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/cors/CorsHandler.java

    import jakarta.servlet.ServletRequest;
    import jakarta.servlet.ServletResponse;
    
    /**
     * Abstract base class for handling CORS (Cross-Origin Resource Sharing) requests.
     * Provides common CORS header constants and defines the processing interface.
     */
    public abstract class CorsHandler {
    
        /**
         * Creates a new instance of CorsHandler.
         */
        public CorsHandler() {
            // Default constructor
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/io/ByteStreams.java

       *       then sequentially accessing it could result in other processes dying. This is solvable
       *       via madvise(2), but that obviously doesn't exist in java.
       *   <li>Ordinary copy. Kernel copies bytes into a kernel buffer, from a kernel buffer into a
       *       userspace buffer (byte[] or ByteBuffer), then copies them from that buffer into the
       *       destination channel.
       * </ol>
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 31.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/util/InputStreamThread.java

    import org.apache.logging.log4j.Logger;
    
    /**
     * A thread that reads from an input stream line by line and maintains a buffer of recent lines.
     * This class provides functionality to read input stream data asynchronously,
     * optionally process each line with a callback function, and maintain a circular buffer
     * of recent lines for retrieval.
     */
    public class InputStreamThread extends Thread {
        /** Logger instance for this class */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/go/GoForm.java

         * Specifies how many results to display if redirection fails.
         */
        public String num;
    
        /**
         * Sort parameter for error page fallback.
         * Defines the sorting order if redirection fails.
         */
        public String sort;
    
        /**
         * Language parameter for error page fallback.
         * Specifies the language preference if redirection fails.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/accesstoken/CreateForm.java

         * Maximum length is 10000 characters.
         */
        @Size(max = 10000)
        public String token;
    
        /**
         * The permissions associated with this access token.
         * Defines what operations and resources this token can access.
         */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String permissions;
    
        /**
         * The parameter name for the access token.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.4K bytes
    - Viewed (0)
Back to top