OpenShift Container Platform 4.10 虚拟化bus: virtio 第 第 8 章 章 虚 虚拟 拟机 机 53 1 2 name: cloudinitdisk interfaces: - masquerade: {} name: default rng: {} features: 在侧边菜单中点 Virtualization → VirtualMachines。 2. 选择虚拟机以打开 VirtualMachine Details 屏幕。 3. 点击 Network Interfaces 选项卡。 4. 点击 Add Network Interface。 5. 在 Add Network Interface 窗口中,指定网络接口的 Name、Model、Network、Type disk: bus: virtio name: cloudinitdisk - cdrom: bus: virtio name: cd-drive-1 interfaces: - boot Order: 2 2 macAddress: '02:96:c4:00:00' masquerade: {} name: default 第 第0 码力 | 307 页 | 3.45 MB | 1 年前3
Kotlin 1.9.10 官方文档 中文版
channels in the Kotlin Slack. fritz2 fritz2 is a standalone framework for building reactive web user interfaces. It provides its own type-safe DSL for building and rendering HTML elements, and it makes use framework for Kotlin/JS. Doodle applications use the browser's graphics capabilities to draw user interfaces instead of relying on DOM, CSS, or Javascript. By using this approach, Doodle gives you precise annotation, such as @Input or @Internal . The Kotlin Gradle plugin API artifact has two new interfaces: org.jetbrains.kotlin.gradle.tasks.KotlinCompilationTask , which has the compilerOptions input0 码力 | 3753 页 | 29.69 MB | 1 年前3
Kotlin 官方文档中文版 v1.9in the Kotlin Slack. fritz2 fritz2 is a standalone framework for building reactive web user interfaces. It provides its own type- safe DSL for building and rendering HTML elements, and it makes use framework for Kotlin/JS. Doodle applications use the browser's graphics capabilities to draw user interfaces instead of relying on DOM, CSS, or Javascript. By using this approach, Doodle gives you precise annotation, such as @Input or @Internal . The Kotlin Gradle plugin API artifact has two new interfaces: org.jetbrains.kotlin.gradle.tasks.KotlinCompilationTask , which has the compilerOptions input0 码力 | 2049 页 | 45.06 MB | 1 年前3
Zabbix 5.4 中文手册delimited IP addresses that the trapper should listen on. Trapper will listen on all network interfaces if this parameter is missing. Multiple IP addresses are supported since Zabbix 1.8.3. ListenPort delimited IP addresses that the trapper should listen on. Trapper will listen on all network interfaces if this parameter is missing. Multiple IP addresses are supported since Zabbix 1.8.3. ListenPort delimited IP addresses that the trapper should listen on. Trapper will listen on all network interfaces if this parameter is missing. ListenPort no 1024-32767 10051 Listen port for trapper. LoadModule0 码力 | 2339 页 | 19.57 MB | 1 年前3
Zabbix 3.4 中文手册parameters will resolve to the interface that is selected for the item. When used in items without interfaces they will resolve to either the Zabbix agent, SNMP, JMX or IPMI interface of the host in this order process is stopped by job control signal • trace - 由作业控制信号的进程停止 添加一个新的 zabbix[host,discovery,interfaces] 内部监控项来返回在 Zabbix 前端配置的所有主机接口,这个监控项可以使用在低 级返现中。 5.18 低级发现 • 添加了对触发原型表达式的函数参数中的 LLD 宏的支持。 • 添加在触发原型名称,描述和标签中使用 中。如 果缺少访问主机的必要权限,server 会返回拒绝执行脚本的提示。 API 变更 废弃了 isreadable() 和 iswritable() 方法,同时也移除了 proxy.interfaces 参数。 执行命令/脚本的变更 在 Zabbix 3.4 种,由于引入了命令/脚本的退出代码的检查。如果退出代码不为 0,告警脚本可以被多次执行。虽然拥有 “nowait” 标签 的监控0 码力 | 1757 页 | 12.63 MB | 1 年前3
Object Pascal 参考手册(Ver 0.1) 、类、类引用和指针外,变体类型能存储任何其它类型的 值。换句话说,除结构类型和指针外,变体类型能存储其它的任何类型;变体类型能存储接口,并能通 过它使用接口的方法和属性(参考 Object interfaces);变体类型能存储动态数组,也能存储一种特殊的 静态数组:变体数组(Variant array)。变体类型能和其它变体类型、整数、实数、字符串和布尔值在表 达式和赋值语句中混合使用,编译器自动完成类型转换。 类 TObject。如 果包含(ancestorClass)并且 memberList 是空的,你可以省略 end。一个类声明也可以包括它实现的接 口列表,请参考 Implementing interfaces。 在类声明中,方法看起来就像函数(或过程)头,而没有函数(或过程)体。方法的定义出现在程序的 其它地方。 比如,这里是 Classes 单元中 TMemoryStream 类的声明 distributed. 使用–G–开关能防止一个包和其它包用于同一个程序中。 如果合适,编译包时其它命令行选项也可以使用。 Object interfaces - 141 - Object interfaces(对象接口) Object interfaces: Overview(概述) 对象接口(或简单地说接口)定义了能被一个类实现的方法。接口声明和类相似,但不能直接实例化它, 也不能0 码力 | 168 页 | 868.25 KB | 1 年前3
CmlPHP v2.x 开发手册
//要注意的是这边只是做绑定并没有真正实例化 Cml::runApp(function() { //必须绑定。系统错误及异常捕获机制 如果想使用第三方的服务 只要简单封装一个服务。实现 \Cml\Interfaces\ErrorOrException接口即可 Cml::getContainer()- >singleton('cml_error_or_exception', \Cml\E //必须绑定。系统日志驱动 内置\Cml\Logger\File::class |\Cml\Logger\Redis::class两种. //自定义服务实现\Cml\Interfaces\Logger接口即可或继承 \Cml\Logger\Base再按需重载 Cml::getContainer()->singleton('cml_log', \Cml\Logger\File::class); 器方法。具体参考 http://doc.cmlphp.com/devintro/route/readme.html。 //如果想使用第三方的路由只要简单封装一个服务。实现 \Cml\Interfaces\Route接口即可 Cml::getContainer()->singleton('cml_route', \Cml\Service\Route::class);0 码力 | 245 页 | 720.67 KB | 1 年前3
Debian GNU/Linux 安裝手冊 January 8, 2024system on closing the lid and laptop specfic hardware buttons like those for disabling the wifi interfaces (“airplane mode”). Nonetheless sometimes the hardware vendors use specialized or proprietary hardware “cores”, in one physical chip. 2.1.5 Graphics Hardware Support Debian’s support for graphical interfaces is determined by the underlying support found in X.Org’s X11 system, and the kernel. Basic framebuffer IDE (also known as PATA), SATA or SCSI. 可用空間 分割區。 安裝有其他作業系統的分割區。 Network interfaces Type/model of available network interfaces. 印表機 型號與製造商。 顯示卡 Type/model and manufacturer. 3.3.3 硬體相容性 Many products0 码力 | 120 页 | 643.51 KB | 1 年前3
CmlPHP v2.x 开发手册
//要注意的是这边只是做绑定并没有真正实例化 Cml::runApp(function() { //必须绑定。系统错误及异常捕获机制 如果想使用第三方的服务只要简单封装一个服务。实现 \Cml\Interfaces\ErrorOrException接口即可 Cml::getContainer()- >singleton('cml_error_or_exception', \Cm //必须绑定。系统日志驱动 内置\Cml\Logger\File::class|\Cml\Logger\Redis::class两种. //自定义服务实现\Cml\Interfaces\Logger接口即可或继承\Cml\Logger\Base再按需重载 Cml::getContainer()->singleton('cml_log', \Cml\Logger\File::class); 件的方式来执行相应的控制器方法。具体参考 http://doc.cmlphp.com/devintro/route/readme.html。 //如果想使用第三方的路由只要简单封装一个服务。实现\Cml\Interfaces\Route接口即可 Cml::getContainer()->singleton('cml_route', \Cml\Service\Route::class);0 码力 | 251 页 | 973.37 KB | 1 年前3
Zabbix 4.2 中文手册delimited IP addresses that the trapper should listen on. Trapper will listen on all network interfaces if this parameter is missing. Multiple IP addresses are supported since Zabbix 1.8.3. ListenPort delimited IP addresses that the trapper should listen on. Trapper will listen on all network interfaces if this parameter is missing. Multiple IP addresses are supported since Zabbix 1.8.3. ListenPort if.total items do not provide statistics of loopback interfaces (e.g. lo0). 2 These values for these items are not supported for loopback interfaces on Solaris systems up to and including Solaris 10 6/060 码力 | 1869 页 | 13.68 MB | 1 年前3
共 144 条
- 1
- 2
- 3
- 4
- 5
- 6
- 15













