Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 11 for stats (0.007 sec.)
- 27.4. Python プロファイラ — Python 3.6.5 ドキュメント 14367
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
プロファイラ ¶ ソースコード: Lib/profile.py と Lib/pstats.py 27.4.1. プロファイラとは ¶ cProfile と profile...
実行にどれだけ時間がかかったかという統計情報です。 pstats モジュールを使ってこの統計情報をフォーマットし表示...
t re cProfile . run ( 're.compile("foo|bar")' , 'restats' ) pstats.Stats クラスはファイルからプロファイルの...
の代わりにファイルに書き出します。 -s は出力を sort_stats() で出力をソートする値を指定します。 -o がない場合...
- https://man.plustar.jp/python/library/profile.html - [similar]
- 27.7. tracemalloc --- メモリ割り当ての追跡 — Python 3.6.5 ドキュメント 9459
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
... snapshot = tracemalloc . take_snapshot () top_stats = snapshot . statistics ( 'lineno' ) print ( "[ To...
p 10 ]" ) for stat in top_stats [: 10 ]: print ( stat ) Python テストスイートの出力...
... snapshot2 = tracemalloc . take_snapshot () top_stats = snapshot2 . compare_to ( snapshot1 , 'lineno' )...
print ( "[ Top 10 differences ]" ) for stat in top_stats [: 10 ]: print ( stat ) Python テストスイートのテス...
- https://man.plustar.jp/python/library/tracemalloc.html - [similar]
- 18.2. ssl --- ソケットオブジェクトに対する TLS/SSL ラッパー — Python 3.6.5 ドキ... 8464
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
メソッドと属性を持っています: SSLContext. cert_store_stats ( ) ¶ ロードされた X.509 証明書の数、CA 証明書で活...
ったコンテキストでの例です: >>> context . cert_store_stats () {'crl': 0, 'x509_ca': 1, 'x509': 2} バージョン...
session 引数が追加されました。 SSLContext. session_stats ( ) ¶ Get statistics about the SSL sessions create...
e session cache since the context was created: >>> stats = context . session_stats () >>> stats [ 'hits' ],...
- https://man.plustar.jp/python/library/ssl.html - [similar]
- 29.11. gc --- ガベージコレクタインターフェース — Python 3.6.5 ドキュメント 8357
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
には、戻り値のリスト自身は含まれていません。 gc. get_stats ( ) ¶ インタプリタが開始してからの、世代ごと回収統...
_debug() に指定することのできる定数です: gc. DEBUG_STATS ¶ 検出中に統計情報を出力します。この情報は、検出頻...
- https://man.plustar.jp/python/library/gc.html - [similar]
- 27. デバッグとプロファイル — Python 3.6.5 ドキュメント 8321
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
ファレンスマニュアル -- profile と cProfile 27.4.4. Stats クラス 27.4.5. 決定論的プロファイリングとは 27.4.6...
- https://man.plustar.jp/python/library/debug.html - [similar]
- 31.5. importlib --- import の実装 — Python 3.6.5 ドキュメント 8321
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
、バイトコード特有の API は公開されていません。 path_stats ( path ) ¶ 指定されたパスについてのメタデータを含む...
ージョン 3.3 で非推奨: このメソッドは廃止され、 path_stats() が推奨されます。このモジュールを実装する必要はあ...
path がパッケージを表すとき True を返します。 path_stats ( path ) ¶ importlib.abc.SourceLoader.path_stats()...
- https://man.plustar.jp/python/library/importlib.html - [similar]
- 26.1. typing --- 型ヒントのサポート — Python 3.6.5 ドキュメント 8321
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
せます。使い方は次のようになります: class Starship : stats : ClassVar [ Dict [ str , int ]] = {} # class vari...
ん: enterprise_d = Starship ( 3000 ) enterprise_d . stats = {} # Error, setting class variable on instance S...
tarship . stats = {} # This is OK バージョン 3.5.3 で追加. typing....
- https://man.plustar.jp/python/library/typing.html - [similar]
- What's New In Python 3.4 — Python 3.6.5 ドキュメント 8055
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
...
by Brian Thorne in bpo-12428 .) gc ¶ 新規関数 get_stats() は、インタプリタが開始してからの、世代ごと回収統...
bpo-18143 .) SSLContext の新規メソッド cert_store_stats() はロードされた X.509 証明書、 X.509 CA 証明書、証...
ect shelve shutil smtpd smtplib socket sqlite3 ssl stat struct subprocess sunau sys tarfile textwrap thread...
- https://man.plustar.jp/python/whatsnew/3.4.html - [similar]
- What's New in Python 2.5 — Python 3.6.5 ドキュメント 8019
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
...
また、プロファイラによる計測データの解析のための pstats モジュールが、 Stats コンストラクタの stream 引数に...
- https://man.plustar.jp/python/whatsnew/2.5.html - [similar]
- What's New In Python 3.3 — Python 3.6.5 ドキュメント 8019
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
...
ードファイルとしての importlib.abc.SourceLoader.path_stats() によりコンパイル時点の修正時刻とソースファイルサ...
gnal smtpd smtplib socket socketserver sqlite3 ssl stat struct subprocess sys tarfile tempfile textwrap thr...
- https://man.plustar.jp/python/whatsnew/3.3.html - [similar]