Conan 1.23 Documentation
Putting the general.relax_lockfile=1 will allow this case. This is a temporary thing introduced at 1.23, will be removed in future versions (while probably leaving the behavior in some of its forms) 122 com/conan-io/conan for issues and more details about development, contributors, etc. Important: Conan 1.23 shouldn’t break any existing 1.0 recipe or command line invocation. If it does, please submit a report regarding Conan 2.0, there is a lot of work ahead, as you can see in our backlog. Meanwhile, in version 1.23 we have introduced an environment variable to activate new defaults and best practices, and to detect0 码力 | 637 页 | 5.04 MB | 1 年前3MuPDF 1.23.0 Documentation
0 码力 | 245 页 | 817.74 KB | 7 月前3k8s操作手册 2.3
★最后重启操作系统 # reboot ★第1章、部署k8s版本<=1.23 k8s在1.23及之前版本默认是调用docker作为底层的容器运行时,从1.24版本开 始移除了dockerShim组件,不再支持docker,从而默认使用containerd作为底层 的容器运行时。 k8s 1.23及之前版本: kubelet→dockerShim→dockerd→containerd→runC nerd/containerd.sock 本小节讲解k8s v1.23及之前版本的安装;首先按照第0章的步骤完成准备工作。 ①安装并配置docker-ce # yum install docker-ce docker-ce-cli containerd.io -y #k8s v1.23支持的docker 最新版本为20.10.x # systemctl enable enabled=1 gpgcheck=0 EOF # yum install kubelet kubeadm kubectl kubernetes-cni -y #安装k8s二进制组件 (<=1.23版本) # systemctl enable kubelet # systemctl start kubelet ③k8s集群初始化 # kubeadm version0 码力 | 126 页 | 4.33 MB | 1 年前3Go 101 (Golang 101) v1.21.0
xE-n is equivalent to x is divided by 10n). Some examples: 1.23 01.23 // == 1.23 .23 1. // An "e" or "E" starts the exponent part (10-based). 1.23e2 // == 123.0 123E2 // == 12300.0 123.E+2 // == 12300 floating-point or integer literal and a lower-case letter i. Examples: 1.23i 1.i .23i 123i 0123i // == 123i (for backward-compatibility. See below.) 1.23E2i // == 123i 1e-1i 011i // == 11i (for backward-compatibility values: 1 + 2i // == 1.0 + 2.0i 1. - .1i // == 1.0 + -0.1i 1.23i - 7.89 // == -7.89 + 1.23i 1.23i // == 0.0 + 1.23i The standard literals for zero values of complex types are 0.0+0.0i0 码力 | 610 页 | 945.17 KB | 1 年前3Go 101 (Golang 101) v1.21.0
is equivalent to x is divided by 10n). Some examples: 1.23 01.23 // == 1.23 .23 1. // An "e" or "E" starts the exponent part (10-based). 1.23e2 // == 123.0 123E2 // == 12300.0 123.E+2 // == 12300 or integer literal and a lower-case letter i. Examples: 1.23i 1.i .23i 123i 0123i // == 123i (for backward-compatibility. See below.) 1.23E2i // == 123i 1e-1i 011i // == 11i (for backward-compatibility values: 1 + 2i // == 1.0 + 2.0i 1. - .1i // == 1.0 + -0.1i 1.23i - 7.89 // == -7.89 + 1.23i 1.23i // == 0.0 + 1.23i The standard literals for zero values of complex types are 0.0+0.0i0 码力 | 880 页 | 833.34 KB | 1 年前3Go 101 (Golang 101) v1.21.0
is equivalent to x is divided by 10n). Some examples: 1.23 01.23 // == 1.23 .23 1. // An "e" or "E" starts the exponent part (10-based). 1.23e2 // == 123.0 §6. Basic Types and Basic Value Literals integer literal and a lower-case letter i. Examples: 1.23i 1.i .23i 123i 0123i // == 123i (for backward-compatibility. See below.) 1.23E2i // == 123i 1e-1i 011i // == 11i (for backward-compatibility values: 1 + 2i // == 1.0 + 2.0i 1. - .1i // == 1.0 + -0.1i 1.23i - 7.89 // == -7.89 + 1.23i 1.23i // == 0.0 + 1.23i The standard literals for zero values of complex types are 0.0+0.0i0 码力 | 630 页 | 3.77 MB | 1 年前3JavaScript 正则表达式迷你书 老姚 - v1.1
其实这个正则也不是完美的,因为现实中,并不是每个 3 位数和 4 位数都是一个真实的区号。 这就是一个平衡取舍问题,一般够用就行。 6.3.2. 匹配浮点数 要求匹配如下的格式: 1.23、+1.23、-1.23 10、+10、-10 .2、+.2、-.2 JavaScript 正则表达式迷你书 6. 第六章 正则表达式的构建 | 第 56 页 可以看出正则分为三部分。 符号部分:[+-], 的正则: /^[+-]?(\d+)?(\.\d+)?$/ 此正则看似没问题,但这个正则也会匹配空字符 ""。 因为目标字符串的形式关系不是要求每部分都是可选的。 要匹配 "1.23"、"+1.23"、"-1.23",可以用/^[+-]?\d+\.\d+$/, 要匹配 "10"、"+10"、"-10",可以用/^[+-]?\d+$/, 要匹配 ".2"、"+.2"、"-.2",可以用/^[+-]0 码力 | 89 页 | 3.42 MB | 10 月前3JavaScript 正则表达式迷你书 老姚 - v1.0
其实这个正则也不是完美的,因为现实中,并不是每个 3 位数和 4 位数都是一个真实的区号。 这就是一个平衡取舍问题,一般够用就行。 6.3.2. 匹配浮点数 要求匹配如下的格式: 1.23、+1.23、-1.23 10、+10、-10 .2、+.2、-.2 JavaScript 正则表达式迷你书 6. 第六章 正则表达式的构建 | 第 56 页 可以看出正则分为三部分。 符号部分:[+-], 如下的正则: /^[-]?(\d)?(\.\d+)?$/ 此正则看似没问题,但这个正则也会匹配空字符 ""。 因为目标字符串的形式关系不是要求每部分都是可选的。 要匹配 "1.23"、"+1.23"、"-1.23",可以用/^[-]?\d\.\d+$/, 要匹配 "10"、"+10"、"-10",可以用/^[-]?\d$/, 要匹配 ".2"、"+.2"、"-.2",可以用/^[-]?\0 码力 | 89 页 | 3.42 MB | 10 月前3Golang 101(Go语言101 中文版) v1.21.a
以10n的意思, 而xE-n表示x除以10n的意思)。 常常地,某些部分可以根据情况省略掉。一 些例子: 1.23 01.23 // == 1.23 .23 1. // 一个e或者E随后的数值是指数值(底数为10)。 // 指数值必须为一个可以带符号的十进制整数字面量。 1.23e2 // == 123.0 123E2 // == 12300.0 123.E+2 // == 12300 的一个小写的字母i组成。 在Go 1.13之前,如果虚部中i前的部分为一个整数 字面量,则其必须为并且总是被视为十进制形式。 一些例子: 1.23i 1.i .23i 123i 0123i // == 123i(兼容性使然。见下) 1.23E2i // == 123i 1e-1i 011i // == 11i(兼容性使然。见下) 00011i // == 11i(兼容性使然。见下) 量形式: 1 + 2i // == 1.0 + 2.0i 1. - .1i // == 1.0 + -0.1i 1.23i - 7.89 // == -7.89 + 1.23i 1.23i // == 0.0 + 1.23i 复数零值的标准字面表示为0.0+0.0i。 当然0i、.0i、0+0i等表示也是合法 的。 数值字面表示中使用下划线分段来增强可读性0 码力 | 821 页 | 956.82 KB | 1 年前3Golang 101(Go语言101 中文版) v1.21.a
x乘以10n的意思,而xE-n 表示x除以10n的意思)。 常常地,某些部分可以根据情况省略掉。一些例子: 1.23 01.23 // == 1.23 .23 1. // 一个e或者E随后的数值是指数值(底数为10)。 // 指数值必须为一个可以带符号的十进制整数字面量。 1.23e2 // == 123.0 123E2 // == 12300.0 123.E+2 // == 12300 随 的一个小写的字母i组成。 在Go 1.13之前,如果虚部中i前的部分为一个整数字 面量,则其必须为并且总是被视为十进制形式。 一些例子: 1.23i 1.i .23i 123i 0123i // == 123i(兼容性使然。见下) 1.23E2i // == 123i 1e-1i 011i // == 11i(兼容性使然。见下) 00011i // == 11i(兼容性使然。见下) 字面量形式: 1 + 2i // == 1.0 + 2.0i 1. - .1i // == 1.0 + -0.1i 1.23i - 7.89 // == -7.89 + 1.23i 1.23i // == 0.0 + 1.23i 复数零值的标准字面表示为0.0+0.0i。 当然0i、.0i、0+0i等表示也是合法的。 数值字面表示中使用下划线分段来增强可读性0 码力 | 608 页 | 1.08 MB | 1 年前3
共 550 条
- 1
- 2
- 3
- 4
- 5
- 6
- 55