书栈网 · BookStack 本次搜索耗时 0.013 秒,为您找到 2345 个相关结果.
  • 9.8 自定义包的目录结构、go install 和 go test

    2731 2018-02-08 《Go入门指南》
    9.8 自定义包的目录结构、go install 和 go test 9.8.1 自定义包的目录结构 9.8.2 本地安装包 9.8.3 依赖系统的代码 链接 9.8 自定义包的目录结构、go install 和 go test 为了示范,我们创建了一个名为 uc 的简单包,它含有一个 UpperCase 函数将字符串的所有字母转换为大写。...
  • Upgrade Kubeflow

    Upgrade Kubeflow Before you start General upgrade instructions Upgrading management cluster General instruction for upgrading management cluster Upgrade management cluster from ...
  • v1.14.0

    v1.14.0 Upgrade K8s versions to use 1.22 (golang/v3) For Ansible-based Operators, update ansible collection community.kubernetes to kubernetes.core v1.14.0 Upgrade K8s vers...
  • 4.3. Changes to the upstream sources

    4.3. Changes to the upstream sources 4.3. Changes to the upstream sources If changes to the source code are made that are not specific to the needs of the Debian system, they s...
  • 变量 MAKEFILES

    1084 2019-07-06 《Makefile 基础教程》
    变量 MAKEFILES 变量 MAKEFILES 如果定义了环境变量MAKEFILES,则将make 其值视为其他makefile的名称列表(以空格分隔),以便在其他makefile之前读取。这与include指令非常相似:搜索各种目录以查找这些文件。 MAKEFILES的主要用途是在递归调用之间进行通信make 。
  • 使用 make

    使用 make 使用 make 利用 configure 所产生的Makefile 文件有几个预先设定的目标可供使用: 目标 用途 make all 产生预设的目标,只敲入make 也可以 make clean 清除编译结果 make distclean 除了清除编译结果,也把configure所产生的 Makefile 清除掉 make ...
  • v1.14.0

    v1.14.0 Upgrade K8s versions to use 1.22 (golang/v3) For Ansible-based Operators, update ansible collection community.kubernetes to kubernetes.core v1.14.0 Upgrade K8s vers...
  • Binaries

    Binaries Preparation Update the Kubernetes version Build a new ISO Release new kicbase image Update Release Notes Update Makefile Warning Tag the Release Build the Release...
  • Cross Compile

    Cross-compile binaries Cross-compile binaries Go supports cross-compiling binaries for multiple platforms which applies to eKuiper as well. Because eKuiper depends on sqlite, CG...
  • override 指示符

    override 指示符 override 指示符 如果有变量是通常make的命令行参数设置的,那么Makefile中对这个变量的赋值会被忽略。如果你想在Makefile中设置这类参数的值,那么,你可以使用“override”指示符。其语法是: override <variable> ; = <value> ;   override...