Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 208 of 208 for BenchmarkX (0.12 sec)

  1. docs/ko/docs/async.md

    그리고 **FastAPI**를 사용함으로써 동일한 성능을 낼 수 있습니다.
    
    또한 병렬성과 비동기성을 동시에 사용할 수 있기 때문에, 대부분의 테스트가 완료된 NodeJS 프레임워크보다 더 높은 성능을 얻고 C에 더 가까운 컴파일 언어인 Go와 동등한 성능을 얻을 수 있습니다<a href="https://www.techempower.com/benchmarks/#section=data-r17&hw=ph&test=query&l=zijmkf-1" class="external-link" target="_blank">(모두 Starlette 덕분입니다)</a>.
    
    ### 동시성이 병렬성보다 더 나은가?
    
    그렇지 않습니다! 그것이 이야기의 교훈은 아닙니다.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  2. RELEASE.md

    *   Python 3.3+ support via changes to python codebase and ability to specify
        python version via ./configure.
    
    *   Some improvements to GPU performance and memory usage:
        [convnet benchmarks](https://github.com/soumith/convnet-benchmarks/issues/66)
        roughly equivalent with native cudnn v2 performance. Improvements mostly due
        to moving to 32-bit indices, faster shuffling kernels. More improvements to
        come in later releases.
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Tue Oct 22 14:33:53 UTC 2024
    - 735.3K bytes
    - Viewed (0)
  3. docs/ja/docs/async.md

    そして、それは**FastAPI**で得られるパフォーマンスと同じレベルです。
    
    また、並列処理と非同期処理を同時に実行できるため、テスト済みのほとんどのNodeJSフレームワークよりも高く、Goと同等のパフォーマンスが得られます。Goは、Cに近いコンパイル言語です <a href="https://www.techempower.com/benchmarks/#section=data-r17&hw=ph&test=query&l=zijmkf-1" class="external-link" target="_blank">(Starletteに感謝します)</a>。
    
    ### 並行は並列よりも優れていますか?
    
    いや!それはこの話の教訓ではありません。
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. docs/ja/docs/alternatives.md

    Gunicornと組み合わせることで、非同期でマルチプロセスなサーバーを持つことがきます。
    
    詳細は[デプロイ](deployment/index.md){.internal-link target=_blank}の項目で確認してください。
    
    ///
    
    ## ベンチマーク と スピード
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  5. src/bytes/bytes_test.go

    			if r != needle {
    				rs = append(rs, rune(r))
    			}
    		}
    	}
    	// Shuffle the runes so that they are not in descending order.
    	// The sort is deterministic since this is used for benchmarks,
    	// which need to be repeatable.
    	rr := rand.New(rand.NewSource(1))
    	rr.Shuffle(len(rs), func(i, j int) {
    		rs[i], rs[j] = rs[j], rs[i]
    	})
    	uchars := string(rs)
    
    	return func(b *testing.B, n int) {
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Aug 19 19:09:04 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  6. cmd/test-utils_test.go

    // This makes it easy to run the TestServer from any of the tests.
    // Using this interface, functionalities to be used in tests can be
    // made generalized, and can be integrated in benchmarks/unit tests/go check suite tests.
    type TestErrHandler interface {
    	testing.TB
    }
    
    const (
    	// ErasureSDStr is the string which is used as notation for Single node ObjectLayer in the unit tests.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 01 22:13:18 UTC 2024
    - 77K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.13.md

    * Add scheduler benchmark tests for PodAffinity and NodeAffinity. ([#69898](https://github.com/kubernetes/kubernetes/pull/69898), [@Huang-Wei](https://github.com/Huang-Wei))
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg syscall, type SysProcAttr struct
    pkg syscall, type Timespec struct
    pkg syscall, type Timeval struct
    pkg syscall, var ForkLock sync.RWMutex
    pkg syscall, var SocketDisableIPv6 bool
    pkg testing, func Benchmark(func(*B)) BenchmarkResult
    pkg testing, func Main(func(string, string) (bool, error), []InternalTest, []InternalBenchmark, []InternalExample)
    pkg testing, func RunBenchmarks(func(string, string) (bool, error), []InternalBenchmark)
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top