並び順

ブックマーク数

期間指定

  • から
  • まで

361 - 400 件 / 436件

新着順 人気順

setterの検索結果361 - 400 件 / 436件

  • The Ultimate Guide to Android Bluetooth Low Energy | Punch Through

    Table of Contents 62 minute read Originally published on May 15, 2020, and updated on April 17, 2024. What’s been updated: This ultimate guide and its companion code repository now support compileSdkVersion and targetSdkVersion 34 (Android 14). The APIs used in this guide are from the android.bluetooth package, and not from the very similarly-named androidx.bluetooth package which is still in alph

      The Ultimate Guide to Android Bluetooth Low Energy | Punch Through
    • 【Vue.js】オブジェクト(連想配列)をリアクティブにする | 謎の技術研究部

      mountedはここでは理解する必要はない。 DOM要素がマウントされ画面が描画され、再描画される準備が整ったところと思っておけば良い(たぶん) つまり objに "b" のキーを新規で追加したので { "a": "A: OK", "b": 0 } となることを期待したコードだ。 しかし、実際は次の表示になる。 { "a": "A: OK" } これがリアクティブではない状態だ。初心者が躓く箇所である。 なぜ"b"は描画されないのだろうか。 デバッガで確認する 画面上はまだ"a"しか表示されていない状態でvueのデバッガを見てみる。 objはどうなっているだろうか(デバッガの使い方が分からなければconsole.log(obj)でもよい) 間違いなく"b":0も追加されている。 しかし、画面には描画されていない。 リアクティブにするには これは公式の「リアクティブの探求」ページに記載されて

        【Vue.js】オブジェクト(連想配列)をリアクティブにする | 謎の技術研究部
      • Node.js — Node v19.3.0 (Current)

        Notable Changes Updated npm to 9.2.0 Based on the list of guidelines we've established on integrating npm and node, here is a grouped list of the breaking changes with the reasoning as to why they fit within the guidelines linked above. Note that all the breaking changes were made in 9.0.0. All subsequent minor and patch releases after [email protected] do not contain any breaking changes. Engines

          Node.js — Node v19.3.0 (Current)
        • オスマン帝国: 皇帝たちの夜明け | Netflix (ネットフリックス) 公式サイト

          '); doc.close(); } if (!doc) throw Error('base not supported'); var baseTag = doc.createElement('base'); baseTag.href = base; doc.getElementsByTagName('head')[0].appendChild(baseTag); var anchor = doc.createElement('a'); anchor.href = url; return anchor.href; } finally { if (iframe) iframe.parentNode.removeChild(iframe); } }()); } // An inner object implementing URLUtils (either a native URL // ob

            オスマン帝国: 皇帝たちの夜明け | Netflix (ネットフリックス) 公式サイト
          • Node.js — Node v13.9.0 (Current)

            Notable changes async_hooks add executionAsyncResource (Matteo Collina) #30959 crypto add crypto.diffieHellman (Tobias Nießen) #31178 add DH support to generateKeyPair (Tobias Nießen) #31178 simplify DH groups (Tobias Nießen) #31178 add key type 'dh' (Tobias Nießen) #31178 test skip keygen tests on arm systems (Tobias Nießen) #31178 perf_hooks add property flags to GCPerformanceEntry (Kirill Fomic

              Node.js — Node v13.9.0 (Current)
            • Black Lives Matter

              '); doc.close(); } if (!doc) throw Error('base not supported'); var baseTag = doc.createElement('base'); baseTag.href = base; doc.getElementsByTagName('head')[0].appendChild(baseTag); var anchor = doc.createElement('a'); anchor.href = url; return anchor.href; } finally { if (iframe) iframe.parentNode.removeChild(iframe); } }()); } // An inner object implementing URLUtils (either a native URL // ob

                Black Lives Matter
              • SpringBootで認証を学ぶ、PASETO - arcanum_jp’s blog

                こちらの続きです。 arcanum.hatenablog.com クライアントーサーバ間の認証をするためのトークンって、JWTってのが今の流行りなんだ!フフン、俺最先端!とばかりにググってると結構、JWTを使うべきか?なんてJWTの危険性についての記事が目につき、なんでだろ〜と調べていると今はPASETOなんてものもあるらしい。なんですとーー!(の割には2018年からでPASETOの記事が引っかからないのであんまり普及していないのかなとか思ったりしますが・・・) PASETOは以下のサイトが公式みたい。検索しているとPASETOではなくPASTと表記する人もいるみたいなので検索するときは注意ですね。にしてもgithubは2018年からあんまり動いていませんね・・・気になります。一通り今の仕様での開発が終わったって事でしょうか?各言語の実装を見るにチマチマとイシューは発行されているようで、動

                  SpringBootで認証を学ぶ、PASETO - arcanum_jp’s blog
                • せっかくなのでUno Platformの話がしたい - tmytのらくがき

                  Uno Platformというものがある UWPのコードをベースにして、自力でXAMLを解釈して、Xamarinの上でViewをいい感じに動かすっていうアプローチ。Xamarin.Formsのラッパーではない。 俺たちが期待してるUniversalはこれなんだよ、いいからMSは早く買収するんだ。という気持ちを抑えながら、公式ページで図解されている構造を見てみるとこういう感じ。 あれこれなんか4年前に似たような図を描いたような気がする*1… 簡単なコードなら普通に動くし、複雑なコードもUno Platformをターゲットに最初から作ればわりかしちゃんと動く。よくできている。 実際にWindows 10の電卓が移植されていて、Play StoreとかApp Storeからダウンロードできるので、とりあえず「すげーーー」って言うには電卓を入れるのがおすすめ。 Uno Calculator nve

                    せっかくなのでUno Platformの話がしたい - tmytのらくがき
                  • Designing Rust bindings for REST APIs

                    REST API binding crates are numerous, but the design patterns could be improved I co-maintain the gitlab crate for Rust which helps to communicate with GitLab’s API. In the course of trying to expose such a large API which changes over time, I’ve learned a few things about how to expose such REST APIs into Rust idiomatically. Just a note that in this post, docstrings and #[derive] attributes are l

                    • Mackerel REST APIのRustクライアントで取り入れた設計 - プログラムモグモグ

                      この記事はMackerel Advent Calendar 2023の15日目です。 昨日はkmutoさんでした。 MackerelのREST APIクライアントをRustで書き始めたのは2017年の春のことでした。もう六年半も前のことになります。 2017年ごろの日記を見返してみるとRustにかなりハマっていた時期で、色々なツールを作っていたのを思い出しました。 mackerel-client-rsはそれ以来放置してしまっていたのですが、最近また急にRustのやる気スイッチが入ったので、色々と実装し直しています。 github.com 久しぶりにMackerelのAPI一覧のドキュメントを見ると、ダウンタイムやアラートグループ設定といった個人的に思い入れのある機能のAPIや複数のホストを一括で操作するAPIなどが追加されていて、進化を感じました。 死活監視のステータスや外形監視のリダイレ

                        Mackerel REST APIのRustクライアントで取り入れた設計 - プログラムモグモグ
                      • 2020-05-07のJS: Firefox 76、Jest 26、Web Vitals

                        JSer.info #486 - Firefox 76がリリースされました。 Firefox 76: Audio worklets and other tricks - Mozilla Hacks - the Web developer blog Firefox 76 for developers - Mozilla | MDN Firefox 76 Site Compatibility | Firefox Site Compatibility Firefox 76.0, See All New Features, Updates and Fixes Firefox 76では開発者ツールに多くの改善が含まれています。 特定のディレクトリをDebuggerの対象から除外できるように、"Copy stack trace"の追加、Action CableのWebSocket Inspection

                          2020-05-07のJS: Firefox 76、Jest 26、Web Vitals
                        • TCA と SwiftUI で新規アプリを開発した - freee Developers Hub

                          こんにちは、モバイル請求書チームで iOS エンジニアをしている yaya です。 freee請求書のモバイルアプリが2023年9月6日にリリースされました! www.freee.co.jp そのモバイルアプリの開発について、全3回に渡ってお届けしていきます。 今回はその第一回目、iOS アプリの開発についてです。 請求書アプリの概要 まず初めに、freee請求書のサービスを紹介したいと思います。 freee請求書は、請求書を始めとする帳票を閲覧・作成・発行できるサービスです。 2023年10月時点で対応している帳票は、請求書、見積書、発注書、納品書、領収書の5種類です。 2023年10月に開始されたインボイス制度にも、もちろん対応しています。 freee会計やfreee販売と取引先情報の連携が可能で、作成した帳票はこれらの取引先へメールで送付することもできます。 Web 版は2022年1

                            TCA と SwiftUI で新規アプリを開発した - freee Developers Hub
                          • How To Tame Line Height In CSS | CSS-Tricks

                            DigitalOcean provides cloud products for every stage of your journey. Get started with $200 in free credit! In CSS, line-height is probably one of the most misunderstood, yet commonly-used attributes. As designers and developers, when we think about line-height, we might think about the concept of leading from print design — a term, interestingly enough, that comes from literally putting pieces of

                              How To Tame Line Height In CSS | CSS-Tricks
                            • JavaでExcel出力ならJETTが扱いやすい | ホームページ制作のサカエン Developer's Blog

                              ここで利用しているもの以外にも実に様々なタグがあります。 詳しくは「JETT – Tag Basics」を参照してください。 Mavenプロジェクトを作成し、テンプレートファイルをresources内に保存しましょう。 <dependencies> <dependency> <groupId>net.sf.jett</groupId> <artifactId>jett-core</artifactId> <version>0.11.0</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.16.10</version> </dependency> </dependencies> まずはテンプレートファイルにパラメ

                                JavaでExcel出力ならJETTが扱いやすい | ホームページ制作のサカエン Developer's Blog
                              • スプリガン | Netflix (ネットフリックス) 公式サイト

                                '); doc.close(); } if (!doc) throw Error('base not supported'); var baseTag = doc.createElement('base'); baseTag.href = base; doc.getElementsByTagName('head')[0].appendChild(baseTag); var anchor = doc.createElement('a'); anchor.href = url; return anchor.href; } finally { if (iframe) iframe.parentNode.removeChild(iframe); } }()); } // An inner object implementing URLUtils (either a native URL // ob

                                  スプリガン | Netflix (ネットフリックス) 公式サイト
                                • Towards principled reactive UI

                                  Update 7 May 2022: A followup to this post containing significant conceptual advance is Xilem: an architecture for UI in Rust. I consider the Crochet experiment to be mostly negative, as there were a number of ergonomic and functional “paper cuts,” though several of the research goals were met, at least to some extent. This is a followup to my post about a year ago, Towards a unified theory of rea

                                  • セッターとゲッター (set, get) | TypeScript入門『サバイバルTypeScript』

                                    プロパティへのインターセプター(参照・代入・監視などの意味)としGetter/Setterがあります。 記述方法のサンプルは次のようになります。

                                      セッターとゲッター (set, get) | TypeScript入門『サバイバルTypeScript』
                                    • Watch The Mitchells vs. The Machines | Netflix Official Site

                                      '); doc.close(); } if (!doc) throw Error('base not supported'); var baseTag = doc.createElement('base'); baseTag.href = base; doc.getElementsByTagName('head')[0].appendChild(baseTag); var anchor = doc.createElement('a'); anchor.href = url; return anchor.href; } finally { if (iframe) iframe.parentNode.removeChild(iframe); } }()); } // An inner object implementing URLUtils (either a native URL // ob

                                        Watch The Mitchells vs. The Machines | Netflix Official Site
                                      • Cloud Data Fusion によるコードフリーのアプローチで Salesforce のデータを BigQuery に読み込む方法 | Google Cloud 公式ブログ

                                        Cloud Data Fusion によるコードフリーのアプローチで Salesforce のデータを BigQuery に読み込む方法 ※この投稿は米国時間 2021 年 9 月 1 日に、Google Cloud blog に投稿されたものの抄訳です。 最新のクラウド ウェアハウスとデータレイク ソリューションへの投資を拡大して、分析環境を強化し、ビジネス上の意思決定を改善しようとする組織が増えています。顧客関係データが読み込まれ、さらなる分析情報が生成されることで、このようなリポジトリのビジネス価値は高まります。 この投稿では、Google サービスのスケーラビリティと信頼性、事前に構築されたコネクタをベースにした直感的なドラッグ&ドロップ ソリューション、コードフリーのデータ統合サービスのセルフサービス モデルを使用して Salesforce のデータを段階的に BigQuery

                                          Cloud Data Fusion によるコードフリーのアプローチで Salesforce のデータを BigQuery に読み込む方法 | Google Cloud 公式ブログ
                                        • Japanese in Battle. Enemy Methods

                                          JAPANESE IN BATTLE First and Second Edition, 1943, 1944 ENEMY METHODS JAPANESE IN BATTLE 1st Edition GENERAL HEADQUARTERS, INDIA MILITARY INTELLIGENCE DIRECTORATE 4/G.S.I. (t) MAY 1943 THIS DOCUMENT MUST NOT FALL INTO ENEMY HANDS FOREWORD. The Japanese are an island race who have mastered the art of war, not through any mysterious or indefinable quality inherited from their Emperor, their islands,

                                          • スコット・ピルグリム テイクス・オフ | Netflix (ネットフリックス) 公式サイト

                                            '); doc.close(); } if (!doc) throw Error('base not supported'); var baseTag = doc.createElement('base'); baseTag.href = base; doc.getElementsByTagName('head')[0].appendChild(baseTag); var anchor = doc.createElement('a'); anchor.href = url; return anchor.href; } finally { if (iframe) iframe.parentNode.removeChild(iframe); } }()); } // An inner object implementing URLUtils (either a native URL // ob

                                              スコット・ピルグリム テイクス・オフ | Netflix (ネットフリックス) 公式サイト
                                            • Implement the Stage 3 Decorators Proposal by rbuckton · Pull Request #50820 · microsoft/TypeScript

                                              This implements support for the Stage 3 Decorators proposal targeting ESNext through ES5 (except where it depends on functionality not available in a specific target, such as WeakMaps for down-level private names). The following items are not currently supported: --emitDecoratorMetadata, as metadata is currently under discussion in https://github.com/tc39/proposal-decorator-metadata and has not ye

                                                Implement the Stage 3 Decorators Proposal by rbuckton · Pull Request #50820 · microsoft/TypeScript
                                              • 愛の不時着 | Netflix (ネットフリックス) 公式サイト

                                                '); doc.close(); } if (!doc) throw Error('base not supported'); var baseTag = doc.createElement('base'); baseTag.href = base; doc.getElementsByTagName('head')[0].appendChild(baseTag); var anchor = doc.createElement('a'); anchor.href = url; return anchor.href; } finally { if (iframe) iframe.parentNode.removeChild(iframe); } }()); } // An inner object implementing URLUtils (either a native URL // ob

                                                  愛の不時着 | Netflix (ネットフリックス) 公式サイト
                                                • 隔たる世界の2人 | Netflix (ネットフリックス) 公式サイト

                                                  '); doc.close(); } if (!doc) throw Error('base not supported'); var baseTag = doc.createElement('base'); baseTag.href = base; doc.getElementsByTagName('head')[0].appendChild(baseTag); var anchor = doc.createElement('a'); anchor.href = url; return anchor.href; } finally { if (iframe) iframe.parentNode.removeChild(iframe); } }()); } // An inner object implementing URLUtils (either a native URL // ob

                                                    隔たる世界の2人 | Netflix (ネットフリックス) 公式サイト
                                                  • uber/mockoloのclassモック生成のバグを修正した - いけだや技術ノート

                                                    uber/mockoloとは Uberが開発するSwift用のモック自動生成ツールで、ここ1〜2年で採用が増えていそうな雰囲気 2019年のSwiftモック事情 - いけだや技術ノート でも紹介しました logmi.jp というものです。 mockoloはv1.1.3からprotocolだけでなくclassのモック生成もできるようになったのだけど、これを実際に使おうとしてみると生成されたコードがコンパイルエラーになった。 具体的には、次のようなデフォルト値ありのpropertyを持つclassで問題が発生していた。 // Foo.swift /// @mockable class Foo { var foo: Int = 0 } // Mocks.swift class FooMock: Foo { private(set) var fooSetCallCount = 0 override

                                                      uber/mockoloのclassモック生成のバグを修正した - いけだや技術ノート
                                                    • Watch ミッチェル家とマシンの反乱 | Netflix Official Site

                                                      '); doc.close(); } if (!doc) throw Error('base not supported'); var baseTag = doc.createElement('base'); baseTag.href = base; doc.getElementsByTagName('head')[0].appendChild(baseTag); var anchor = doc.createElement('a'); anchor.href = url; return anchor.href; } finally { if (iframe) iframe.parentNode.removeChild(iframe); } }()); } // An inner object implementing URLUtils (either a native URL // ob

                                                        Watch ミッチェル家とマシンの反乱 | Netflix Official Site
                                                      • 地面師たち | Netflix (ネットフリックス) 公式サイト

                                                        '); doc.close(); } if (!doc) throw Error('base not supported'); var baseTag = doc.createElement('base'); baseTag.href = base; doc.getElementsByTagName('head')[0].appendChild(baseTag); var anchor = doc.createElement('a'); anchor.href = url; return anchor.href; } finally { if (iframe) iframe.parentNode.removeChild(iframe); } }()); } // An inner object implementing URLUtils (either a native URL // ob

                                                          地面師たち | Netflix (ネットフリックス) 公式サイト
                                                        • Why SolidJS: Do we need another JS UI Library?

                                                          It has come to my attention this article is the first some people are hearing of SolidJS. If you want to learn more about Solid, this is NOT where to start. I suggest looking at the github or the links at the bottom of the article. This just details my personal journey and is highly biased. The number of times I've asked myself that over the years is staggering. Even after hitting 2k stars on Gith

                                                            Why SolidJS: Do we need another JS UI Library?
                                                          • Nine Rules for Elegant Rust Library APIs

                                                            Photo by Kai Dahms on UnsplashI love creating software libraries. Two months ago, I started porting one of our Python packages into a Rust crate. This new Rust crate matches the Python package’s ease of use and expressiveness. Along the way, I learned nine rules that can help you create beautiful libraries in Rust. The rules are: Create examples that don’t embarrass you.Accept all kinds of strings

                                                              Nine Rules for Elegant Rust Library APIs
                                                            • Vue Composition APIについて触ってみた - SUSH-i LOG

                                                              Vue3がそろそろ公開されそうな雰囲気なので、ちょっと先にVue Composition APIをつかってみました。 Composition API RFCをボチボチ読んで、Class Componentで書いてたものを変換してみたのでその時のメモを残しておきます。 Props propsはsetupの第一引数から取得可能。 <template> <p>{{ foo }}</p> </template> <script lang="ts"> import { createComponent } from '@vue/composition-api' // Propsの型推論用 type Props = { foo: string, bar: number } export default createComponent({ // createComponent内でpropsを定義する //

                                                                Vue Composition APIについて触ってみた - SUSH-i LOG
                                                              • What’s new in XAML developer tools in Visual Studio 2019 for WPF & UWP - Visual Studio Blog

                                                                Since the launch of Visual Studio 2019 we’ve released many new features for XAML developers working on WPF or UWP desktop applications. With this week’s release of Visual Studio 2019 version 16.4 and 16.5 Preview 1 we’d like to use this opportunity to do a recap of what’s new throughout the year. If you missed our previous releases or simply have not had a chance to catch-up, this blog post will b

                                                                  What’s new in XAML developer tools in Visual Studio 2019 for WPF & UWP - Visual Studio Blog
                                                                • 【PhpStorm入門】基本的な使い方 - RAKUS Developers Blog | ラクス エンジニアブログ

                                                                  はじめに PhpStormとは 料金 ダウンロード・初期設定 ダウンロード 初期設定 コードスタイルの設定 フォントの設定 日本語化 その他のプラグイン 基本操作 編集 検索 ナビゲーション コード補完 基本的な補完 ステートメント補完 後置コード補完 その他の補完 DBクライアント 設定方法 操作方法 Gitクライアント 設定方法 操作方法 Xdebugとの連携 設定方法 ステップデバッグの手順 デバッグ接続を有効にする 処理を止めたい任意の行をクリックして、ブレークポイントをセットします。 ステップデバッグでできること デバッグセッション再開 ステップオーバー(F8) ステップイン(F7) ステップアウト(Shift + F8) 強制ステップイン 変数の確認・更新 おわりに はじめに こんにちは、ryo479です。 みなさんは普段の開発において、どういったIDE(エディタ)を使用され

                                                                    【PhpStorm入門】基本的な使い方 - RAKUS Developers Blog | ラクス エンジニアブログ
                                                                  • 【Spring BootでREST API】#3 エラー処理

                                                                    今回の目標 前回はAPIの作成について基本的なことを説明しました。 【Spring BootでREST API】#2 API作成の基本今回はREST APIの基本的な作成方法を説明していきます。ますは認証については考えず、シンプルなGET、POST、PUT、DELETEに対応するAPIを作成していきます。b1tblog.com2020.03.17 今回は前回作成したAPIにエラー処理を実装していきます。前回の内容をそのまま使用しますので、まだ見ていない方は一度見ていただきたいと思います。 実装するエラー処理について 今回はAPIによって次のようなエラーを設定します。(PUT、DELETEは割愛します) パス Httpメソッド Httpステータス 詳細 /api/product/{id} GET 404: Not Found 該当商品がない /api/product POST 400: Ba

                                                                      【Spring BootでREST API】#3 エラー処理
                                                                    • Watch 食品産業に潜む腐敗 | Netflix Official Site

                                                                      '); doc.close(); } if (!doc) throw Error('base not supported'); var baseTag = doc.createElement('base'); baseTag.href = base; doc.getElementsByTagName('head')[0].appendChild(baseTag); var anchor = doc.createElement('a'); anchor.href = url; return anchor.href; } finally { if (iframe) iframe.parentNode.removeChild(iframe); } }()); } // An inner object implementing URLUtils (either a native URL // ob

                                                                        Watch 食品産業に潜む腐敗 | Netflix Official Site
                                                                      • Russia invaded Ukraine, but imposing financial sanctions like SWIFT may not be the best path forward.

                                                                        After weeks of mounting tension and feints and misdirection, the deed was done. Last night, while Ambassadors read from previously-prepared remarks and issued calls for peace during an emergency UN Security Council meeting, Putin begin an invasion of Ukraine. The UN Secretary General, António Guterres, called on Russia’s President Vladimir Putin directly to stop his troops from invading Ukraine an

                                                                          Russia invaded Ukraine, but imposing financial sanctions like SWIFT may not be the best path forward.
                                                                        • Release Notes for Safari Technology Preview 166

                                                                          Safari Technology Preview Release 166 is now available for download for macOS Monterey 12.3 or later and macOS Ventura. If you already have Safari Technology Preview installed, you can update it in the Software Update pane of System Preferences on macOS Monterey, or System Settings under General → Software Update on macOS Ventura. This release includes WebKit changes between: 260849@main…261247@ma

                                                                          • ウ・ヨンウ弁護士は天才肌 | Netflix (ネットフリックス) 公式サイト

                                                                            '); doc.close(); } if (!doc) throw Error('base not supported'); var baseTag = doc.createElement('base'); baseTag.href = base; doc.getElementsByTagName('head')[0].appendChild(baseTag); var anchor = doc.createElement('a'); anchor.href = url; return anchor.href; } finally { if (iframe) iframe.parentNode.removeChild(iframe); } }()); } // An inner object implementing URLUtils (either a native URL // ob

                                                                              ウ・ヨンウ弁護士は天才肌 | Netflix (ネットフリックス) 公式サイト
                                                                            • Using Recoil: A New State Management Library

                                                                              Photo by Wendong Yao on Unsplash.Recently, Facebook’s team announced a new state management library for React that looks and feels very promising. Recoil is a very powerful tool to manage complex states and to prevent the confusing passing around of props among components. You might be wondering, ‘‘Will Redux get deprecated or fully replaced?’’ Well, the answer is “No!” Even though Recoil is power

                                                                                Using Recoil: A New State Management Library
                                                                              • Meet async/await in Swift - WWDC21 - Videos - Apple Developer

                                                                                Streaming is available in most browsers, and in the Developer app. Swift now supports asynchronous functions — a pattern commonly known as async/await. Discover how the new syntax can make your code easier to read and understand. Learn what happens when a function suspends, and find out how to adapt existing completion handlers to asynchronous functions. Resources SE-0296: Async/await SE-0297: Con

                                                                                  Meet async/await in Swift - WWDC21 - Videos - Apple Developer
                                                                                • Node.js — Node v19.4.0 (Current)

                                                                                  Notable Changes buffer: (SEMVER-MINOR) add buffer.isUtf8 for utf8 validation (Yagiz Nizipli) #45947 http: (SEMVER-MINOR) improved timeout defaults handling (Paolo Insogna) #45778 net: add autoSelectFamily global getter and setter (Paolo Insogna) #45777 os: (SEMVER-MINOR) add availableParallelism() (Colin Ihrig) #45895 util: add fast path for text-decoder fatal flag (Yagiz Nizipli) #45803 Commits [

                                                                                    Node.js — Node v19.4.0 (Current)