並び順

ブックマーク数

期間指定

  • から
  • まで

281 - 307 件 / 307件

新着順 人気順

pullの検索結果281 - 307 件 / 307件

  • Stargz Snapshotter: イメージのpullを省略しcontainerdでコンテナを高速に起動する

    CloudNative Days Tokyo 2020での、lazypullに関する発表資料です。https://event.cloudnativedays.jp/cndt2020/talks/16 Stargz Snapshotterのリポジトリ: https://github.com/containerd/stargz-snapshotter Read less

      Stargz Snapshotter: イメージのpullを省略しcontainerdでコンテナを高速に起動する
    • Support pulling type information directly from `.wasm` modules by weswigham · Pull Request #39784 · microsoft/TypeScript

      To better support wasm modules under node's --experimental-wasm-modules flag. In this PR, I add a new experimentalWasmModules typescript flag, which allows one to import .wasm files directly in TS code without us issuing an error (this is only supported at runtime in node using the node flag mentioned above). When enabled, we parse the contents of referenced .wasm files for their exported function

        Support pulling type information directly from `.wasm` modules by weswigham · Pull Request #39784 · microsoft/TypeScript
      • New options for controlling the default commit message when merging a pull request

        New options for controlling the default commit message when merging a pull request pull-requests August 23, 2022 In May we shipped a setting for including the pull request title in the default commit message presented to users when squash merging a pull request. We just shipped more options for customizing the default commit message, including using the pull request's description! You can also now

          New options for controlling the default commit message when merging a pull request
        • hashicorp: deprecate and add caveat by iMichka · Pull Request #139538 · Homebrew/homebrew-core

          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

            hashicorp: deprecate and add caveat by iMichka · Pull Request #139538 · Homebrew/homebrew-core
          • Not true. by AndrewSouthpaw · Pull Request #44 · Luehang/react-native-gallery-swiper · GitHub

            Dismiss Join GitHub today GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together. Sign up

              Not true. by AndrewSouthpaw · Pull Request #44 · Luehang/react-native-gallery-swiper · GitHub
            • Remove the warning for setState on unmounted components by gaearon · Pull Request #22114 · facebook/react

              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

                Remove the warning for setState on unmounted components by gaearon · Pull Request #22114 · facebook/react
              • Only Tokyo could pull off these Games? Not everyone agrees

                The Associated Press is an independent global news organization dedicated to factual reporting. Founded in 1846, AP today remains the most trusted source of fast, accurate, unbiased news in all formats and the essential provider of the technology and services vital to the news business. More than half the world’s population sees AP journalism every day.

                  Only Tokyo could pull off these Games? Not everyone agrees
                • Amazon ECRからローカル環境にコンテナイメージをPullする方法 メモ - Qiita

                  ステージング環境などにデプロイ中のイメージを使ってローカル環境でアプリの動作確認したいケースがあったため、備忘録として手順をメモする。 手順 前提条件 AWS CLI及びdockerはインストール済みであるものとする。 ECRへアクセス可能なIAMユーザーからアクセスキー/シークレットを払い出し、aws configureコマンドで事前に認証情報をセットしておくこと。 1. ECRログイン用パスワードを取得し、dockerログインする。 aws ecr get-login-password --region ${your_region} | docker login --username AWS --password-stdin ${your_aws_account_id}.dkr.ecr.${your_region}.amazonaws.com aws ecr get-login-pas

                    Amazon ECRからローカル環境にコンテナイメージをPullする方法 メモ - Qiita
                  • 開発組織の issue や Pull Request を自動で適切な GitHub Project に割り振っていく

                    昨日自分の OSS の issue や pull request (以下 PR) を 1 つの GitHub Project に自動で集約して管理するようにしたお話を紹介しました。 昨日導入したばかりですが、今のところかなり良い感じに機能しています。 これを個人の OSS 開発だけに閉じるのはもったいなく、業務でも活用できるはずだと思いました。 今回の記事はその続きで、個人の OSS ではなく業務における開発組織の issue や PR を自動で GitHub Project に追加するようにするお話を紹介します。 やることは前回の記事とほぼ同じですが、皆さんが業務で活用するのをイメージしやすいように具体例を交えながらお話したいと思います。 最初は前回の記事に追記しようかと思いましたが、せっかく追記しても前回の記事のタイトル的に OSS を開発していない人には読んでもらえない可能性がある気

                      開発組織の issue や Pull Request を自動で適切な GitHub Project に割り振っていく
                    • [実践] はじめてのPull Requestをやってみよう - Qiita

                      はじめに Pull Requestをするために、誰かのコードを見て何か物申すのも面倒ってことで、手軽にPull Requestをする方法を考えました。 ぜひ、最後まで見てPull Requestをやってみてください。 (※今回はサンプルとしてhtmlを使いますが、htmlの知識は必要ではないです。) 5~10分程度でできるのでやったことがない人はさくっとやってみてください!! ※実践編なので、細かい言葉の定義などはここでは取り扱いません。 対象ユーザ gitを始めてばかりの人 はじめてPull Requestをする/したい人 仕事やインターンでする必要が出た人 その他、gitを使っている人など 準備 Githubのアカウントがなければできないのでこちらから作成してください。 gitの導入などは他サイトを参照してください。 Forkする 今回はForkという機能を使ってPull Reques

                        [実践] はじめてのPull Requestをやってみよう - Qiita
                      • GitHub Actions を用いて Pull-Request で shellcheck をする方法 - Qiita

                        はじめに (Ba)sh スクリプトを静的解析してくれる便利なツール shellcheck が、GitHub Actions 標準の実行環境 から使えるので Pull-Request に含まれた (Ba)sh を自動的にチェックをする ワークフローを書きました。 実行結果 ワークフローのサンプル 2022-10-25追記: checkout 時に fetch-depth: 0 オプションを使わない方法を思いついたので以下サンプルを更新しました。2 回 checkout している 理由は GitHub Actions を用いて Pull-Request で変更されたファイル一覧を取り出す方法 に詳細があります。 name: Static analysis on: pull_request: types: [opened, synchronize] paths: '**.sh' jobs: sh

                          GitHub Actions を用いて Pull-Request で shellcheck をする方法 - Qiita
                        • GitHub Desktop 3.0でPull Requestとのインテグレーションを強化

                          エンジニアが重要なことに集中できるよう、バージョン管理はシンプルかつ簡単であるべきです。そのために、GitHub Desktopは世界中の開発者のワークフローを簡素化できるように設計されています。そして本日、GitHub Desktopはバージョン 3.0のリリースという大きな節目を迎えました。このバージョンでは、Commitのsquash、並べ替え、修正といったGit操作のサポートが改善されているほか、GitHubをローカル開発ワークフローに近付ける魅力的な新機能が追加されています。 Pull Request Checkで実行ステータスを確認 GitHub Desktop 3.0では、Pull Request チェックでステータスを確認することで、本稼働環境に向けてソースコードを準備できるようになりました。Pull Request番号のバッジをクリックするだけで、チェック、ジョブ、ステッ

                            GitHub Desktop 3.0でPull Requestとのインテグレーションを強化
                          • 解決!dockerでイメージをpullしたらdocker: Error response from daemon: pull access denied for repository does not exist or may require ‘docker login’

                            HOME覚えたこと解決!dockerでイメージをpullしたらdocker: Error response from daemon: pull access denied for repository does not exist or may require 'docker login' dockerのお勉強中です。 docker hubからイメージを取得しようとしたところ下記エラーがでました。 docker: Error response from daemon: pull access denied for dcker/whalesay, repository does not exist or may require ‘docker login’. See ‘docker run –help’. docker for macではログインできているし、なんでだろー?と思っていたら ど

                              解決!dockerでイメージをpullしたらdocker: Error response from daemon: pull access denied for repository does not exist or may require ‘docker login’
                            • Axolo | GitHub Slack integration for pull requests

                              Better Code Reviews, Less Hassle, All in SlackAxolo takes your team's code review practices to the next level, integrating seamlessly with Slack to deliver real-time notifications and natural discussions. Enhance developer experienceFoster real-time, in-context discussions improving team collaboration and increasing developer satisfaction. Axolo creates a more enjoyable code review workflow. See o

                                Axolo | GitHub Slack integration for pull requests
                              • GitHubのDraft Pull Request を活用しよう - SO Technologies 開発者ブログ

                                こんにちは。ATOM事業部エンジニアのyuinaです。 Githubの Draft Pull Request という機能をご存知でしょうか? とても便利な機能のため、ご紹介します。 github.blog Draft Pull Request を使うメリット 通常、PullRequestを作るのは以下のタイミングかと思います。 作ったコードをマージしたい時 作ったコードをとりあえず見てほしい時 コードの実装方針についてディスカッションをしたい時 コードをマージしたい時は通常のPRをそのまま出し、コードをマージしたい時以外はWIPをつける運用が一般的ではないでしょうか。 WIP管理には様々な方法があると思います。 開発者間でのルールのみで運用することもあるでしょうし、Github AppsのWIPというアプリを導入するのもよく見る光景かもしれません。 github.com もしアプリを導入す

                                  GitHubのDraft Pull Request を活用しよう - SO Technologies 開発者ブログ
                                • Cap cookie lifetimes to 7 days for responses from third party IP addresses by whsieh · Pull Request #5347 · WebKit/WebKit

                                  b0305b1 Cap cookie lifetimes to 7 days for responses from third party IP addresses https://bugs.webkit.org/show_bug.cgi?id=246477 rdar://100831206 Reviewed by John Wilander. Safari currently caps the lifetime of cookies to 7 days, if third-party CNAME cloaking is detected. This helps to mitigate many instances where CNAME cloaking is used to store cookies on device (in the first party context) for

                                    Cap cookie lifetimes to 7 days for responses from third party IP addresses by whsieh · Pull Request #5347 · WebKit/WebKit
                                  • Add Bun support by terracatta · Pull Request #167 · rails/jsbundling-rails

                                    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

                                      Add Bun support by terracatta · Pull Request #167 · rails/jsbundling-rails
                                    • `--moduleResolution bundler` (formerly known as `hybrid`) by andrewbranch · Pull Request #51669 · microsoft/TypeScript

                                      This PR introduces a new moduleResolution setting value called hybrid bundler (see #51714), designed primarily for bundlers and runtimes that include a range of Node-like resolution features and ESM syntax, but do not enforce the strict resolution rules that accompany ES modules in Node or in the browser. Special consideration has also been given for bundlers and runtimes that understand TypeScrip

                                        `--moduleResolution bundler` (formerly known as `hybrid`) by andrewbranch · Pull Request #51669 · microsoft/TypeScript
                                      • RJIT by k0kubun · Pull Request #7448 · ruby/ruby

                                        full diff1: 55367b3...22d944c Description This PR replaces the current implementation of MJIT with a new JIT called "RJIT" 2. RJIT uses a pure-Ruby assembler to generate native code MJIT requires a C compiler at runtime. YJIT requires a Rust compiler at build time. RJIT doesn't require them. This means that RJIT's warmup could be slower than YJIT, but it's still much faster than MJIT's. The code g

                                          RJIT by k0kubun · Pull Request #7448 · ruby/ruby
                                        • Javascript symbols by ginpei · Pull Request #1 · ginpei/books.ginpei.dev

                                          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

                                            Javascript symbols by ginpei · Pull Request #1 · ginpei/books.ginpei.dev
                                          • Inflation divide: The wealthy splurge, the poorest pull back

                                            Turn on desktop notifications for breaking stories about interest? Inflation divide: The wealthy splurge, the poorest pull backAmericans at the low end of the income rung are once again struggling to make ends meet In this image provided by the Northern Illinois Food Bank, food items from the Northern Illinois Food Bank are ready to be handed out on May 26, 2022, in Rockford, Ill. Americans at the

                                              Inflation divide: The wealthy splurge, the poorest pull back
                                            • 🆕 Pull Request File Tree (Beta) Feedback · community · Discussion #12341

                                              For the past few months, we've been working hard to improve the Pull Request experience. One of the features we're most excited about: Pull Request File Tree. The new tree: Jump between files more quickly Understand the size and scope of the change before you start reviewing Focus your review by filtering the tree on part of a file or folder name See the changelog for [a few more] details. What yo

                                                🆕 Pull Request File Tree (Beta) Feedback · community · Discussion #12341
                                              • Rust rewrite by DeMoorJasper · Pull Request #52 · parcel-bundler/source-map

                                                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

                                                  Rust rewrite by DeMoorJasper · Pull Request #52 · parcel-bundler/source-map
                                                • Github Packages に Docker イメージを Push/Pull した時のメモ - Qiita

                                                  Github Packagesに Docker イメージを Push/Pull した時のメモ。 トークン情報を取得する docker login の時のトークン情報を以下のドキュメントに従い、取得します Creating a personal access token for the command line 厳密な確認をしていませんが、以下の権限を付与 write:packages(Upload packages to github package registry) read:packages(Download packages from github package registry) Docker イメージの Push/Pull をする 以下の通りやっていきます Configuring Docker for use with GitHub Packages まずは先程の認証情報を利

                                                    Github Packages に Docker イメージを Push/Pull した時のメモ - Qiita
                                                  • util: add parseArgs module by bcoe · Pull Request #42675 · nodejs/node

                                                    Adds util.parseArgs helper for higher level command-line argument parsing. Background There has been an ongoing effort in pkgjs/parseargs to define a command-line argument parsing API for Node.js core. The effort has taken several years to get to this point, with many amazing contributors across a variety of companies and projects: IBM, Microsoft, Google, Shopify, npm, nvm, commander, yargs, just

                                                      util: add parseArgs module by bcoe · Pull Request #42675 · nodejs/node
                                                    • Get more information at a glance with issue and pull request linking

                                                      AI & MLLearn about artificial intelligence and machine learning across the GitHub ecosystem and the wider industry. Generative AILearn how to build with generative AI. GitHub CopilotChange how you work with GitHub Copilot. LLMsEverything developers need to know about LLMs. Machine learningMachine learning tips, tricks, and best practices. How AI code generation worksExplore the capabilities and be

                                                        Get more information at a glance with issue and pull request linking
                                                      • Https imports by bmeck · Pull Request #36328 · nodejs/node

                                                        This allows for HTTPS (not HTTP) imports to work with the ESM module loader. This PR is only an initial PR for incremental progress behind a flag. Supported concerns Disabled by default - requires --experimental-https-modules flag Redirects - act like web Selective HTTP support - only works on loopback Debugging HTTPS on a local machine is painful - use loopback + http: Cannot access node: builtin

                                                          Https imports by bmeck · Pull Request #36328 · nodejs/node