Object Lifetime: From Start to Finish
Object Lifetime From Start to Finish Thamara Andrade | https://thamara.dev/34 Me finally understanding why my code was failing… ... and realizing I didn’t really understand the rules for object https://youtu.be/Rfu06XAhx90?si=GGa_g9w18RN_xUpGObject Lifetime From Start to Finish Thamara Andrade | https://thamara.dev/Object Lifetime From Start to Finish, and the tricky parts all around Thamara Andrade0 码力 | 214 页 | 9.34 MB | 5 月前3How to start a VC-backed startup
How to start a VC-backed startup Golang Warsaw #59 Jacek Migdal, July 10, 2024Jacek @ CEO and co-founder of Quesma. Database gateway. Seed startup with $2.5Mln funding. Previous, 10 years at Sumo (VOC): The Rise And Fall Of The Largest Corporation In History ● “The six chambers raised the start-up capital” ○ 6mln guilders, 2mln+ / year profit for century ● Spice trade ● Multinational corporation is $100mln+ high-quality ARR b. Have patience 2. Consistent high growthBefore you start The best time to start was 10 years agoWhy are you doing startup? Three major motivation types: ● King ● Merchant0 码力 | 32 页 | 7.43 MB | 5 月前3Making Games Start Fast: A Story About Concurrency
Making Games Start Fast A Story About ConcurrencyOnce upon a time, in the early 2000s...We had a small clock speed cap issue...But the solution was easy! Core 🔥🔥🔥 Core 1 Core 2 Core 3 Core 4The ◉ Threads ◉ Locks... ◉ … and how to avoid them ◉ Investigating threading efficiency 8Time to start a game! Showcase 1 9Demo Time! 10 🚀Some Metrics ◉ Stellaris 2.7 starts in 54s ◉ Stellaris 2 asset files ◉ Read localization ◉ Load textures, models and audio ◉ Load game rules & databases 14Start Enumeration Read Localization Load Audio Load 2D Assets Load 3D Assets Load Game Databases0 码力 | 76 页 | 2.22 MB | 5 月前3Apache Cassandra 快速入门指南(Quick Start)
Apache Cassandra 快速入门指南(Quick Start) Spark大数据博客 - https://www.iteblog.com Apache Cassandra 快速入门指南(Quick Start) 我们在这篇文章简单介绍了 Apache Cassandra 是什么,以及有什么值得关注的特性。本文将简单介绍 Apache Cassandra 的安装以及简单使用,可以帮助大家快速了解 Apr 2 21:12 tools 1 / 11 Apache Cassandra 快速入门指南(Quick Start) Spark大数据博客 - https://www.iteblog.com 各个文件或目录介绍如下: bin:这个目录下包含了启动 Cassandra 以及客户端相关操作的可执行文件,包括 query Rack 2 / 11 Apache Cassandra 快速入门指南(Quick Start) Spark大数据博客 - https://www.iteblog.com UN 127.0.0.1 160.88 KiB 256 100.0%0 码力 | 11 页 | 0 Bytes | 1 年前3Linux Con Workshop Quick Start Demo 殷湘 姜宁
Company Linux Con Workshop Quick Start Demo 殷湘 姜宁 • 为了用户能更容易理解微服务架构原则,了解ServiceComb 的功能以及如何用其快速开发微服务; • 所以提供大家耳熟能详的例子,降低学习曲线的同时,增加 趣味性,加深用户的理解 。 Manager (网关) Doorman (认证服务) Worker (运算服务) Bulletin0 码力 | 12 页 | 2.10 MB | 1 年前3Sender Patterns to Wrangle Concurrency in Embedded Devices
Sender Factories Functions that return senders. auto sndr = sched.schedule(); 1 20continue_on start_on let_value let_error let_stopped then sequence upon_error upon_stopped repeat repeat_n repeat_until and returns a sender that is the composition. 21start_detached start_detached_unstoppable sync_wait Sender Consumers Functions that take senders and start the work. 22Composition auto comp = s1.schedule() received 25Timeout auto thing = async::when_any(get_thing, timeout); auto timout = 1 async::start_on(time_scheduler{5ms}, 2 3 async::just_error(error{42})); 4 5 6 auto s = 70 码力 | 106 页 | 26.36 MB | 5 月前3Cache-Friendly Design in Robot Path Planning
dist) priority queue Q # create a priority queue Q.add_with_priority((start, start, 0)) # add start vertex to priority queue while Q is not empty: (p,u,dist_u) ← Q.extract_min() dist) priority queue Q # create a priority queue Q.add_with_priority((start, start, 0)) # add start vertex to priority queue while Q is not empty: (p,u,dist_u) ← Q.extract_min() dist) priority queue Q # create a priority queue 5 Q.add_with_priority((start, start, 0)) # add start vertex to priority queue 6 7 while Q is not empty: 8 (p,u,dist_u) ←0 码力 | 216 页 | 10.68 MB | 5 月前3The Zig Programming Language 0.9.1 Documentation
the start of the program exists. Programs designed to be executed will need a pub fn main function. For more advanced use cases, Zig offers other features to inform the compiler where the start of the 1 const print = @import("std").debug.print; 2 3 pub fn main() void { 4 // Comments in Zig start with "//" and end at the next LF byte (end of line). 5 // The line below is a comment and won't String Literals Multiline string literals have no escapes and can span across multiple lines. To start a multiline string literal, use the \\ token. Just like a comment, the string literal goes until0 码力 | 234 页 | 7.90 MB | 1 年前3Leveraging a Functional Approach for More Testable and Maintainable ROS 2 Code
handed over to the client ● How can the client expect proper operation of the software once they start developing on top of it?Why give this talk? ● Engineers at PickNik experiment with different ways handed over to the client ● How can the client expect proper operation of the software once they start developing on top of it? Answer: Tests and documentation! Lots and lots of documentation!Why give handed over to the client ● How can the client expect proper operation of the software once they start developing on top of it? Answer: Tests and documentation! Lots and lots of documentation! ● ROS0 码力 | 200 页 | 1.77 MB | 5 月前3The Zig Programming Language 0.6.0 Documentation
comments.zig const assert = @import("std").debug.assert; test "comments" { // Comments in Zig start with "//" and end at the next LF byte // The below line is a comment, and won't be executed. String Literals Multiline string literals have no escapes and can span across multiple lines. To start a multiline string literal, use the \\ token. Just like a comment, the string literal goes until the [*]T - pointer to unknown number of items. Supports index syntax: ptr[i] Supports slice syntax: ptr[start..end] Supports pointer arithmetic: ptr + x, ptr - x T must have a known size, which means that it0 码力 | 214 页 | 5.37 MB | 1 年前3
共 1000 条
- 1
- 2
- 3
- 4
- 5
- 6
- 100