Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 74 for maximize (0.04 sec)

  1. guava/src/com/google/common/math/PairedStats.java

       *
       * <p>The corresponding root-mean-square error in {@code x} as a function of {@code y} is a
       * fraction {@code sqrt(1/(R*R) - 1)} of the population standard deviation of {@code x}. This fit
       * does not normally minimize that error: to do that, you should swap the roles of {@code x} and
       * {@code y}.
       *
       * <h3>Non-finite values</h3>
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/KotlinSourceModernTest.kt

        val urls: MutableIterator<String> = cache.urls()
        val writeAbortCount: Int = cache.writeAbortCount()
        val writeSuccessCount: Int = cache.writeSuccessCount()
        val size: Long = cache.size()
        val maxSize: Long = cache.maxSize()
        cache.flush()
        cache.close()
        val directory: File = cache.directory
        val networkCount: Int = cache.networkCount()
        val hitCount: Int = cache.hitCount()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jun 21 20:36:35 UTC 2025
    - 46.5K bytes
    - Viewed (0)
  3. src/main/resources/fess_label_fr.properties

    labels.errorCountMax=Nombre d'erreurs maximum
    labels.errorCountMin=Nombre d'erreurs minimum
    labels.facet=Facette
    labels.geo=Géo
    labels.groups=Groupes
    labels.hash=Hachage
    labels.kuromojiFile=Fichier Kuromoji
    labels.maxSize=Taille maximale
    labels.order=Ordre
    labels.purgeSuggestSearchLogDay=Supprimer les anciennes informations de suggestion
    labels.q=Requête
    labels.roles=Rôles
    labels.suggestSearchLog=Journal de recherche de suggestions
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.6K bytes
    - Viewed (0)
  4. src/main/resources/fess_label_nl.properties

    labels.errorCountMax=Maximaal aantal fouten
    labels.errorCountMin=Minimaal aantal fouten
    labels.facet=Facet
    labels.geo=Geo
    labels.groups=Groepen
    labels.hash=Hash
    labels.kuromojiFile=Kuromoji-bestand
    labels.maxSize=Maximale grootte
    labels.order=Volgorde
    labels.purgeSuggestSearchLogDay=Vorige suggestie-informatie verwijderen
    labels.q=Query
    labels.roles=Rollen
    labels.suggestSearchLog=Suggestie zoeklogboek
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 42.8K bytes
    - Viewed (1)
  5. src/main/resources/fess_label_en.properties

    labels.crudMode=Mode
    labels.errorCountMax=Max Error Count
    labels.errorCountMin=Min Error Count
    labels.facet=Facet
    labels.geo=Geo
    labels.groups=Groups
    labels.hash=Hash
    labels.kuromojiFile=Kuromoji File
    labels.maxSize=Max Size
    labels.order=Order
    labels.purgeSuggestSearchLogDay=Delete old suggest info
    labels.q=Query
    labels.roles=Roles
    labels.suggestSearchLog=Suggest Search Log
    labels.suggestWord=Suggest Word
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_zh_TW.properties

    labels.crawler=爬蟲
    labels.crudMode=模式
    labels.errorCountMax=最大錯誤數
    labels.errorCountMin=最小錯誤數
    labels.facet=分面
    labels.geo=地理
    labels.groups=組
    labels.hash=哈希
    labels.kuromojiFile=Kuromoji檔案
    labels.maxSize=最大大小
    labels.order=順序
    labels.purgeSuggestSearchLogDay=刪除以前的建議資訊
    labels.q=查詢
    labels.roles=角色
    labels.suggestSearchLog=建議搜尋日誌
    labels.suggestWord=建議詞
    labels.targetLabel=標籤
    labels.term=搜尋詞
    labels.fields=欄位
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Iterables.java

        // * The element with (index == from) should be kept.
        // * Everything with (index > from) has not been checked yet.
    
        // Check from the end of the list backwards (minimize expected cost of
        // moving elements when remove() is called). Stop before 'from' because
        // we already know that should be kept.
        for (int n = list.size() - 1; n > from; n--) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 43.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/io/ByteStreams.java

        int initialBufferSize = min(BUFFER_SIZE, max(128, Integer.highestOneBit(totalLen) * 2));
        // Starting with an 8k buffer, double the size of each successive buffer. Smaller buffers
        // quadruple in size until they reach 8k, to minimize the number of small reads for longer
        // streams. Buffers are retained in a deque so that there's no copying between buffers while
        // reading and so all of the bytes in each new allocated buffer are available for reading from
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 31.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ImmutableSet.java

      // The suppression also covers the cast to E[], discussed below.
      // In the backport, we don't have those cases and thus don't need this suppression.
      // We keep it to minimize diffs.
      @SuppressWarnings("unchecked")
      public static <E> ImmutableSet<E> copyOf(Collection<? extends E> elements) {
        /*
         * TODO(lowasser): consider checking for ImmutableAsList here
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 35.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

       * #aboutToAcquire(CycleDetectingLock)} and {@link #lockStateChanged(CycleDetectingLock)}.
       */
      // This is logically a Set, but an ArrayList is used to minimize the amount
      // of allocation done on lock()/unlock().
      private static final ThreadLocal<ArrayList<LockGraphNode>> acquiredLocks =
          new ThreadLocal<ArrayList<LockGraphNode>>() {
            @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 18 15:05:43 UTC 2025
    - 35.9K bytes
    - Viewed (0)
Back to top