OpenShift Container Platform 4.7 日志记录
Elasticsearch 实例。 可选:添加到日志的标签。 可选:转发结构化的 JSON 日志条目作为 JSON 对象,在 structured 项。日志条目必须包含有效的 结构化 JSON;否则,OpenShift Logging 会删除 structured 字段,并将日志条目发送到默认索引 app-00000x。 可选:字符串。要添加到日志中的一个或多个标签。对值加引号(如 "true"),以便它们被识别为字 可选:指定将日志发送到内部 Elasticsearch 实例的 default 输出。 可选:转发结构化的 JSON 日志条目作为 JSON 对象,在 structured 项。日志条目必须包 含有效的结构化 JSON;否则,OpenShift Logging 会删除 structured 字段,并将日志条目 发送到默认索引 app-00000x。 可选:字符串。要添加到日志中的一个或多个标签。 可选:配置多个输出 可选。指定将日志转发到内部 Elasticsearch 实例的默 默认 认输出。 可选:转发结构化的 JSON 日志条目作为 JSON 对象,在 structured 项。日志条目必须包 含有效的结构化 JSON;否则,OpenShift Logging 会删除 structured 字段,并将日志条目 发送到默认索引 app-00000x。 可选:字符串。要添加到日志中的一个或多个标签。 可选:配置多个输出0 码力 | 183 页 | 1.98 MB | 1 年前3OpenShift Container Platform 4.8 日志记录
转发到内部 Elasticsearch 实例。 可选:添加到日志的标签。 可选:指定是否转发结构化 JSON 日志条目作为 structured 项中的 JSON 对象。日志条目必须包含 有效的结构化 JSON;否则,OpenShift Logging 会删除 structured 字段,并将日志条目发送到默 认索引 app-00000x。 可选:字符串。要添加到日志中的一个或多个标签。对值加引号(如 可选:指定将日志发送到内部 Elasticsearch 实例的 default 输出。 可选:指定是否转发结构化 JSON 日志条目作为 structured 项中的 JSON 对象。日志条目 必须包含有效的结构化 JSON;否则,OpenShift Logging 会删除 structured 字段,并将日 志条目发送到默认索引 app-00000x。 可选:字符串。要添加到日志中的一个或多个标签。 可选:指定将日志转发到内部 Elasticsearch 实例的 default 输出。 可选:指定是否转发结构化 JSON 日志条目作为 structured 项中的 JSON 对象。日志条目 必须包含有效的结构化 JSON;否则,OpenShift Logging 会删除 structured 字段,并将日 志条目发送到默认索引 app-00000x。 可选:字符串。要添加到日志中的一个或多个标签。 可选:配0 码力 | 223 页 | 2.28 MB | 1 年前3Object Pascal 参考手册(Ver 0.1)
注意:我们使用 goto 来跳出一个嵌套循环。永远不要跳入一个循环或其它结构语句,这会导致不可预知 的结果。 Syntactic elements - 33 - Structured Statements(结构语句) Structured Statements: Overview(概述) 结构语句由其它语句构成。当顺序执行其它语句,或有条件地、或重复执行其它语句时,使用结构语句。 • 复合语句或 Pascal 数据类型的分类: simple ordinal integer character Boolean enumerated subrange real string structured set Data types, variables and constants - 44 - array record file class class reference � 被修改的字符都在字符串中。请小心不要对指针使用(索引)边界检查。 当混合使用 WideString 和 PWideChar 时,这些规则同样适用。 Structured types(结构类型) Structured types: Overview(概述) 结构类型的一个实例可包含多个值。结构类型包括集合、数组、记录,也包括类、类引用(class-reference) 和接口0 码力 | 168 页 | 868.25 KB | 1 年前3Kotlin 1.9.10 官方文档 中文版
learning for tweaking existing pre-trained models to your tasks. Kotlin DataFrame is a library for structured data processing. It aims to reconcile Kotlin's static typing with the dynamic nature of data by the supertype for any other pointer type. So if the C function takes void* , then the Kotlin binding accepts any CPointer . Casting a pointer (including COpaquePointer ) can be done with .reinterpretconst char* are represented as a Kotlin String . So it is possible to pass any Kotlin string to a binding expecting a C string. There are also some tools available to convert between Kotlin and C strings 0 码力 | 3753 页 | 29.69 MB | 1 年前3Rust 语言学习笔记
for 和 while 的通用控制结构。和 C 和 C++ 风格的编程语言一样,代码段放在花括号中。 Rust 使用实现(implementation)、特征(trait)和结构化类型 (structured type)而不是类(class)。这点,与基于继承的 OO 语言 C++, Java 有相当大的差异。而跟 Ocaml, Haskell 这类函数式语言更加接近。 Rust 做到了内存安全而无需 move 小节里的结论 相悖了? 其实不然,这其实是根据变量类型是否实现 Copy 特性决定的。对于 实现 Copy 特性的变量,在 move 时会拷贝资源到新内存区域,并把新内存区域 的资源 binding 为 b。特性有点类似于 interface,但是在 rust 中必须显式实 现。 Before move: a <=> 内存(地址:A,内容:100) After move: a <=> w(3)) as *mut c_void) }; 6.3.1.3 封装 unsafe,暴露安全接口 作为一个库作者,对外暴露不安全接口是一种非常不合格的做法。在做 c 库的 rust binding 时,我们做的最多的将是将不安全的 c 接口封装成一个安全接口。 通常做法是:在一个叫 ffi.rs 之类的文件中写上所有的 extern 块用以声明 ffi 函数。在一个叫 wrapper.rs0 码力 | 117 页 | 2.24 MB | 1 年前3Kotlin 官方文档中文版 v1.9
learning for tweaking existing pre-trained models to your tasks. Kotlin DataFrame is a library for structured data processing. It aims to reconcile Kotlin's static typing with the dynamic nature of data by is the supertype for any other pointer type. So if the C function takes void* , then the Kotlin binding accepts any CPointer . Casting a pointer (including COpaquePointer ) can be done with .reinterpretconst char* are represented as a Kotlin String . So it is possible to pass any Kotlin string to a binding expecting a C string. There are also some tools available to convert between Kotlin and C strings 0 码力 | 2049 页 | 45.06 MB | 1 年前3httpd 2.4.28 中文文档
confusing Port and BindAddress directives are gone; only the Listen directive is used for IP address binding; the ServerName directive specifies the server name and port number only for redirection and vhost directories. This functionality is not supported by mod_userdir. However, if users' home directories are structured in a regular way, then it is possible to use the AliasMatch directive to achieve the desired effect Glossary | Sitemap Apache HTTP Server Version 2.4 Apache > HTTP Server > Documentation > Version 2.4 Binding to Addresses and Ports Configuring Apache HTTP Server to listen on specific addresses and ports0 码力 | 2659 页 | 3.10 MB | 1 年前3httpd 2.4.33 中文文档
confusing Port and BindAddress directives are gone; only the Listen directive is used for IP address binding; the ServerName directive specifies the server name and port number only for redirection and vhost directories. This functionality is not supported by mod_userdir. However, if users' home directories are structured in a regular way, then it is possible to use the AliasMatch directive to achieve the desired effect Glossary | Sitemap Apache HTTP Server Version 2.4 Apache > HTTP Server > Documentation > Version 2.4 Binding to Addresses and Ports Configuring Apache HTTP Server to listen on specific addresses and ports0 码力 | 2692 页 | 3.12 MB | 1 年前3httpd 2.2.29 中文文档
confusing Port and BindAddress directives are gone; only the Listen directive is used for IP address binding; the ServerName directive specifies the server name and port number only for redirection and vhost directories. This functionality is not supported by mod_userdir. However, if users' home directories are structured in a regular way, then it is possible to use the AliasMatch directive to achieve the desired effect Glossary | Sitemap Apache HTTP Server Version 2.2 Apache > HTTP Server > Documentation > Version 2.2 Binding Configuring Apache to listen on specific addresses and ports. See also Virtual Hosts DNS Issues0 码力 | 1854 页 | 1.48 MB | 1 年前3httpd 2.2.27 中文文档
confusing Port and BindAddress directives are gone; only the Listen directive is used for IP address binding; the ServerName directive specifies the server name and port number only for redirection and vhost directories. This functionality is not supported by mod_userdir. However, if users' home directories are structured in a regular way, then it is possible to use the AliasMatch directive to achieve the desired effect Glossary | Sitemap Apache HTTP Server Version 2.2 Apache > HTTP Server > Documentation > Version 2.2 Binding Configuring Apache to listen on specific addresses and ports. See also Virtual Hosts DNS Issues0 码力 | 1849 页 | 1.47 MB | 1 年前3
共 214 条
- 1
- 2
- 3
- 4
- 5
- 6
- 22