並び順

ブックマーク数

期間指定

  • から
  • まで

321 - 360 件 / 837件

新着順 人気順

interfaceの検索結果321 - 360 件 / 837件

  • [ERROR]Linux Native AIO interface is not supported on this platform. Please check your OS documentation and install appropriate binary of InnoDB.の対処法 - Qiita

    [ERROR]Linux Native AIO interface is not supported on this platform. Please check your OS documentation and install appropriate binary of InnoDB.の対処法RailsDockerMySQL8.0

      [ERROR]Linux Native AIO interface is not supported on this platform. Please check your OS documentation and install appropriate binary of InnoDB.の対処法 - Qiita
    • App::Yath - Yet Another Test Harness (Test2-Harness) Command Line Interface (CLI) - metacpan.org

      NAME App::Yath - Yet Another Test Harness (Test2-Harness) Command Line Interface (CLI) DESCRIPTION This is the primary documentation for yath, App::Yath, Test2::Harness. The canonical source of up-to-date command options are the help output when using $ yath help and $ yath help COMMAND. This document is mainly an overview of yath usage and common recipes. App::Yath is an alternative to App::Prove

      • Apple、iOS開発者&デザイナー向けガイドライン「Human Interface Guidelines」のSiriKitをSiriセクションとしアップデート。

        AppleがiOS開発者&デザイナー向けガイドライン「Human Interface Guidelines」のSiriKitをSiriセクションとしアップデートしています。詳細は以下から。 AppleのDesign Evangelism Managerを務めるMike Sternさんは現地時間2020年02月20日、Appleが開発者やデザイナー向けに公開している「Human Interface Guidelines」のSiriのセクションを大幅にアップデートしたと発表しています。 Massive update to the #Siri section of the Human Interface Guidelines went live yesterday! If you're working on adding Siri support to your app, this is a m

          Apple、iOS開発者&デザイナー向けガイドライン「Human Interface Guidelines」のSiriKitをSiriセクションとしアップデート。
        • JSI (JavaScript Interface) & JSC (JavaScript Core) Discussion · Issue #91 · react-native-community/discussions-and-proposals

          What's the current status of JSI? Read here Intro With this issue I'd like to try and create a "one stop" for all the information available around the JavaScript Interface, the unified lightweight general purpose API for (theoretically) any JavaScript virtual machine. Currently, the default Javascript Virtual Machine used by React Native is JavaScriptCore (JSC) - it is used in WebKit. Terminology

            JSI (JavaScript Interface) & JSC (JavaScript Core) Discussion · Issue #91 · react-native-community/discussions-and-proposals
          • GitHub - globtec/phpadr: A PHP based command-line interface tool for working with Architecture Decision Records (ADR)

            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 - globtec/phpadr: A PHP based command-line interface tool for working with Architecture Decision Records (ADR)
            • [Kotlin] v1.5.0 で Stable になった Sealed Interface を試してみる

              はじめにKotlin の v1.5.0 から Sealed Interface が Stable になったので試してみる 今までは Sealed Class でクラスのみ定義できたが、 Sealed Interface でインタフェースが定義できるようになった。Sealed Interface は Sealed Class と同じような動作をするがインタフェースなので複数インタフェースを組み合わせたクラスを実装できるようになった。今回は Sealed Class と Sealed Interface でどんな違いがあるか検証するために以下の仕様を満たす Event を Sealed Class と Sealed Interface の両方で実装してみようかなと思います。 正常系の Event であれば navigationId を含めて特定の画面に遷移できるようにする。異常系の Event

                [Kotlin] v1.5.0 で Stable になった Sealed Interface を試してみる
              • How to define static property in TypeScript interface

                I just want to declare a static property in typescript interface? I have not found anywhere regarding this. interface myInterface { static Name:string; } Is it possible?

                  How to define static property in TypeScript interface
                • interface-types/proposals/interface-types/Explainer.md at main · WebAssembly/interface-types

                  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

                    interface-types/proposals/interface-types/Explainer.md at main · WebAssembly/interface-types
                  • GitHub - atc1441/CH559sdccUSBHost: USB host to Arduino Interface with the Cheap CH559 uC

                    Code for the CH559 chip from WCH to use as a USB host, you can connect a mouse or keyboard to it and it will output a simple protocol via serial port 1. you can edit the files and compile it via the compile.bat on windows, sdcc is included, so no extra tools needed. This repo is made together with this explanation video:(click on it) NEW: the chflasher.exe can be used to upload a bin firmware to c

                      GitHub - atc1441/CH559sdccUSBHost: USB host to Arduino Interface with the Cheap CH559 uC
                    • AutoItでUIAutomation Interfaceを使う その2(推奨)

                      先日、UI Automation UDFの記事を書きましたが、中身はSetFocus()後Send()していたりと、簡単に使える分ちょっとな・・というところもありました。 今回は、IUIAutomation Interfaceを使う=Microsoft UIAutomationを直接使うことを行います。高速ですが、その分多少複雑。だけどUI Automation UDFには実装されていないものも当然使えます。慣れたらこっちのほうが良いかもしれませんね。 こっちだと、vba uiautomationとかで出てきたサンプルをほぼそのまま使えることになると思います。

                        AutoItでUIAutomation Interfaceを使う その2(推奨)
                      • 20190724 AWS Black Belt Online Seminar AWS Command Line Interface

                        20190724 AWS Black Belt Online Seminar AWS Command Line Interface 1. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. AWS 公式 Webinar https://amzn.to/JPWebinar 過去資料 https://amzn.to/JPArchive アマゾンウェブサービスジャパン ソリューションアーキテクト 内田 大樹 2019/7/24 AWS Command Line Interface サービスカットシリーズ [AWS Black Belt Online Semi

                          20190724 AWS Black Belt Online Seminar AWS Command Line Interface
                        • Explanation of checking if value implements interface

                          I've read "Effective Go" and other Q&As like this: golang interface compliance compile type check , but nonetheless I can't understand properly how to use this technique. Please, see example: type Somether interface { Method() bool } type MyType string func (mt MyType) Method2() bool { return true } func main() { val := MyType("hello") //here I want to get bool if my value implements Somether _, o

                            Explanation of checking if value implements interface
                          • Golang の interface型 で JSON のキーなしか NULL を判定したい

                            JSON(JavaScript Object Notation)は軽量なデータ記述言語の1つである。構文はJavaScriptをベースとしていますが、JavaScriptに限定されたものではなく、様々なソフトウェアやプログラミング言語間におけるデータの受け渡しが行えるように設計されています。

                              Golang の interface型 で JSON のキーなしか NULL を判定したい
                            • Unity:インスペクターでInterfaceを可視化する、SerializeReferenceの使い方(Inspector、神機能?、unity2019.3) | Unity+AssetStoreおすすめ情報

                              interface IData { } enum DataType { User, Address, Tel } class DataA : IData { public DataType type = DataType.User; public int age; public string firstName; public string lastName; } class DataB : IData { public DataType type = DataType.Address; public string zipCode; public string address; } class DataC : IData { public DataType type = DataType.Tel; public string tel; }

                                Unity:インスペクターでInterfaceを可視化する、SerializeReferenceの使い方(Inspector、神機能?、unity2019.3) | Unity+AssetStoreおすすめ情報
                              • 「Interface 2021年10月号」の特集は「3Dプリンタ&メカ設計入門」|fabcross

                                CQ出版から2021年8月25日発売予定の「Interface 2021年10月号」の特集テーマは、「3Dプリンタ&メカ設計入門」となる。 「特集 3Dプリンタ&メカ設計入門」の第1部では「Pythonで3Dモデリング」と題して、Pythonで記述する3Dモデルやマイコンボード用ケース作製の実例などを紹介。第2部の「3Dプリンタ入門」では、初心者向けの3Dプリンター選択方法や造形時のポイント、3D CADを使ったモデリングなどについて解説する。第3部は「メカ設計入門」として、3D CADの選び方やメカ設計向けの3Dモデリングの初歩、さらにプロの設計手順に沿ったRaspberry Piカメラケースの設計例などについて解説する。 「特集2 C/C++でMicroPython拡張」では、Raspberry Pi PicoとRZマイコンによる開発環境の構築などの準備作業や拡張事例などを紹介する。

                                  「Interface 2021年10月号」の特集は「3Dプリンタ&メカ設計入門」|fabcross
                                • unexportedなmethodを持つGoのinterfaceとsum type - 3日経てば忘れる

                                  何か書けと後輩に詰められたので、寝る前に雑に調べごとをしてメモを残しておくことにする。 これは8日目。 adventar.org Goのinterfaceに書けるメソッド名にはidentifierが指定されているだけで特に制限が無い。 つまり、unexportedなメソッドを定義することができる。 InterfaceType = "interface" "{" { ( MethodSpec | InterfaceTypeName ) ";" } "}" . MethodSpec = MethodName Signature . MethodName = identifier . InterfaceTypeName = TypeName . ( https://golang.org/ref/spec#Interface_types より ) 周りのコードを見渡してみると、例えば reflec

                                    unexportedなmethodを持つGoのinterfaceとsum type - 3日経てば忘れる
                                  • Your CSS is an interface

                                    My partner is learning Japanese using the Duolingo app. They’ve been dutifully opening the app and doing daily challenges for over 400 days now. A few days ago, they shared this screenshot with me: If I could wager a guess, it looks like there was a bug with dark mode color logic on their multiple choice button component. I totally get it. Managing color across a mature application like Duolingo i

                                      Your CSS is an interface
                                    • Amazon VPC now supports primary IPv6 address on an elastic network interface

                                      Amazon Web Services (AWS) announces the launch of primary IPv6 address in a Virtual Private Cloud (VPC), enabling customer to make the first IPv6 address associated with their elastic network interface (ENI) immutable. Once the first IPv6 address is made primary on the ENI, the IPv6 address cannot be removed as long as the ENI is attached to an instance or until the instance is terminated, effecti

                                        Amazon VPC now supports primary IPv6 address on an elastic network interface
                                      • AWS CLIの最新バージョンのインストールまたは更新 - AWS Command Line Interface

                                        翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。 AWS CLIの最新バージョンのインストールまたは更新 このトピックでは、サポート対象のオペレーティングシステムに AWS Command Line Interface (AWS CLI) の最新リリースをインストールまたは更新する方法について説明します。の最新リリースについては AWS CLI、AWS CLI バージョン 2 の Changelog を参照してください。 GitHub の過去のリリースをインストールするには AWS CLI、を参照してください。AWS CLI バージョン 2 の過去のリリースをインストールアンインストール手順については、「AWS CLI バージョン 2 のアンインストール」を参照してください。

                                        • Arduino Gets A Command Line Interface

                                          When using an Arduino, at least once you’ve made it past blinking LEDs, you might start making use of the serial connection to send and receive information from the microcontroller. Communicating with the board while it’s interacting with its environment is a crucial way to get information in real-time. Usually, that’s as far as it goes, but [Pieter] wanted to take it a step farther than that with

                                            Arduino Gets A Command Line Interface
                                          • Oculus Rift CV1 Printable Facial Interface

                                            Oculus Rift CV1 Printable Facial Interface というのを印刷してみた。 そもそもRiftのパーツはすべてCADデータが公開されているので、作ろうと思えば複製は作れる。 上のデータは少し改良してあってプリントするのに若干都合のいい形にアレンジされているようだ。 普段からサポートの必要なものは極力印刷せず、分割するか形を工夫するかしてしまうが、今回はそうもいかない。 なぜサポートを嫌っていたかというと、余分な時間がかかるし、フィラメントは無駄になるし、うまく除去できないしと思っていたからだ。 今回やってみて、思ったより簡単にはがせて、きれいに取り除けた。 全く問題なくHMDに取り付け出来て、そのまましばらく使っても機能に全く問題はなかった。 メガネの度が若干甘くなってきているので、スポンジの分近づくとピントがシャープになった。 メガネを買い替えるよりこの

                                            • Skyrim Interface Bsa Download - comparelasopa

                                              This tutorial will describe the process of extracting files from Skyrim's BSA (Bethesda Softworks Archive) files. The extracted files will allow you to access the animations, models, sounds / voices and textures. Skyrim -Interface.bsa は The Elder Scrolls V: Skyrim がインストールされているディレクトリのうち、Dara ディレクトリの中にある、ユーザインタフェースに関わるBSAファイルのひとつ。公式日本語版ではこのファイルは英語版とは別のものになっている。公式日本語版のテキストを使って The Elder Scrolls V. Sk

                                                Skyrim Interface Bsa Download - comparelasopa
                                              • all: rewrite `interface{}` to `any` · Issue #49884 · golang/go

                                                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

                                                  all: rewrite `interface{}` to `any` · Issue #49884 · golang/go
                                                • Relay/GraphQL: De-mystifying Node Interface/ID

                                                  Summary Node ID is a ‘mysterious’ little thing in Relay/GraphQL; the Facebook tutorial presented it upfront with little explanation and fanfare, and it ‘just works’. We explain a scenario where it won’t just work, and in the process shed light on when, and how it is actually used by Relay/GraphQL. Armed with that knowledge we hope you can identify other scenarios when it needs more care. OverviewT

                                                    Relay/GraphQL: De-mystifying Node Interface/ID
                                                  • GitHub - sferik/x-ruby: A Ruby interface to the X API.

                                                    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 - sferik/x-ruby: A Ruby interface to the X API.
                                                    • オンラインサロン事業部 Human Interface Guidelines輪読会の取り組み - DMM inside

                                                      |DMM inside

                                                        オンラインサロン事業部 Human Interface Guidelines輪読会の取り組み - DMM inside
                                                      • Rust の Foreign Function Interface (FFI) - Qiita

                                                        この宣言部分です。抽象的なC言語としてはこの宣言だけあれば どこかにある func_a() 関数に処理を移せば良い事は定まっているため、このプログラムはどのように実行すればいいか定まりコンパイル出来るわけです。このような言語内のインターフェースを一般にAPIと呼びます。このレベルでC言語はどのような処理系でコンパイルするか、LinuxなのかWindowsなのかに依らないのでAPIは移植性がある一方、C言語内の概念になるので他の言語からは呼び出せません。 一方リンクの話で書いたように、Linux/GCCではこの宣言はオブジェクト main.o には func_a は Undefined なシンボルとして含まれ、リンク時にどうやって呼び出されるかが決まります。共有ライブラリの場合はさらに実行時に ld-linux.so が探してくるんでしたね。このように main.o の中にある機械語(例えば

                                                          Rust の Foreign Function Interface (FFI) - Qiita
                                                        • Audio Interface No Signal - lasopaft

                                                          Nov 29, 2011 - All of a sudden, Garageband no longer receives any signal from either mic. The signal gets to the interface but doesn't make it into Garageband. If the Monitor volume knob on your Apollo is blinking and you have no audio output, then you may have the DIM function enabled with the DIM AMOUNT set too high in the Console application. The settings for the DIM function are found on the C

                                                            Audio Interface No Signal - lasopaft
                                                          • GitHub - tadashi-aikawa/mobile-first-daily-interface: Obsidianにてモバイルに最適なインターフェースでデイリーノートを扱うプラグインです。

                                                            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 - tadashi-aikawa/mobile-first-daily-interface: Obsidianにてモバイルに最適なインターフェースでデイリーノートを扱うプラグインです。
                                                            • Meet MeeBlip's new cubit duo, USB MIDI interface and thru box all in one - CDM Create Digital Music

                                                              Meet MeeBlip’s new cubit duo, USB MIDI interface and thru box all in one We’re pleased to introduce our latest addition to the MeeBlip line – the simple but essential interface and thru box for MIDI we needed ourselves. Here’s cubit duo. You know the need. You’ve got some MIDI gear, and you need to connect it to your computer – or your iPad, or a phone, or a Raspberry Pi. You want it to work via U

                                                                Meet MeeBlip's new cubit duo, USB MIDI interface and thru box all in one - CDM Create Digital Music
                                                              • [Amazon Connect] チャットクライアントを設置してみました。(amazon-connect-chat-interface.jsを利用) | DevelopersIO

                                                                [Amazon Connect] チャットクライアントを設置してみました。(amazon-connect-chat-interface.jsを利用) 1 はじめに CX事業本部の平内(SIN)です。 Amazon Connect(以下、Connect)では、先月から、音声での対応に加えて、チャットでの利用も可能になっています。 今回は、Amazonで提供されている、下記のチャットクライアントの設置を試してみました。 Github startChatContactAPI 上記のリポジトリでは、CFnも提供されており、設置するだけなら超簡単なのですが、ちょっと仕組みを確認したかったのと、少しでも理解が深まるようにと、CFnを使用せずに設置してみました。 最初に、利用している様子です。 2 インスタンス・コンタクトフロー チャット設置には、対象となるConnectのインスタンス及び、接続先のコン

                                                                  [Amazon Connect] チャットクライアントを設置してみました。(amazon-connect-chat-interface.jsを利用) | DevelopersIO
                                                                • Container Storage Interface のすべて

                                                                  わかる!metadata.managedFields / Kubernetes Meetup Tokyo 48Preferred Networks

                                                                    Container Storage Interface のすべて
                                                                  • GitHub - NiloCK/tuido: a text user interface for navigating [x]it! spec todo across multiple files

                                                                    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 - NiloCK/tuido: a text user interface for navigating [x]it! spec todo across multiple files
                                                                    • Meet the new Human Interface Guidelines - Discover - Apple Developer

                                                                      Apple’s Human Interface Guidelines (HIG) is a comprehensive resource for designers and developers looking to create great experiences across Apple platforms. Now, it’s been fully redesigned and refreshed to meet your needs — from your first sketch to the final pixel. Explore the Human Interface Guidelines The HIG has merged its platform-specific guidance into a unified document, making it simpler

                                                                        Meet the new Human Interface Guidelines - Discover - Apple Developer
                                                                      • GitHub - quantumsheep/sshs: Terminal user interface for SSH

                                                                        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 - quantumsheep/sshs: Terminal user interface for SSH
                                                                        • How to pick a Typeface for User Interface and App Design? - Pimp my Type

                                                                          How to pick a Typeface for User Interface and App Design? What should you pay attention to when choosing a font for your user interface or app? In this article and video I cover what to look for. I also pick on Hellvetica (yes, Hell-vetica) so you won’t pick it as a typeface for your functional text. TL;DR: For your UI or app select a typeface with clean distinctive characters (Il1 test), open sha

                                                                            How to pick a Typeface for User Interface and App Design? - Pimp my Type
                                                                          • 【Golang】Golangのinterfaceで知っておくとお得なTips - Qiita

                                                                            概要 去年の8月に社会人エンジニアになり、今年の2月までAPIサーバーの開発をRuby on Railsで行なっていた新卒Rubyistです。 3月にサーバーサイドを全てGolangで行う会社に転職しました。今までRailsでの業務が多かったため、interface{}という概念がどうしても身につきませんでしたが、ある程度業務に慣れ、戦い続けて学んだことをまとめようと思いました。 Golangのinterfaceについては知見は多くあるのですが、今年はアウトプットを大事にしていきたいという目標から、記事にまとめました。 下に読む前に Golangのインタフェースは型の1つです。 string や int64 が関数を持っているように、インタフェースで型を宣言してその型に関数を持たせることができます。 構造体がインタフェースで宣言されているGetRadius関数を持つと、この構造体の型はCi

                                                                              【Golang】Golangのinterfaceで知っておくとお得なTips - Qiita
                                                                            • Service Mesh Interfaceの紹介 - Brendan Burns氏のQCon New Yorkでの講演より

                                                                              Spring BootによるAPIバックエンド構築実践ガイド 第2版 何千人もの開発者が、InfoQのミニブック「Practical Guide to Building an API Back End with Spring Boot」から、Spring Bootを使ったREST API構築の基礎を学んだ。この本では、出版時に新しくリリースされたバージョンである Spring Boot 2 を使用している。しかし、Spring Boot3が最近リリースされ、重要な変...

                                                                                Service Mesh Interfaceの紹介 - Brendan Burns氏のQCon New Yorkでの講演より
                                                                              • interfaceが理解できない方へ「Unityで使うinterfaceの5つの使い方」 - Qiita

                                                                                interfaceが理解しずらい大きな要因は、道具のような側面 を持つからではないでしょうか。interfaceの使い方を覚える事で理解が進みますので5つの使い方を紹介したいと思います。 [使い方1] 依存性の逆転 抽象に依存させることで大切なデータや処理を外部から守る事ができます。 下記のコードではPlayerオブジェクトはセーブシステムの事を知りません。セーブシステムが変更になってもその影響を受けません。結果、大切なオブジェクトPlayerの安定性が向上します。確認、修正の必要が無いコードが多ければ多いほどバグは少なくなります。 サンプルコード Playerとセーブシステムを切り離す為のinterface public interface IPlayerStatusRepository { PlayerStatus Get(); void Set(PlayerStatus status

                                                                                  interfaceが理解できない方へ「Unityで使うinterfaceの5つの使い方」 - Qiita
                                                                                • LlamaIndex 0.6.0: A New Query Interface Over your Data

                                                                                  The central mission of LlamaIndex is to provide an interface between Large Language Models (LLM’s), and your private, external data. Over the past few months, it has become one of the most popular open-source frameworks for LLM data augmentation (context-augmented generation), for a variety of use cases: question-answering, summarization, structured queries, and more. We’re excited to announce Lla

                                                                                    LlamaIndex 0.6.0: A New Query Interface Over your Data