並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 26 件 / 26件

新着順 人気順

temporalの検索結果1 - 26 件 / 26件

タグ検索の該当結果が少ないため、タイトル検索結果を表示しています。

temporalに関するエントリは26件あります。 javascriptarticleECMAScript などが関連タグです。 人気エントリには 『Open Source Durable Execution | Temporal Technologies』などがあります。
  • Open Source Durable Execution | Temporal Technologies

    check_fraud(order.order_id, order.payment_info) prepare_shipment(order) charge_confirm = charge(order.order_id, order.payment_info) shipment_confirmation = ship(order)

      Open Source Durable Execution | Temporal Technologies
    • 脱データ不整合!? Workflow Engine「Temporal」の魅力

      はじめに 分散システムを扱う際、エラーやクラッシュによる処理の中断はよくあるものかと思います。特に、EC サイトの支払い処理など、複数のステップを経て完了する重要なプロセスでは、障害が発生した場合にその進行状態を適切に管理しないと、取引の二重処理やデータの不整合といった問題が発生する危険性があります。復旧作業に骨を折った方も多いのではないでしょうか。 Temporal は、こういった課題を解決するために、処理の進行状況を自動的に追跡し、障害が発生してもその地点から再開できる仕組みを提供しています。複雑な復旧コードの実装や、手作業による復旧作業がなくなるのであれば、これは非常に魅力的ですね。 ここでは、Temporal が一体どういうものかについて解説していきたいと思います。 Temporal とは Temporal は、分散システムでのワークフローを管理するためのオープンソースのワークフロ

        脱データ不整合!? Workflow Engine「Temporal」の魅力
      • Temporal で JavaScript の次世代の日時処理に触れてみる - Qiita

        この記事は Recruit Advent Calendar 2021 の 7 日目の記事です。 イントロダクション Web アプリケーションの新規開発をしていて、先日、日時処理のライブラリ選定をする機会がありました。直近のプロジェクトで date-fns を使っていたので、今回もそれでいいかと考えていたのですが、Temporal が TC39 プロポーザルではあるが stage 3 になっているから試してみてもいいんじゃないかという話になりました。stage 3 であれば  API 変更のハードルは非常に高いそうです。stage 3 になるまでの提案はこちらの記事が参考になります。少し見ただけでも大きく変わっていることがわかります。 プロジェクトはまだ開発段階ですが、実際に Temporal をプロジェクトに導入しながら、検証兼開発を進めていいます。しかし、Temporal を実際に使って

          Temporal で JavaScript の次世代の日時処理に触れてみる - Qiita
        • 君は新しい日付/時刻API Temporal を知っているか?

          2024.06.28 Kyoto.js #22 の登壇資料です https://kyotojs.connpass.com/event/321343/

            君は新しい日付/時刻API Temporal を知っているか?
          • Temporal Dead Zone と採用されなかった他の候補について

            Temporal Dead Zone とは ECMAScript 2015で採用された let/const のスコーピングの仕様をTemporal Dead Zoneと呼びます。 const x = "outer"; { const f = () => x; // console.log(f()); // => Error const x = "inner"; console.log(f()); // => "inner" } 4つの方式 Temporal Dead Zone という名前は、ブロックスコープ変数の挙動を決める際の4つの候補の名前に由来しているようです。 これはECMAScript 4が放棄されて間もない2008年10月のes-discussのログ[1]に言及があります。 A1. Lexical dead zone. References textually prior to

              Temporal Dead Zone と採用されなかった他の候補について
            • XTDB - the open database with temporal graph queries

              Immutable Records XTDB contains a perfect, immutable record of every fact your system has ever known. See the entire history of your business, everywhere. Learn More Temporal Query Immutable records are incomplete without time-traveling queries. XTDB allows you to query the entire timeline. Make retroactive corrections, simplify data migrations, and get clarity on out-of-order events. Learn More R

                XTDB - the open database with temporal graph queries
              • Temporal を使って丸めた相対時刻表示をする

                SNS などでよく見かける、記事投稿時刻の「N時間前」「M日前」のような、ざっくりとした時刻の差分表示を JS の新しい日付型の Temporal を使って実装する方法の紹介です。 ベースとなる時刻は Temporal.ZonedDateTime 型で管理されているものとすると、以下のような関数で、最大単位に丸めた差分時刻表示をすることが出来ます。 function relative(date: ZonedDateTime): string { const d = date.until(Temporal.Now.zonedDateTimeISO()); if (d.total("day") > 1) { return d.round({ smallestUnit: "day" }).days + "日前"; } if (d.total("hour") > 1) { return d.rou

                  Temporal を使って丸めた相対時刻表示をする
                • Temporal dynamics in viral shedding and transmissibility of COVID-19 - Nature Medicine

                  Thank you for visiting nature.com. You are using a browser version with limited support for CSS. To obtain the best experience, we recommend you use a more up to date browser (or turn off compatibility mode in Internet Explorer). In the meantime, to ensure continued support, we are displaying the site without styles and JavaScript.

                    Temporal dynamics in viral shedding and transmissibility of COVID-19 - Nature Medicine
                  • Temporal: getting started with JavaScript’s new date time API

                    Temporal: getting started with JavaScript’s new date time API Updates: 2022-01-10: Temporal.now was renamed to Temporal.Now. 2021-06-30: Rearranged the content and created a section on the concepts and patterns used by the Temporal API. 2021-06-29: Clarified how Instant uses the ISO-8601 calendar. Listed the properties of some classes. Date, JavaScript’s current date time API is infamously difficu

                    • Deno 1.40: Temporal API

                      We are excited to announce the release of Deno 1.40, a significant step forward in the evolution of Deno. This new version is packed with features that enhance the Deno experience, introducing the powerful Temporal API for advanced date and time operations, and embracing the latest decorator syntax for more expressive code. Alongside these advancements, we’ve implemented a series of deprecations,

                        Deno 1.40: Temporal API
                      • moment.js を temporal に移植するのはどのくらいラクか or 大変か

                        JS で新しく提案されている日付計算の API である temporal。 プロポーザルとしてはまだ stage 2 だが、先日の TC39 のスライドですでに仕様やポリフィルは stable と言っていい状況(?)という文言が見えたので、使ってみる 実は筆者はすでに一度(2020年8月) temporal にフィードバックのアンケートを送ったことがあるが、そのときは新規プロジェクトでの使用を想定したもので、既存のを移行するとどのくらいつらいかはあまり考えていなかった。 また、今 temporal-polyfill を見たら当時からさらに API が変わっていた。 具体的には、現在時刻をタイムゾーン指定で生成するためのメソッドである Temporal.now.zonedDateTimeISO() は私がアンケートを送った頃にはなかったし、Duration に負の値を取れるというのも当時は確

                          moment.js を temporal に移植するのはどのくらいラクか or 大変か
                        • Temporalを取り巻く仕様を整理する

                          Meguro.es #28 @ AWS Japan ・https://meguroes.connpass.com/event/319662/ x(twitter) ・https://twitter.com/sajikix

                            Temporalを取り巻く仕様を整理する
                          • Temporal documentation

                            This Stage 3 proposal is experimental. Do try it and report bugs; don't use it in production! Temporal Table of Contents Introduction Cookbook API Documentation Temporal.Now Temporal.Instant Temporal.ZonedDateTime Temporal.PlainDate Temporal.PlainTime Temporal.PlainDateTime Temporal.PlainYearMonth Temporal.PlainMonthDay Temporal.Duration Balancing Time Zones Calendars Object relationship String pe

                            • Temporal documentation

                              This Stage 3 proposal is experimental. Do try it and report bugs; don't use it in production! Temporal 注: このドキュメントは原文を部分的に日本語に翻訳したものです。全てのドキュメント,および最新の内容を確認したい場合は原文を参照してください。 Table of Contents イントロダクション Cookbook API ドキュメント Temporal.now Temporal.Instant Temporal.ZonedDateTime Temporal.PlainDate Temporal.PlainTime Temporal.PlainDateTime Temporal.PlainYearMonth Temporal.PlainMonthDay Temporal.Duratio

                              • COVID-19 Spatio-temporal case-density map

                                × COVID-19時空間発生マップ 本アプリケーションは、新型コロナ感染症(COVID-19)患者の発生について、その時空間的な広がりの様子を可視化しています。この時空間地図での患者の発生位置は、商業施設や飲食店、病院、オフィス など施設での発生情報から得ています(JX通信社による)。縦軸は時間になっており、過去の流行とあわせて、現在の流行状況を、高い空間解像度で確認することができます。積乱雲のように縦方向に伸びる雲は、生活圏の中でほぼ途切れなく患者が発生していることを示しており、赤色や青色の領域は感染リスクの高い領域に対応しています(灰色は半径4kmの圏内でおおよそ4日1件以上の施設で発生、青は1日1件以上、赤は1日5件以上)。 COVID-19 Spatio-temporal case-density map This web-application visualizes the s

                                  COVID-19 Spatio-temporal case-density map
                                • Temporal documentation

                                  This Stage 3 proposal is experimental. Do try it and report bugs; don't use it in production! Temporal CookbookOverview Running the cookbook filesRunning cookbook files: see instructions in ../polyfill/README.md Frequently Asked QuestionsThese are some of the most common tasks that people ask questions about on StackOverflow with legacy Date. Here's how they would look using Temporal. Current date

                                  • TC39 Temporalのドキュメントを一部翻訳しました

                                    sititou70です.少し未来のJavaScriptを紹介します! Temporalは,TC39で提案されている次世代の日付APIです.現状のDateにおける欠点を克服するために,仕様を目下策定中です. tc39_studyというイベントで,TemporalについてのLTをしました.また,そのLTを行うにあたって,勉強のためにTemporalのドキュメントを翻訳していたのですが,そちらが公式リポジトリにマージされました 🎉 1分でわかるTemporal tc39_studyは,TC39の各プロポーザルを わずか30〜90秒でLTし続ける というヤバいイベントです.以下が私のLTのアーカイブです.(カミカミですが許してください) なお,このイベントの終盤は30秒LTゾーンという魔境となっており,面白いのでおすすめです.当日のTwitterも,「早口オタク」「情報の嵐」「処理が追いつかない

                                      TC39 Temporalのドキュメントを一部翻訳しました
                                    • 時間情報表現抽出とルールベース解析器のこれから / Temporal Expression Analysis in Japanese and Future of Rule-based Approach

                                      【NLP Hacks vol.3】『実装』に特化した、NLP勉強会コミュニティ開催! https://connpass.com/event/241079/

                                        時間情報表現抽出とルールベース解析器のこれから / Temporal Expression Analysis in Japanese and Future of Rule-based Approach
                                      • Temporal: JavaScript で"時間"を扱う際の使用方法(と個室ブース予約サイトでの活用例)

                                        はじめに この記事では、JavaScriptの新しい標準APIとなりつつある Temporal について、その使用方法を紹介するものです。 具体的な活用例として、私が運営しているコワーキングスペース茅場町 Co-Edo の 個室ブース予約サイト でTemporalをどのように使用したかを具体的に示します。 JavaScriptと日付:過去の課題 JavaScriptで日付と時間を扱うためには、これまで主にDateオブジェクトを使用してきました。 このDateオブジェクトは、開発者にとって悩ましい問題を抱えています。 不整合な月のインデックス JavaScriptのDateオブジェクトでは、月のインデックスが0から始まります。 1月は0、12月は11となります。 これは(日付は1から始まることもあわせて)直感的ではないため、混乱を招きやすいです。

                                          Temporal: JavaScript で"時間"を扱う際の使用方法(と個室ブース予約サイトでの活用例)
                                        • Temporal API is Awesome · Taro

                                          Wednesday, August 23, 2023 Dates in JS suck. Well, they suck in all languages, really. It's surprisingly hard to get right. The native Date is super limited. Sure, you can new Date('2015-10-21T01:22:00.000Z') and date.toISOString(), maybe dateA < dateB, but that's pretty much it. Need to add minutes, hours, or whatever to a date, check how many days there are until X date, etc? Good luck with that

                                          • GitHub - informalsystems/quint: An executable specification language with delightful tooling based on the temporal logic of actions (TLA)

                                            module secret_santa { const participants: Set[str] /// get(recipient_for_santa, S) is the recipient for secret santa S var recipient_for_santa: str -> str /// the bowl of participants, containing a paper piece for each participant name var bowl: Set[str] val santas = recipient_for_santa.keys() val recipients = participants.map(p => get(recipient_for_santa, p)) /// The initial state action init = a

                                              GitHub - informalsystems/quint: An executable specification language with delightful tooling based on the temporal logic of actions (TLA)
                                            • Stock2Vec: A Hybrid Deep Learning Framework for Stock Market Prediction with Representation Learning and Temporal Convolutional Network

                                              We have proposed to develop a global hybrid deep learning framework to predict the daily prices in the stock market. With representation learning, we derived an embedding called Stock2Vec, which gives us insight for the relationship among different stocks, while the temporal convolutional layers are used for automatically capturing effective temporal patterns both within and across series. Evaluat

                                              • Temporal Python 1.0.0 – A Durable, Distributed Asyncio Event Loop

                                                We are excited about the GA release of the Temporal Python SDK. Python is now a fully-supported workflow language in Temporal, and our use of native asyncio constructs makes it a perfect fit for Python developers looking to write durable workflows. Here are some links to read more about Temporal Python: Repository Application Development Guide Code Samples API Documentation Like essentially all of

                                                • MapLibre GL JSで時系列コントロールを扱う[maplibre-gl-temporal-control] - Qiita

                                                  TL;DR MapLibre GL JSで時系列表示をするためのプラグインmaplibre-gl-temporal-controlを開発したよ npm install mapligre-gl-temporal-controlで使えるよ const map = new maplibregl.Map(mapOptions) // anyLayerはmaplibreレイヤーのオブジェクト map.addLayer(anyLayer1_1) map.addLayer(anyLayer1_2) map.addLayer(anyLayer2_1) map.addLayer(anyLayer2_2) map.addLayer(anyLayer3_1) map.addLayer(anyLayer3_2) import TemporalControl from 'maplibre-gl-temporal-c

                                                    MapLibre GL JSで時系列コントロールを扱う[maplibre-gl-temporal-control] - Qiita
                                                  • Temporal documentation

                                                    This Stage 3 proposal is experimental. Do try it and report bugs; don't use it in production! Temporal Table of Contents Introduction Cookbook API Documentation Temporal.Now Temporal.Instant Temporal.ZonedDateTime Temporal.PlainDate Temporal.PlainTime Temporal.PlainDateTime Temporal.PlainYearMonth Temporal.PlainMonthDay Temporal.Duration Balancing Time Zones Calendars Object relationship String pe

                                                    • GitHub - tc39/proposal-canonical-tz: TC39 Proposal (stacked on Temporal) to improve handling of changes to the IANA Time Zone Database

                                                      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 - tc39/proposal-canonical-tz: TC39 Proposal (stacked on Temporal) to improve handling of changes to the IANA Time Zone Database
                                                      1

                                                      新着記事