Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 91 - 100 of 229 for benchmarks (0.06 seconds)

  1. android/guava/src/com/google/common/primitives/UnsignedBytes.java

        checkArgument(
            radix >= Character.MIN_RADIX && radix <= Character.MAX_RADIX,
            "radix (%s) must be between Character.MIN_RADIX and Character.MAX_RADIX",
            radix);
        // Benchmarks indicate this is probably not worth optimizing.
        return Integer.toString(toUnsignedInt(x), radix);
      }
    
      /**
       * Returns the unsigned {@code byte} value represented by the given decimal string.
       *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 23 16:38:16 GMT 2026
    - 21K bytes
    - Click Count (0)
  2. guava/src/com/google/common/collect/Ordering.java

       * than this method, and this method in turn generally performs better than copying the list and
       * calling {@link Collections#sort(List)}.
       */
      // TODO(kevinb): rerun benchmarks including new options
      public <E extends T> List<E> sortedCopy(Iterable<E> elements) {
        @SuppressWarnings("unchecked") // does not escape, and contains only E's
        E[] array = (E[]) Iterables.toArray(elements);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 39.4K bytes
    - Click Count (0)
  3. cmd/erasure-decode_test.go

    		}
    		got := buf.Bytes()
    		if !bytes.Equal(expected, got) {
    			t.Fatalf("read data is different from what was expected, offset=%d length=%d", offset, readLen)
    		}
    		buf.Reset()
    	}
    }
    
    // Benchmarks
    
    func benchmarkErasureDecode(data, parity, dataDown, parityDown int, size int64, b *testing.B) {
    	setup, err := newErasureTestSetup(b, data, parity, blockSizeV2)
    	if err != nil {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 21K bytes
    - Click Count (0)
  4. docs/zh/docs/alternatives.md

    /// check | **FastAPI** 推荐将其作为:
    
    运行 **FastAPI** 应用的主要 Web 服务器。
    
    你也可以使用 `--workers` 命令行选项以获得异步的多进程服务器。
    
    更多细节见[部署](deployment/index.md)一节。
    
    ///
    
    ## 基准与速度 { #benchmarks-and-speed }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 20.1K bytes
    - Click Count (0)
  5. cmd/object-api-multipart_test.go

    				}
    			}
    		})
    	}
    }
    
    // Benchmarks for ObjectLayer.PutObjectPart().
    // The intent is to benchmark PutObjectPart for various sizes ranging from few bytes to 100MB.
    // Also each of these Benchmarks are run both Erasure and FS backends.
    
    // BenchmarkPutObjectPart5MbFS - Benchmark FS.PutObjectPart() for object size of 5MB.
    func BenchmarkPutObjectPart5MbFS(b *testing.B) {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 89.4K bytes
    - Click Count (0)
  6. TESTING.asciidoc

    you should also run macrobenchmarks. We maintain a macrobenchmarking tool
    called https://github.com/elastic/rally[Rally]
    which you can use to measure the performance impact. It comes with a set of
    default benchmarks that we also
    https://elasticsearch-benchmarks.elastic.co/[run every night]. To get started,
    please see https://esrally.readthedocs.io/en/stable/[Rally's documentation].
    
    == Test doc builds
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Jun 07 13:55:20 GMT 2021
    - 32.5K bytes
    - Click Count (0)
  7. docs/fr/docs/alternatives.md

    Pour plus de détails, consultez la section [Déploiement](deployment/index.md).
    
    ///
    
    ## Benchmarks et vitesse { #benchmarks-and-speed }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 26.6K bytes
    - Click Count (0)
  8. docs/en/docs/async.md

    ### Is concurrency better than parallelism? { #is-concurrency-better-than-parallelism }
    
    Nope! That's not the moral of the story.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 23.4K bytes
    - Click Count (0)
  9. docs/zh-hant/docs/alternatives.md

    /// check | **FastAPI** 建議用作
    
    執行 **FastAPI** 應用的主要網頁伺服器。
    
    你也可以使用 `--workers` 命令列選項,取得非同步的多製程伺服器。
    
    更多細節請見[部署](deployment/index.md)章節。
    
    ///
    
    ## 效能與速度 { #benchmarks-and-speed }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 20K bytes
    - Click Count (0)
  10. docs/de/docs/alternatives.md

    Weitere Details finden Sie im Abschnitt [Deployment](deployment/index.md).
    
    ///
    
    ## Benchmarks und Geschwindigkeit { #benchmarks-and-speed }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 26K bytes
    - Click Count (0)
Back to Top