Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for dieses (0.06 sec)

  1. src/main/resources/fess_message_de.properties

    errors.design_file_name_is_invalid = Der Dateiname ist ungültig.
    errors.design_file_is_unsupported_type = Dieser Dateityp wird nicht unterstützt.
    errors.failed_to_create_crawling_config_at_wizard = Fehler beim Erstellen einer Crawling-Konfiguration in einem Assistenten.
    errors.design_editor_disabled = Diese Funktion ist deaktiviert.
    errors.not_found_on_file_system = Nicht gefunden. Ursache: {0}
    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. android/guava/src/com/google/common/cache/CacheStats.java

       * value can result in multiple misses, all returning the results of a single cache load
       * operation.
       */
      public long missCount() {
        return missCount;
      }
    
      /**
       * Returns the ratio of cache requests which were misses. This is defined as {@code missCount /
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  3. maven-tests/mvnw

    maven-mvnd-*) MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/ ;;
    *) MVN_CMD="mvn${0##*/mvnw}" _MVNW_REPO_PATTERN=/org/apache/maven/ ;;
    esac
    
    # apply MVNW_REPOURL and calculate MAVEN_HOME
    # maven home pattern: ~/.m2/wrapper/dists/{apache-maven-<version>,maven-mvnd-<version>-<platform>}/<hash>
    [ -z "${MVNW_REPOURL-}" ] || distributionUrl="$MVNW_REPOURL$_MVNW_REPO_PATTERN${distributionUrl#*"$_MVNW_REPO_PATTERN"}"
    distributionUrlName="${distributionUrl##*/}"
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jul 12 12:05:57 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/job/SuggestJob.java

            cmdList.add("-Dfess." + getExecuteType() + ".process=true");
            if (logFilePath == null) {
                final String value = System.getProperty("fess.log.path");
                logFilePath = value != null ? value : new File(targetDir, "logs").getAbsolutePath();
            }
            cmdList.add("-Dfess.log.path=" + logFilePath);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_es.properties

    labels.facet_timestamp_1day=Últimas 24 horas
    labels.facet_timestamp_1week=Última semana
    labels.facet_timestamp_1month=Último mes
    labels.facet_timestamp_1year=Último año
    labels.facet_timestamp_3month=Últimos 3 meses
    labels.facet_timestamp_6month=Últimos 6 meses
    labels.facet_timestamp_2year=Últimos 2 años
    labels.facet_timestamp_3year=Últimos 3 años
    labels.facet_contentLength_title=Tamaño
    labels.facet_contentLength_10k=&nbsp; - 10KB
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java

            cmdList.add("-Dfess." + getExecuteType() + ".process=true");
            if (logFilePath == null) {
                final String value = System.getProperty("fess.log.path");
                logFilePath = value != null ? value : new File(targetDir, "logs").getAbsolutePath();
            }
            cmdList.add("-Dfess.log.path=" + logFilePath);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_de.properties

    labels.search_list_button_delete=Löschen
    labels.search_list_delete_confirmation=Sind Sie sicher, dass Sie löschen möchten?
    labels.search_list_button_delete_all=Alle mit dieser Abfrage löschen
    labels.search_list_delete_all_confirmation=Sind Sie sicher, dass Sie alle mit dieser Abfrage löschen möchten?
    labels.search_list_button_cancel=Abbrechen
    labels.failure_url_configuration=Fehler-URL
    labels.failure_url_search_url=URL
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 43.5K bytes
    - Viewed (1)
  8. guava/src/com/google/common/collect/RegularImmutableMap.java

      /**
       * Closed addressing tends to perform well even with high load factors. Being conservative here
       * ensures that the table is still likely to be relatively sparse (hence it misses fast) while
       * saving space.
       */
      @VisibleForTesting static final double MAX_LOAD_FACTOR = 1.2;
    
      /**
       * Maximum allowed false positive probability of detecting a hash flooding attack given random
       * input.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/job/CrawlJob.java

            addFessCustomSystemProperties(cmdList, fessConfig.getJobSystemPropertyFilterPattern());
            addSystemProperty(cmdList, Constants.FESS_CONF_PATH, null, null);
            cmdList.add("-Dfess." + getExecuteType() + ".process=true");
            cmdList.add("-Dfess.log.path=" + (logFilePath != null ? logFilePath : systemHelper.getLogFilePath()));
            addSystemProperty(cmdList, "fess.log.name", getLogName("fess"), getLogName(StringUtil.EMPTY));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/Joiner.java

    import java.util.Arrays;
    import java.util.Iterator;
    import java.util.List;
    import java.util.Map;
    import java.util.Map.Entry;
    import org.jspecify.annotations.Nullable;
    
    /**
     * An object which joins pieces of text (specified as an array, {@link Iterable}, varargs or even a
     * {@link Map}) with a separator. It either appends the results to an {@link Appendable} or returns
     * them as a {@link String}. Example:
     *
     * {@snippet :
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Apr 14 15:16:19 UTC 2025
    - 21K bytes
    - Viewed (0)
Back to top