书栈网 · BookStack 本次搜索耗时 0.061 秒,为您找到 1523 个相关结果.
  • 8. Linker-plugin based LTO

    905 2020-02-11 《The rustc book》
    Linker-plugin-LTO Usage Rust staticlib as dependency in C/C++ program C/C++ code as a dependency in Rust Explicitly specifying the linker plugin to be used by rustc Toolchain C...
  • 11.3. 测试的组织结构

    测试的组织结构 单元测试 测试模块和 #[cfg(test)] 测试私有函数 集成测试 tests 目录 集成测试中的子模块 二进制 crate 的集成测试 总结 测试的组织结构 ch11-03-test-organization.md commit cfb2c3cce7c20d4ad523dafdbf90ae3b25b1...
  • Build it

    843 2019-06-07 《Discovery》
    Build it Build it The first step is to build our “binary” crate. Because the microcontroller has a differentarchitecture than your laptop we’ll have to cross compile. Cross com...
  • Hello, world!

    958 2019-06-07 《Discovery》
    Hello, world! Hello, world! HEADS UP Several readers have reported that the “solder bridge” SB10 (see back of the board)on the STM32F3DISCOVERY, which is required to use the ...
  • 测试的组织结构

    测试的组织结构 单元测试 测试模块和 cfg(test) 测试私有函数 集成测试 tests 目录 集成测试中的子模块 二进制 crate 的集成测试 总结 测试的组织结构 ch11-03-test-organization.md commit b3eddb8edc0c3f83647143673d18efac0a44083a ...
  • 11.1. How to Write Tests

    How to Write Tests The Anatomy of a Test Function Checking Results with the assert! Macro Testing Equality with the assert_eq! and assert_ne! Macros Adding Custom Failure M...
  • 立即开始

    立即开始 先决条件 系统和架构 构建依赖项 编译和运行 单元测试 Docker 立即开始 本页面介绍如何在本地环境中从源代码运行 GreptimeDB。 先决条件 系统和架构 目前,GreptimeDB 仅支持 Linux(amd64)和 macOS(amd64 和 Apple Silicone)。 构建依赖项 Git (可选)...
  • 立即开始

    立即开始 先决条件 系统和架构 构建依赖项 编译和运行 单元测试 Docker 立即开始 本页面介绍如何在本地环境中从源代码运行 GreptimeDB。 先决条件 系统和架构 目前,GreptimeDB 仅支持 Linux(amd64)和 macOS(amd64 和 Apple Silicone)。 构建依赖项 Git (可选)...
  • 立即开始

    立即开始 先决条件 系统和架构 构建依赖项 编译和运行 单元测试 Docker 立即开始 本页面介绍如何在本地环境中从源代码运行 GreptimeDB。 先决条件 系统和架构 目前,GreptimeDB 仅支持 Linux(amd64)和 macOS(amd64 和 Apple Silicone)。 构建依赖项 Git (可选)...
  • 11.1. 优化: 速度与大小间的博弈

    优化: 速度与大小之间的博弈 无优化 优化依赖 优化速度 优化大小 优化: 速度与大小之间的博弈 每个人都想要它们的程序变得超级快且超级小,但是同时满足这两个条件是不可能的。这部分讨论rustc 提供的不同的优化等级,和它们是如何影响执行时间和一个程序的二进制项的大小。 无优化 这是默认的。当你调用cargo build 时,你使用的是...