书栈网 · BookStack 本次搜索耗时 0.016 秒,为您找到 2345 个相关结果.
  • 项目结构和初始化

    642 2021-07-11 《Nirvana v0.3 教程》
    项目结构和初始化 创建项目 编译运行 直接编译运行 编译并打包成 Docker 镜像 Nirvana 项目配置 项目结构和初始化 创建项目 Nirvana 创建项目非常简单,不过在创建项目之前,首先需要下载安装 Nirvana 的命令行工具: $ go get - u github . com / caicloud / nirv...
  • 快速入门

    快速入门 什么是快速文本? 要求 建立快速文本 快速入门 什么是快速文本? fastText 是一个用于高效学习单词表示和句子分类的库。 要求 fastText 建立在现代 Mac OS 和 Linux 发行版上.由于它使用 C++11功能, 因此需要具有良好 C++11 支持的编译器.这些包括: (gcc-4.6.3 or ne...
  • v1.4.0

    v1.4.0 Change your operator’s finalizer names For Helm and Ansible projects, fix the helm-operator and ansible-operator URLs in the Makefile For Helm and Ansible projects, fix th...
  • v1.4.0

    v1.4.0 Change your operator’s finalizer names For Helm and Ansible projects, fix the helm-operator and ansible-operator URLs in the Makefile For Helm and Ansible projects, fix th...
  • Testing S2I Images

    Testing S2I Images Overview Testing Requirements Generating Scripts and Tools Testing Locally Basic Testing Workflow Using OKD for Building the Image Testing S2I Images ...
  • v1.4.0

    v1.4.0 Change your operator’s finalizer names For Helm and Ansible projects, fix the helm-operator and ansible-operator URLs in the Makefile For Helm and Ansible projects, fix th...
  • v1.4.0

    v1.4.0 Change your operator’s finalizer names For Helm and Ansible projects, fix the helm-operator and ansible-operator URLs in the Makefile For Helm and Ansible projects, fix th...
  • 增加新开发板的目录

    增加新开发板的目录 增加新开发板的目录 正点原子STM32F407开发板使用的是STM32F4芯片,可以参考Cloud_STM32F429IGTx_FIRE工程代码。 在LiteOS源码target目录下拷贝Cloud_STM32F429IGTx_FIRE目录,并将目录重命名为新开发板名,比如STM32F407_OpenEdv。下表是STM32F4...
  • shell函数

    shell函数 shell函数 shell函数也不像其它的函数。顾名思义,它的参数应该就是操作系统Shell的命令。它和反引号“`”是相同的功能。这就是说,shell函数把执行操作系统命令后的输出作为函数返回。于是,我们可以用操作系统命令以及字符串处理命令awk,sed等等命令来生成一个变量,如: contents := $ ( shell c...
  • 定义命令包

    定义命令包 定义命令包 如果Makefile中出现一些相同命令序列,那么我们可以为这些相同的命令序列定义一个变量。定义这种命令序列的语法以 define 开始,以 endef 结束,如: define run - yacc yacc $ ( firstword $ ^) mv y . tab . c $@ endef 这里,“...