並び順

ブックマーク数

期間指定

  • から
  • まで

121 - 129 件 / 129件

新着順 人気順

gcの検索結果121 - 129 件 / 129件

  • Exploring ZGC over Java 11~15

    Exploring ZGC over Java 11~15 Burikaigi2021

      Exploring ZGC over Java 11~15
    • Treadmill

      Treadmill is a "real-time" in-place garbage collection algorithm designed by H. Baker [0]. It is simple, elegant, efficient and surprisingly little known. Speaking of which, Mr. Baker's Wikipedia page rivals one for an obscure Roman decadent poet in scarcity of information. The general situation of garbage collection is that there is a program (called a mutator in this case) that allocates objects

        Treadmill
      • GitHub - Shopify/autotuner: Get suggestions to tune Ruby's garbage collector

        You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

          GitHub - Shopify/autotuner: Get suggestions to tune Ruby's garbage collector
        • Yusuke Endoh on Twitter: "とてもむずかしかったRubyのバグのメモ FreeBSDでopen-uriのテストが「期待値は"2009-08-07"、実際の値は"2009-01-07"」といって失敗しはじめた →タイムゾーンデータベースの異常を疑うが、Fre… https://t.co/6piLfzbyX2"

          とてもむずかしかったRubyのバグのメモ FreeBSDでopen-uriのテストが「期待値は"2009-08-07"、実際の値は"2009-01-07"」といって失敗しはじめた →タイムゾーンデータベースの異常を疑うが、Fre… https://t.co/6piLfzbyX2

            Yusuke Endoh on Twitter: "とてもむずかしかったRubyのバグのメモ FreeBSDでopen-uriのテストが「期待値は"2009-08-07"、実際の値は"2009-01-07"」といって失敗しはじめた →タイムゾーンデータベースの異常を疑うが、Fre… https://t.co/6piLfzbyX2"
          • OpenJDK 16のShenandoahガベージコレクション:並行参照処理 - 赤帽エンジニアブログ

            Red Hat で Solution Architect として OpenJDK を担当している伊藤ちひろ(@chiroito)です。 この記事は、Red Hat Developerのブログ記事、Shenandoah garbage collection in OpenJDK 16: Concurrent reference processing | Red Hat Developer の翻訳記事です。 OpenJDKにおけるShenandoahガベージコレクション (GC) プロジェクトの主の動機は、ガベージコレクションの停止時間を短縮することでした。参照処理は、伝統的にGCの停止の主な原因の1つでした。この関係はほぼ一次式です。つまり、アプリケーションがより多くの参照を処理すればするほど、ガベージコレクションの停止と遅延への影響は大きくなります。ここで重要なのは「処理」、つまりGCサイ

              OpenJDK 16のShenandoahガベージコレクション:並行参照処理 - 赤帽エンジニアブログ
            • Adventures in Garbage Collection: Improving GC Performance in our Massive Monolith (2023) - Shopify

              Adventures in Garbage Collection: Improving GC Performance in our Massive MonolithAt the beginning of this year, we ran several experiments aimed at reducing the latency impact of the Ruby garbage collector (GC) in Shopify's monolith. In this article, Jean talks about the changes we made to improve GC performance, and more importantly, how we got to these changes. At the beginning of this year, we

                Adventures in Garbage Collection: Improving GC Performance in our Massive Monolith (2023) - Shopify
              • GC progress from JDK 8 to JDK 17

                JDK 17 has been out for a few months and it’s not just packed with new language features. The performance boost compared to older JDK versions is also really significant. It becomes especially clear when compared to the previous LTS releases, JDK 8 and JDK 11. Much of the improved performance comes from new features and optimizations in the JVM and in this post the focus will be on the improvement

                  GC progress from JDK 8 to JDK 17
                • colabでkaggleのdatasetをマウントする

                  1. kaggleのdatasetのgcsのリンクを取得する kaggleのnotebookで以下を実行する from kaggle_datasets import KaggleDatasets GCS_PATH = KaggleDatasets().get_gcs_path() print(GCS_PATH) notebookの作成は,マウントしたいデータセットのNew Notebookから作成する (これはtimmの例) 開催中のコンペのdatasetをマウントしたい場合は,コンペのページからNew Notebookする 2. colabでマウントする 2.1. gcpの認証をする

                    colabでkaggleのdatasetをマウントする
                  • マークスイープガベージコレクションを実装してみた - Qiita

                    これは、GLOBISアドベントカレンダー16日目の記事です。前回は、@chrojuさんのDocker build を GitHub Actions に最適化するという記事でした。 はじめに 弊社ではRuby内部実装を知ることを目的に、@_ko1さんがWEB+DB PRESSで連載されていた「Rubyのウラガワ ─⁠─ Rubyインタプリタに学ぶデータ構造とアルゴリズム」の社内勉強会を開いています。 社内勉強会を通してガベージコレクション(以降、GCと呼ぶ)に興味を持ち、マークスイープGCを実装しました。 本記事は、RubyのベースGCアルゴリズムであるマークスイープGCについて紹介しようと思います。 前提知識 オブジェクト アプリケーションによって確保されたデータ 生きているオブジェクト アプリケーションから参照されているオブジェクト 死んでいるオブジェクト アプリケーションから参照されな

                      マークスイープガベージコレクションを実装してみた - Qiita