书栈网 · BookStack 本次搜索耗时 0.042 秒,为您找到 1478 个相关结果.
  • 4.2.2. Embed WASM funcs

    Embed a Wasm function Rust function compiled into WebAssembly Go host application Embed a Wasm function The WasmEdge Go SDK allows WebAssembly functions to be embedded into a...
  • 15.3. 使用Drop Trait 运行清理代码

    使用 Drop Trait 运行清理代码 通过 std::mem::drop 提早丢弃值 使用 Drop Trait 运行清理代码 ch15-03-drop.md commit d44317c3122b44fb713aba66cc295dee3453b24b 对于智能指针模式来说第二个重要的 trait 是 Drop ,其允...
  • 将单线程 server 变为多线程 server

    将单线程 server 变为多线程 server 在当前 server 实现中模拟慢请求 使用线程池改善吞吐量 为每一个请求分配线程的代码结构 为有限数量的线程创建一个类似的接口 采用编译器驱动构建 ThreadPool 结构体 在 new 中验证池中线程数量 分配空间以储存线程 Worker 结构体负责从 ThreadPool 中将代码...
  • 运行以太坊客户端

    运行以太坊客户端 完整节点的硬件要求 构建和运行客户端(节点)的软件要求 Parity 安装 Parity Go-Ethereum (Geth) 版本库链接 克隆存储库 从源代码构建Geth 运行以太坊客户端 如果你有时间和资源,你应该尝试运行一个完整的节点,即使只是为了更多地了解这个过程。在接下来的几节中,我们将下载,编译和运行以太...
  • Contributing

    284 2020-10-28 《Deno v1.4.2 Manual》
    Contributing Development Submitting a Pull Request Changes to third_party Adding Ops (aka bindings) Releases Documenting APIs Utilize JSDoc Contributing Read the style...
  • Contributing

    323 2020-10-28 《Deno v1.4.1 Manual》
    Contributing Development Submitting a Pull Request Changes to third_party Adding Ops (aka bindings) Releases Documenting APIs Utilize JSDoc Contributing Read the style...
  • 5.3. Modern Features

    Modern Features Language Features Tooling Modern Features Rust is built with all the experience gained in the last 40 years. Language Features Enums and pattern matching....
  • 3.1.5. Non-blocking network apps

    Non-blocking networking sockets A non-blocking HTTP client example A non-blocking HTTP server example Non-blocking networking sockets While the simple HTTP connections from t...
  • 多道程序放置与加载

    多道程序放置与加载 本节导读 多道程序放置 多道程序加载 执行应用程序 二叠纪“锯齿螈”操作系统 多道程序放置与加载 本节导读 在本章的引言中我们提到每个应用都需要按照它的编号被分别放置并加载到内存中不同的位置。本节我们就来介绍它是如何实现的。通过具体实现,可以看到多个应用程序被一次性地加载到内存中,这样在切换到另外一个应用程序执行会很...