cim_adjacentslots.mof

来自「Pegasus is an open-source implementation」· MOF 代码 · 共 37 行

MOF
37
字号
// Copyright (c) 2005 DMTF.  All rights reserved.// <change cr="ArchCR00066.004" type="add">Add UmlPackagePath// qualifier values to CIM Schema.</change>// ==================================================================//  CIM_AdjacentSlots// ==================================================================   [Association, UMLPackagePath ( "CIM::Physical::Connector" ),    Version ( "2.6.0" ), Description (       "AdjacentSlots describes the layout of Slots on a HostingBoard "       "or adapter Card. Information like the distance between the "       "Slots and whether they are 'shared' (if one is populated, then "       "the other Slot can not be used), is conveyed as properties of "       "the association.")]class CIM_AdjacentSlots {      [Key, Description (          "One of the adjacent Slots.")]   CIM_Slot REF SlotA;      [Key, Description (          "The 'other' adjacent Slot.")]   CIM_Slot REF SlotB;      [Description (          "The distance, in inches, between adjacent Slots."),        Units ( "Inches" )]   real32 DistanceBetweenSlots;      [Description (          "Slots can be located in close proximity on Hosting Boards "          "or other Cards, such that if one of these Slots is "          "populated by an adapter Card, the other Slot must be left "          "empty. This relationship is indicated by the SharedSlots "          "boolean set to TRUE.")]   boolean SharedSlots;};

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?