书栈网 · BookStack 本次搜索耗时 0.033 秒,为您找到 1478 个相关结果.
  • 3.5. 控制流

    控制流 if 表达式 使用 else if 处理多重条件 在 let 语句中使用 if 使用循环重复执行 使用 loop 重复执行代码 从循环返回值 循环标签:在多个循环之间消除歧义 while 条件循环 使用 for 遍历集合 总结 控制流 ch03-05-control-flow.md comm...
  • Filesystem

    Filesystem Local Project Filesystem Scan a local project including language-specific files. $ trivy fs / path / to / project Local Project Trivy will look for vulnerabili...
  • Using wasm-pack

    Using wasm-pack Install Build Bundle Serve Supported Targets Using wasm-pack This tool was created by the Rust / Wasm Working Group and is the most actively developed to...
  • 实验环境配置

    实验环境配置 系统环境配置 Rust 开发环境配置 Qemu 模拟器安装 K210 真机串口通信 GDB 调试支持 运行 rCore-Tutorial-v3 在 Qemu 平台上运行 在 K210 平台上运行 实验环境配置 本节我们将完成环境配置并成功运行 rCore-Tutorial-v3 。整个流程分为下面几个部分: 系统环境...
  • Retries and flaky tests

    Retries and flaky tests Retries and flaky tests Sometimes, tests fail nondeterministically, which can be quite annoying to developers locally and in CI. cargo-nextest supports r...
  • 7.5. PHP

    prql-php Installation Usage Development Environment Building Tests Code style prql-php prql-php offers PHP bindings to prql-compiler crate through FFI. It provides th...
  • 函数如何工作

    函数 函数参数 包含语句和表达式的函数体 具有返回值的函数 函数 ch03-03-how-functions-work.md commit 669a909a199bc20b913703c6618741d8b6ce1552 函数遍布于 Rust 代码中。你已经见过语言中最重要的函数之一:main 函数,它是很多程序的入口点。你也见过...
  • 函数如何工作

    函数如何工作 函数参数 函数体 语句与表达式 函数的返回值 函数如何工作 ch03-03-how-functions-work.md commit 6aad5008b69078a2fc18e6dd7e00ef395170c749 函数在 Rust 代码中应用广泛。你已经见过一个语言中最重要的函数:main 函数,它是很多程序的入口点...
  • Git Repository

    Git Repository Git Repository Scan your remote git repository $ trivy repo https : //github.com/knqyf263/trivy-ci-test Only public repositories are supported. Result 2021 ...
  • 5.2. 结构体示例程序

    结构体示例程序 使用元组重构 使用结构体重构:赋予更多意义 通过派生 trait 增加实用功能 结构体示例程序 ch05-02-example-structs.md commit dd7e05275822d6cf790bcdae6983b3234141b5e7 为了理解何时会需要使用结构体,让我们编写一个计算长方形面积的程序。我们...