並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 25 件 / 25件

新着順 人気順

optionalの検索結果1 - 25 件 / 25件

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

optionalに関するエントリは25件あります。 webarticlePython などが関連タグです。 人気エントリには 『GitHub - azooKey/azooKey-Desktop: azooKey-Desktop is an open-source Japanese input method for macOS, written in Swift and powered by the Zenzai neural kana-kanji converter. It provides live conversion, optional LLM-based “Magic Conversions”, and Tuner-bac』などがあります。
  • GitHub - azooKey/azooKey-Desktop: azooKey-Desktop is an open-source Japanese input method for macOS, written in Swift and powered by the Zenzai neural kana-kanji converter. It provides live conversion, optional LLM-based “Magic Conversions”, and Tuner-bac

    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 - azooKey/azooKey-Desktop: azooKey-Desktop is an open-source Japanese input method for macOS, written in Swift and powered by the Zenzai neural kana-kanji converter. It provides live conversion, optional LLM-based “Magic Conversions”, and Tuner-bac
    • PEP 703 – Making the Global Interpreter Lock Optional in CPython | peps.python.org

      PEP 703 – Making the Global Interpreter Lock Optional in CPython Author: Sam Gross <colesbury at gmail.com> Sponsor: Łukasz Langa <lukasz at python.org> Discussions-To: Discourse thread Status: Accepted Type: Standards Track Created: 09-Jan-2023 Python-Version: 3.13 Post-History: 09-Jan-2023, 04-May-2023 Resolution: 24-Oct-2023 Table of Contents Abstract Motivation The GIL Makes Many Types of Para

        PEP 703 – Making the Global Interpreter Lock Optional in CPython | peps.python.org
      • Native mobile apps are optional for B2B startups in 2024

        December 17, 2023 Native mobile apps are optional for B2B startups in 2024 I continue to see new B2B software startups struggle with native mobile apps. Consumer software makers can usually start by going all-in on a single platform, but for business tools, that’s rarely an option. So they must face the tall task of tackling web, iOS, and Android at the same time. Hence the proliferation of toolki

          Native mobile apps are optional for B2B startups in 2024
        • Overhead of Returning Optional Values in Java and Rust | Piotr Kołaczkowski

          Some programming languages like Java or Scala offer more than one way to express a concept of “lack of value”. Traditionally, a special null value is used to denote references that don’t reference any value at all. However, over time we have learned that using nulls can be very error-prone and can cause many troubles like NullPointerException errors crashing a program in the most unexpected moment

          • Go Genericsを使ってgo-optionalを書いた / Go Generics感想 - その手の平は尻もつかめるさ

            Go Genericsがどんなもんか試してみたかったので、これを使ってOptionの実装を書いてみました。 github.com 基本的な使い方としてはSynopsisを読んでもらえばわかると思いますが、ユーティリティとしては IsSome() IsNone() Take() TakeOr() TakeOrElse() Filter() Map() MapOr() Zip() ZipWith() Unzip() UnzipWith() あたりを取り揃えております。examplesも併せてご覧いただくとおおよその使い方の雰囲気が掴めると思います。 利用のためにはまだunstableな最新版 (go1.18) を使う必要があるので、gotipとかを使って新しい処理系を引っぱってくる必要があります。 で、GoのGenericsを使ってみた感想としてdefault valueとかconstrain

              Go Genericsを使ってgo-optionalを書いた / Go Generics感想 - その手の平は尻もつかめるさ
            • New PAT rotation policies preview and optional expiration for fine-grained PATs - GitHub Changelog

              New PAT rotation policies preview and optional expiration for fine-grained PATs Enterprise and organization administrators can now set limits on token lifetimes for the personal access tokens (PATs) used against their resources. These policies mandate token rotation on a regular basis and reduce how long a compromised token is good for, while also providing a lever to reduce the use of less-secure

                New PAT rotation policies preview and optional expiration for fine-grained PATs - GitHub Changelog
              • Python's Steering Council Plans to Make Its 'Global Interpreter Lock' Optional - Slashdot

                Posted by EditorDavid on Saturday July 29, 2023 @11:34AM from the nice-threads dept. Python's Global Interpreter Lock "allows only one thread to hold the control of the Python interpreter," according to the tutorial site Real Python. (They add, "it can be a performance bottleneck in CPU-bound and multi-threaded code.") Friday the Python Steering Council "announced its intent to accept PEP 703 (Mak

                • Optionalクラスを意図されたとおりに使うための12のレシピ | otnjp

                  ※本記事は、Mohamed Tamanによる”12 recipes for using the Optional class as it’s meant to be used“を翻訳したものです。 美しくないnullポインタ例外からアプリケーションを守る12のベスト・プラクティスに従い、コードを読みやすく簡潔にする 著者:Mohamed Taman 2020年6月22日 真剣なJava開発者やアーキテクトなら、誰でも迷惑なNullPointerException例外について聞いたことや、体験したことがあります。 これに対して、何ができるでしょうか。プログラマーがメソッドから値を返すとき、値がないことを示すためにnull参照を使うことはよく行われます。しかしこれは、さまざまな重大な問題の原因になります。 このnull参照問題について詳しく知りたい方は、Raoul-Gabriel Urma氏の

                    Optionalクラスを意図されたとおりに使うための12のレシピ | otnjp
                  • GitHub - tc39/proposal-optional-chaining-assignment: `a?.b = c` proposal

                    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-optional-chaining-assignment: `a?.b = c` proposal
                    • JavaのStream/Optionalに対する理解を深める - asoview! Tech Blog

                      はじめに こんにちは、アソビューでバックエンドエンジニアをしている小原です。 アソビューのバックエンドはJava + Spring Bootで構築されており、プロダクトによってJava8かJava11が利用されています。 Java 8は、2014年3月に正式リリースされ、ラムダ式やStream、Optionalなどの機能が導入されました。皆さんもこれらの機能を活用されている事かと思われます。しかしながら、特にStreamは機能が多いためか、適切に使われてないケースをちらほら見てきました。今回は、StreamとOptionalをおさらいし、理解を深めていただければと思い、記事を書きました。 はじめに Stream 概要 特徴 Streamの生成 中間操作と終端操作 中間操作 filter() map() flatMap() distinct() sorted() peek() limit()

                        JavaのStream/Optionalに対する理解を深める - asoview! Tech Blog
                      • GitHub - divyaprakash0426/autoshorts: Automatically generate viral-ready vertical short clips from long-form gameplay footage using AI-powered scene analysis, GPU-accelerated rendering, and optional AI voiceovers.

                        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 - divyaprakash0426/autoshorts: Automatically generate viral-ready vertical short clips from long-form gameplay footage using AI-powered scene analysis, GPU-accelerated rendering, and optional AI voiceovers.
                        • Go で値がないこと (nullable) をどう表現するか – Optional 型導入の話

                          はじめに プロダクトの仕様には、値が「ある」場合もあれば「ない (null)」場合もある nullable な要素がよく登場します。 例えば、次のようなものです。 ユーザーの二つ目のメールアドレス(ない人もいる) キャンセルされた予約のキャンセル理由(キャンセルされていないときは存在しない) 請求書の支払期日(未設定のケースがありうる) Go で書かれたライブラリなどの実装を見ていると、nullable な要素を扱う場合は「ポインタ」や「ゼロ値」が使われていることが多くみられました。 私たちもはじめはポインタを使って nullable な値を表現していたのですが、ポインタはパフォーマンスなどの別の用途でも使われるため、「ポインタが使われているからといって nullable とは限らない」という状態にだいぶ苦しめられました。 この記事では、仕様上の nullable を型として明示的に表現す

                            Go で値がないこと (nullable) をどう表現するか – Optional 型導入の話
                          • GitHub - Acly/krita-ai-diffusion: Streamlined interface for generating images with AI in Krita. Inpaint and outpaint with optional text prompt, no tweaking required.

                            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 - Acly/krita-ai-diffusion: Streamlined interface for generating images with AI in Krita. Inpaint and outpaint with optional text prompt, no tweaking required.
                            • GitHub - WSA-Community/WSAGAScript: Scripts to install Google Apps into a WSA image. Plus optional root

                              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 - WSA-Community/WSAGAScript: Scripts to install Google Apps into a WSA image. Plus optional root
                              • A Steering Council notice about PEP 703 (Making the Global Interpreter Lock Optional in CPython)

                                Posting for the whole Steering Council, on the subject of @colesbury’s PEP 703 (Making the Global Interpreter Lock Optional in CPython). Thank you, everyone, for responding to the poll on the no-GIL proposal. It’s clear that the overall sentiment is positive, both for the general idea and for PEP 703 specifically. The Steering Council is also largely positive on both. We intend to accept PEP 703,

                                  A Steering Council notice about PEP 703 (Making the Global Interpreter Lock Optional in CPython)
                                • Yarn 3.1 🎃👻 Corepack, ESM, pnpm, Optional Packages ...

                                  DEV Community Follow A space to discuss and keep up software development and manage your software career

                                    Yarn 3.1 🎃👻 Corepack, ESM, pnpm, Optional Packages ...
                                  • Django, HTMX and Alpine.js: Modern websites, JavaScript optional

                                    Modern JavaScript for Django Developers Django, HTMX and Alpine.js: Modern websites, JavaScript optional Building a modern front end in Django without reaching for a full-blown JavaScript framework. Choosing the right tools for the job, and bringing them into your project. Published November 23, 2021, Updated May, 2025 This is Part 5 of Modern JavaScript for Django Developers. Welcome back to "Mod

                                      Django, HTMX and Alpine.js: Modern websites, JavaScript optional
                                    • kyosyo 1/64 SUBARU BRZ WITH STI GENUINE OPTIONAL PARTS SUBARU Minicar Collection - usunonooのブログ@トミカ倉庫

                                      皆様、こんばんは。 usunonooです。 今夜は 京商CVS 1/64スケール スバル ミニカーコレクション スバル BRZ をご紹介致します。 以前当ブログでは同じ京商CVSシリーズの黒いスバルBRZをご紹介致しましたが、本日はこちらのホワイトカラーのモデルをご紹介致します。 リンク こちらは京商CVSシリーズ第66弾『スバル・ミニカーコレクション』にラインナップされ、2014年6月30日より発売されていました。 " 2012年12月に小型スポーツカー、SUBARU BRZが発表された。SUBARU(富士重工業)が磨き上げた四輪を自在にコントロールする悦びは、人間の本能を覚醒させる。" " 「 SUBARU BRZ 」のネーミングは、「BOXERエンジン」のB、「 Real Wheel Drive 」のR、「 Zenith(究極)」のZの三文字から組み合わせられる。革新を遂げた新世代S

                                        kyosyo 1/64 SUBARU BRZ WITH STI GENUINE OPTIONAL PARTS SUBARU Minicar Collection - usunonooのブログ@トミカ倉庫
                                      • GitHub - Openpanel-dev/openpanel: OpenPanel is an open-source web and product analytics platform, an open-source alternative to Mixpanel with optional self-hosting.

                                        🔍 Advanced Analytics: Funnels, cohorts, user profiles, and session history 🎬 Session Replay: Record and replay user sessions with privacy controls built in 📊 Real-time Dashboards: Live data updates and interactive charts 🎯 A/B Testing: Built-in variant testing with detailed breakdowns 🔔 Smart Notifications: Event and funnel-based alerts 🌍 Privacy-First: Cookieless tracking and GDPR complianc

                                          GitHub - Openpanel-dev/openpanel: OpenPanel is an open-source web and product analytics platform, an open-source alternative to Mixpanel with optional self-hosting.
                                        • Optional variance annotations by ahejlsberg · Pull Request #48240 · microsoft/TypeScript

                                          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

                                            Optional variance annotations by ahejlsberg · Pull Request #48240 · microsoft/TypeScript
                                          • Layered Toggles: Optional CSS Mixins

                                            Layered Toggles: Optional CSS MixinsIn this article, I am sharing the next evolution of space & cyclic toggles, which allows us to create and apply optional mixins in CSS with the help of custom cascade layers, available today in every browser that supports them. I am no stranger to looking for various ways to apply some CSS conditionally, and through the years, went from using math as a way to ac

                                            • A surprising feature of JavaScript optional chaining | Swizec Teller

                                              Senior Mindset BookGet promoted, earn a bigger salary, work for top companies A surprising feature of JavaScript optional chainingIn 2020 JavaScript gained a new feature – optional chaining. It solves a problem we've had ... forever. With many workarounds and standard solutions over the years. TIL you can use optional chaining on function calls 🤯 pic.twitter.com/rfjw5A5atn — Swizec Teller (@Swize

                                                A surprising feature of JavaScript optional chaining | Swizec Teller
                                              • オプショナルチェーン (optional chaining) | TypeScript入門『サバイバルTypeScript』

                                                JavaScriptのオプショナルチェーン?.は、オブジェクトの参照がnullやundefinedの場合でも、エラーを起こさずにプロパティを参照できる安全な方法です。 プロパティ参照がエラーになる問題​JavaScriptではnullやundefinedのプロパティを参照するとエラーが発生します。

                                                  オプショナルチェーン (optional chaining) | TypeScript入門『サバイバルTypeScript』
                                                • GIL Become Optional in Python 3.13

                                                  Post author:Sachin Pal Post published:August 11, 2024 Post category:Python GIL or Global Interpreter Lock can be disabled in Python version 3.13. This is currently experimental. What is GIL? It is a mechanism used by the CPython interpreter to ensure that only one thread executes the Python bytecode at a time. An Experimental Feature Python 3.13 brings major new features compared to Python 3.12 an

                                                    GIL Become Optional in Python 3.13
                                                  • JavaScript Development: Making a Web Worker optional

                                                    In case you have a lot of JavaScript related logic running inside a main thread or a Web Worker, it makes perfect sense to move expensive logic into another worker. Workers run inside a different thread using their own CPU if possible. However, there can be use cases where in some scenarios there is a lot of JS related workload on a given thread, while in other scenarios this thread is mostly idle

                                                      JavaScript Development: Making a Web Worker optional
                                                    1

                                                    新着記事