タグ

asyncに関するgfxのブックマーク (30)

  • Learn web development  |  web.dev

    Stay organized with collections Save and categorize content based on your preferences. Explore our growing collection of courses on key web design and development subjects. An industry expert has written each course, helped by members of the Chrome team. Follow the modules sequentially, or dip into the topics you most want to learn about.

    Learn web development  |  web.dev
  • The Netflix Tech Blog: Going Reactive — Asynchronous JavaScript at Netflix

    The Netflix Tech Blog: Going Reactive — Asynchronous JavaScript at Netflix Link: The Netflix Tech Blog: Going Reactive — Asynchronous JavaScript at Netflix Our own Jafar Husain shared how we’re using the Reactive Extensions (Rx) library to build responsive UIs across our device experiences. Pretty impressive talk on Rx by Netflix. Looks like a great alternative to Promises, on handling asynchronou

    The Netflix Tech Blog: Going Reactive — Asynchronous JavaScript at Netflix
    gfx
    gfx 2014/05/18
  • neue cc - asyncの落とし穴Part3, async voidを避けるべき100億の理由


    Part3 async void vs async Task async TaskvoidvoidTaskawaitawait Task.WhenAllasync Task async voidvoidb
    gfx
    gfx 2013/10/10
  • Future と Promise

    ⚠️ Beware of Scams: since Feb 2024, scammers are using fake Scala websites to sell courses, please check you are using an official source. Philipp Haller, Aleksandar Prokopec, Heather Miller, Viktor Klang, Roland Kuhn, Vojin Jovanovic 著 Eugene Yokota 訳 概要 Future は並列に実行される複数の演算を取り扱うのに便利な方法を提供する。それは効率的でノンブロッキングな方法だ。 大まかな考え方はシンプルなもので、Future はまだ存在しない計算結果に対するプレースホルダのようなものだ。 一般的に、Future の結果は並行に計算され後で集計す

    gfx
    gfx 2013/09/03
  • .NET最先端技術によるハイパフォーマンスウェブアプリケーション

    コンテナとimmutableとわたし。あとセキュリティ。(Kubernetes Novice Tokyo #15 発表資料)

    .NET最先端技術によるハイパフォーマンスウェブアプリケーション
    gfx
    gfx 2013/06/09
  • Async in C# and F#: Asynchronous gotchas in C# (Japanese translation)

    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

    Async in C# and F#: Asynchronous gotchas in C# (Japanese translation)
    gfx
    gfx 2013/05/13
  • 時代は AsyncTask より AsyncTaskLoader


     AsyncTask  AsyncTaskLoader Android 4.0 Ice Cream sandwich OSAndroid   Activity AsyncTask Android 3.0  AsyncTaskLoader   Activity Service   4.0 
    時代は AsyncTask より AsyncTaskLoader
  • async/await不要論

    並列/並行基礎勉強会での発表資料です。 補足エントリもどうぞ。 http://bleis-tift.hatenablog.com/entry/asyncawaitdis

    async/await不要論
  • async/awaitと同時実行制御

    C# 5.0のasync/awaitを使うと、多くの場面ではシングル スレッド的な動作になるし、多くの場面ではlock不要(結果的に、デッドロックが起こりようなくなる)になったりします。 ただし、「多くの場面で」。「必ず」ではないのがはまりどころ。いくつかの場面では、同時実行制御が必要です(普通にマルチスレッドの平行実行になるので、同時に同じデータにアクセスされる可能性を考慮しないとバグります)。 前提知識 いくつか、C# 5.0世代の非同期処理についての前提知識は、以下のスライド(先月末の.NETラボでの発表)を参考にしてください。 5~12ページ: async/awaitの書き方 17~22ページ: スレッドとそのコスト 24~26ページ: スレッド プール 29~32ページ: I/O完了待ちと非同期API 36~40ページ: UIスレッドとディスパッチャー 41~45ページ: 同期コ

    async/awaitと同時実行制御
    gfx
    gfx 2013/02/22
  • Promises/Future と Async::Defer - DebugIto's diary


    You're Missing the Point of Promises · GitHub "That Second Paragraph"Promises4  (fulfilled and accepted)  (fufilled but rejected)  (rejected but handled) rethrow (rejected and rethrown
    Promises/Future と Async::Defer - DebugIto's diary
  • Promises - An implementation of Promises in Perl - metacpan.org

    NAME Promises - An implementation of Promises in Perl VERSION version 1.04 SYNOPSIS use AnyEvent::HTTP; use JSON::XS qw[ decode_json ]; use Promises qw[ collect deferred ]; sub fetch_it { my ($uri) = @_; my $d = deferred; http_get $uri => sub { my ($body, $headers) = @_; $headers->{Status} == 200 ? $d->resolve( decode_json( $body ) ) : $d->reject( $body ) }; $d->promise; } my $cv = AnyEvent->condv

  • TameJS と Fiber による非同期処理の記述 (1/2) - KrdLab's blog


    21 TameJS2 node-fibers  *1   TameJS  TameJS  TameJS    Node.js *2  ""  control flow  使*3 TameJS await/defer  TameJS  TameJS tj
    TameJS と Fiber による非同期処理の記述 (1/2) - KrdLab's blog
  • クロージャーだと苦労するんじゃ?(ダジャレ) - やねうらおブログ(移転しました)

    closureで継続(continuation)を実現する技法ってあるじゃないですか。 例えば次の記事は私が5年以上前に書いてますね。 C#2.0時代のゲームプログラミング(49) 〜 delegateを用いたcontinuation http://d.hatena.ne.jp/yaneurao/20070207 上の技法は私は10年ぐらい前にclosureを使い出したころに自力で発見しましたが、まあ、いまや常識ですよね。それで最近、それに似た話題があったので取り上げてみます。 ここで再度認識して欲しいのは、node.js の素晴らしさは「クライアント側で皆が使っているJavaScriptでプログラムが書ける」という部分などにあるのではない、という点だ。node.js がこれほど多くの支持者を得ているのは「来記述が煩雑になりやすい非同期処理をJavaScriptの無名関数を利用して書きや

    クロージャーだと苦労するんじゃ?(ダジャレ) - やねうらおブログ(移転しました)
    gfx
    gfx 2012/10/30
    jsthreadというものもありますが、こちらも普及はしないでしょうね…。
  • 非同期処理をシンプルに書けるJavaScriptライブラリ「TameJS」


    Tame is an extension to JavaScript that makes event programmingeasier to write, read, and edit. JavaScript TameJSTameJS1HTTPOkCupid 
  • 非同期入出力の残念な現状


    asynchronous disk I/O | libtorrent blog Libtorrent experience - the poor state of async disk IO | Hacker News libtorrentI/OI/OI/OI/OHacker News I/OOS  OSOSI/O LinuxA
  • はてなグループの終了日を2020年1月31日(金)に決定しました - はてなの告知


    2020131()  2019 -   : 2020131() :2020131() 稿 稿 -   2020-06-25  2020228
    はてなグループの終了日を2020年1月31日(金)に決定しました - はてなの告知
  • quickrun.vim で非同期実行できるようにした - 永遠に未完成


     ujihisa  correr.vim quickrun.vim 0.4.0 使 GitHub - thinca/vim-quickrun at v0.4.0: Run commands quickly. 使  Vim  +clientserver  echo has('clientserver') 1OK v:servername  echo v:servername OK Vim  vim --servername VIM  Vim
    quickrun.vim で非同期実行できるようにした - 永遠に未完成
    gfx
    gfx 2012/09/14
  • 非同期で動作するVim用のシンタックスチェックプラグインを開発しています - 日記


     activefix.vim   Vim GitHub - vim-syntastic/syntastic: Syntax checking hacks for vim  syntastic  GitHub - Shougo/vimproc.vim: Interactive command execution in Vim.vimprocsyntastic
    非同期で動作するVim用のシンタックスチェックプラグインを開発しています - 日記
    gfx
    gfx 2012/09/14
  • 非同期処理(C# によるプログラミング入門)


      201010 CTP community technology preview  async await Ver. 5.0 使2 : I/O  UI :  Parallel  Parallel LINQ   LINQ 使  []   as
    非同期処理(C# によるプログラミング入門)
    gfx
    gfx 2012/06/03
  • node.js におけるエラー処理のコーディングパターン (もしくは非同期 JavaScript における例外処理) - kazuhoのメモ置き場


    node.js  JavaScript 使 Java countChars  class FileCounter { static long countChars(String filename) throws IOException { FileInputStream is = new FileInputStre
    node.js におけるエラー処理のコーディングパターン (もしくは非同期 JavaScript における例外処理) - kazuhoのメモ置き場