並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 11 件 / 11件

新着順 人気順

dependentの検索結果1 - 11 件 / 11件

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

dependentに関するエントリは11件あります。 プログラミングscalarails などが関連タグです。 人気エントリには 『GitHub - JFryy/qq: jq inspired (and gojq dependent) interoperable config format transcoder with interactive querying.』などがあります。
  • GitHub - JFryy/qq: jq inspired (and gojq dependent) interoperable config format transcoder with interactive querying.

    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 - JFryy/qq: jq inspired (and gojq dependent) interoperable config format transcoder with interactive querying.
    • Dependent method types を利用した軽量Clean Architecture の紹介

      class: center, middle # <strong>Dependent method types</strong><br/>を利用した<br/>軽量<span style="color: blue;">Clean Architecture</span><br/>の紹介 Scala関西Summit 2019 10/26 --- class: left, middle ## 自己紹介 * 中村 学(Nakamura Manabu) * [@gakuzzzz](https://twitter.com/gakuzzzz) * Tech to Value 代表取締役 * Opt Technologies 技術顧問 <img src="../images/opt_logo_1.jpg" alt="Opt Technologies" width="450" style="margin-lef

      • Rails 6.1: 関連付けをバックグラウンド削除する「dependent: :destroy_async」(翻訳)|TechRacho by BPS株式会社

        2021.01.18 Rails 6.1: 関連付けをバックグラウンド削除する「dependent: :destroy_async」(翻訳) 概要 原著者の許諾を得て翻訳・公開いたします。 英語記事: Rails 6.1 adds support for destroying dependent associations in the background | Saeloun Blog 原文公開日: 2020/11/18 著者: Prasad Walvekar サイト: Saeloun Blog | Ruby on Rails Consulting Company based in San Francisco and Boston 日本語タイトルは内容に即したものにしました。 Rails 6.1: 関連付けをバックグラウンド削除するdependent: :destroy_async(翻訳)

          Rails 6.1: 関連付けをバックグラウンド削除する「dependent: :destroy_async」(翻訳)|TechRacho by BPS株式会社
        • Density-dependent mating behaviors reduce male mating harassment in locusts

          Density-dependent mating behaviors reduce male mating harassment in locusts View ORCID ProfileKoutaro Ould Maeno, View ORCID ProfileCyril Piou, Sidi Ould Ely, Sid’Ahmed Ould Mohamed, Mohamed El Hacen Jaavar, View ORCID ProfileSaïd Ghaout, and View ORCID ProfileMohamed Abdallahi Ould Babah Ebbe aLivestock and Environment Division, Japan International Research Center for Agricultural Sciences (JIRCA

            Density-dependent mating behaviors reduce male mating harassment in locusts
          • Zoology (Blogpost 2): Simple, Input-Dependent, and Sub-Quadratic Sequence Mixers

            Table 1: Perplexity of 355 million parameter models trained for 10 billion tokens on the Pile. Yet, some subquadratic gated-convolutions match attention on the non AR slice! Can we capture the strengths of both gated convolutions and attention in one purely sub-quadratic architecture? We find the AR gap is because gated convolution models (e.g. Hyena, H3, RWKV, RetNet) need model dimension that sc

              Zoology (Blogpost 2): Simple, Input-Dependent, and Sub-Quadratic Sequence Mixers
            • How Dependent Haskell Can Improve Industry Projects

              Dependent types are a hot topic in the Haskell community. Many voices advocate for adding dependent types to Haskell, and a lot of effort is being invested towards that end. At the same time, the sceptics raise various concerns, one being that dependent types are more of a research project than a tool applicable in industrial software development. That is, however, a false dichotomy. While depende

                How Dependent Haskell Can Improve Industry Projects
              • GitHub - nashaofu/node-screenshots: Zero-dependent. A native nodejs screenshots library for Mac、Windows、Linux.

                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 - nashaofu/node-screenshots: Zero-dependent. A native nodejs screenshots library for Mac、Windows、Linux.
                • mRNAワクチン技術の発明者がワクチン接種から5か月後にスパイクタンパク質がまだ循環していることを発見。新型コロナウイルスの抗体依存性免疫増強(Antibody-Dependent Enhancement:ADE)を発見

                  ワクチンと言うのは 体の外から異物が入ってきた時に、異物だと識別・判定する。 それを異物だと認識して攻撃する。 攻撃には2種類あって、弱いけれど最低限の防御として全部を攻撃するタイプと、この異物のみに対応して攻撃をするタイプがある。 変異株が怖いイメージがあるけど、インフルエンザは毎年変異株なので真新しい現象でない。 毎年新しいタイプのワクチンが開発され、体内に入ったものが一生保つことが出来ないから、毎年任意でインフルエンザ予防接種を受けれる事になっている。 新型コロナウイルスの変異株の変化速度は一般に2週間程度と言われている。 遺伝子学の権威でマローン博士は、mRNAワクチン(およびDNAワクチン)の発明者です ADE has not been confirmed in my opinion. The better term is vaccine enhanced replication

                    mRNAワクチン技術の発明者がワクチン接種から5か月後にスパイクタンパク質がまだ循環していることを発見。新型コロナウイルスの抗体依存性免疫増強(Antibody-Dependent Enhancement:ADE)を発見
                  • has_many :through時のdependent: :destroyの挙動 - 35歳からの中二病エンジニア

                    RailsのActive Recordで多対多の関連を使う時の話。ここではClubとStudentの関係を例とする。 普通に書くと、こうなると思う。 class Club < ApplicationRecord has_many :club_students, dependent: :destroy has_many :students, through: :club_students end class Student < ApplicationRecord has_many :club_students, dependent: :destroy has_many :clubs, through: :club_students end ただ、このようにも書ける。 class Club < ApplicationRecord has_many :club_students has_many

                      has_many :through時のdependent: :destroyの挙動 - 35歳からの中二病エンジニア
                    • Fact Check-There is no evidence to suggest COVID-19 vaccines will kill people by causing antibody- dependent enhancement, current evidence demonstrates the opposite

                      Fact Check-There is no evidence to suggest COVID-19 vaccines will kill people by causing antibody- dependent enhancement, current evidence demonstrates the opposite A baseless quote has been widely attributed to a Nobel Prize winner to claim people will die from antibody-dependent enhancement after receiving a COVID-19 jab. There is no evidence to back up this claim, nor was Reuters able to find a

                        Fact Check-There is no evidence to suggest COVID-19 vaccines will kill people by causing antibody- dependent enhancement, current evidence demonstrates the opposite
                      • Rails 6.1の新機能:dependent: :destroy_async を使ってみた - 弥生開発者ブログ

                        はじめに こんにちは、 id:RKTM です。 先日乗鞍岳にバックカントリースキーに行きました。昔は弱音を吐きながら必死で下りたルートを、今回は気持ちよく颯爽と(主観ですが)滑れるようになり、スキー技術の上達を感じて嬉しかったです。 位ヶ原から乗鞍岳剣ヶ峰方面 Rails 6.1の新機能:dependent: :destroy_async を使ってみた さて、最近MisocaはRails 6.1にアップデートしました。*1 早速Rails 6.1の新機能 dependent: :destroy_async を導入しましたので、その紹介をします。 dependent: :destroy_async は、関連を非同期で削除する Railsの関連を設定する際、 親 has_many :子, dependent: :destroyという設定を書いた人は多いと思います。これは「親のレコードを削除する

                          Rails 6.1の新機能:dependent: :destroy_async を使ってみた - 弥生開発者ブログ
                        1

                        新着記事