Home
last modified time | relevance | path

Searched refs:properties (Results 1 – 21 of 21) sorted by relevance

/misc/config_tools/configurator/packages/vue-json-schema-form/vue3/vue3-core/src/fields/combiningSchemas/SelectLinkageField/
A Dindex.js126 for (const key in oldSelectSchema.properties) {
128 hasOwn.call(oldSelectSchema.properties, key)
144 || props.selectList[newVal].properties[key].const !== undefined
165 const isTypeObject = (props.schema.type === 'object' || props.schema.properties);
178 properties,
190 …ptyAttachProperties = isTypeObject && isEmptyObject(curSelectSchema && curSelectSchema.properties);
237 if (isTypeObject && !isEmptyObject(props.schema.properties)) {
240 title, description, properties, ...optionSchema
/misc/config_tools/configurator/packages/vue-json-schema-form/utils/schema/
A Dvalidate.js264 if (option.properties) {
272 anyOf: Object.keys(option.properties).map(key => ({
314 if (options[0] && options[0].properties) {
315 …const constProperty = Object.keys(options[0].properties).find(k => options[0].properties[k].const);
320 options[i].properties
321 && options[i].properties[constProperty]
322 && options[i].properties[constProperty].const === formData[constProperty]) {
A DgetDefaultFormState.js150 return Object.keys(schema.properties || {}).reduce((acc, key) => {
154 schema.properties[key],
/misc/config_tools/board_inspector/cpuparser/
A Dplatformbase.py67 properties = list()
73 properties.append(field_name)
105 properties = sorted(set(properties))
106 if len(properties):
108 for property_name in properties:
169 properties = []
175 properties.append(field_name)
198 if properties:
200 for property_name in sorted(properties):
/misc/config_tools/configurator/packages/vue-json-schema-form/vue3/vue3-core/src/fields/ObjectField/
A Dindex.js62 const properties = Object.keys(props.schema.properties || {});
63 const orderedProperties = orderProperties(properties, order);
76 schema: props.schema.properties[name],
/misc/config_tools/configurator/packages/configurator/src/pages/Config/ConfigForm/CustomWidget/Virtio/
A DGPU.vue14 <span v-html="this.GPUConfiguration.properties.display_type.description"></span>
49 … <span v-html="this.DisplayConfiguration.properties.window_resolutions.description"></span>
65 … <span v-html="this.DisplayConfiguration.properties.horizontal_offset.description"></span>
81 … <span v-html="this.DisplayConfiguration.properties.vertical_offset.description"></span>
118 <span v-html="this.DisplayConfiguration.properties.monitor_id.description"></span>
170 …cription: this.rootSchema.definitions['VMConfigType']['properties']['virtio_devices']['properties'…
175 …MonitorIdType: this.rootSchema.definitions['DisplayConfiguration']['properties']['monitor_id']['en…
A DInput.vue13 … <span v-html="this.InputConfiguration.properties.backend_device_file.description"></span>
28 <span v-html="this.InputConfiguration.properties.id.description"></span>
88 …BackendDeviceFileType: this.rootSchema.definitions['VirtioInputConfiguration']['properties']['back…
111 var regexp = new RegExp(this.InputConfiguration.properties.id.pattern);
A DNetwork.vue13 … <span v-html="this.NetworkConfiguration.properties.virtio_framework.description"></span>
29 <span v-html="this.NetworkConfiguration.properties.interface_name.description"></span>
90 …orkDefault: this.rootSchema.definitions['VirtioNetworkConfiguration']['properties']['virtio_framew…
113 var regexp = new RegExp(this.NetworkConfiguration.properties.interface_name.pattern);
A DConsole.vue13 <span v-html="this.ConsoleConfiguration.properties.use_type.description"></span>
29 <span v-html="this.ConsoleConfiguration.properties.backend_type.description"></span>
45 … <span v-html="this.ConsoleConfiguration.properties.output_file_path.description"></span>
61 … <span v-html="this.ConsoleConfiguration.properties.tty_device_path.description"></span>
77 <span v-html="this.ConsoleConfiguration.properties.sock_file_path.description"></span>
/misc/config_tools/configurator/packages/configurator/src/pages/Config/ConfigForm/CustomWidget/
A DIVSHMEM_REGION.vue14 <span v-html="this.IVSHMEMRegionType.properties.NAME.description"></span>
33 <span v-html="this.IVSHMEMRegionType.properties.PROVIDED_BY.description"></span>
49 <span v-html="this.IVSHMEMRegionType.properties.IVSHMEM_SIZE.description"></span>
65 … <span v-html="this.IVSHMEMRegionType.properties.IVSHMEM_REGION_ID.description"></span>
83 <span v-html="this.IVSHMEM_VM.properties.VBDF.description"></span>
95 <span v-html="this.IVSHMEM_VM.properties.VM_NAME.description"></span>
213 var regexp = new RegExp(this.IVSHMEMRegionType.properties.NAME.pattern);
A DVUART.vue14 <span v-html="this.VMConfigType.properties.name.description"></span>
42 <span v-html="this.VMConfigType.properties.name.description"></span>
64 <span v-html="this.VuartConnectionType.properties.type.description"></span>
193 let epTypeProp = this.rootSchema.definitions.VuartEndpointType.properties
194 let conTypeProp = this.rootSchema.definitions.VuartConnectionType.properties
197 VuartEndpointType: this.rootSchema.definitions['VuartEndpointType']['properties'],
206 …IOPortDefault: this.rootSchema.definitions['VuartEndpointType']['properties']['io_port']['default'…
A Dcpu_affinity.vue36 … <span v-html="this.CPUAffinityConfiguration.properties.real_time_vcpu.description"> </span>
51 <span v-html="this.CPUAffinityConfiguration.properties.pcpu_id.description"></span>
146 ….getCurrentFormSchemaData().BasicConfigType.definitions.CPUAffinityConfiguration.properties.pcpu_id
A DCAT.vue14 <span v-html="this.RDTType.properties.RDT_ENABLED.description"></span>
27 <span v-html="this.RDTType.properties.CDP_ENABLED.description"></span>
39 <span v-html="this.RDTType.properties.VCAT_ENABLED.description"></span>
/misc/config_tools/configurator/packages/vue-json-schema-form/vue3/vue3-form-naive/types/
A DformUtils.d.ts24 function orderProperties(properties: object, order): object;
/misc/config_tools/configurator/packages/vue-json-schema-form/utils/
A Dutils.js110 if (!type && (schema.properties || schema.additionalProperties)) {
296 const properties = params.filter(param => param.split('=')[0] === 'name');
299 if (properties.length !== 1) {
304 name = properties[0].split('=')[1];
A DformUtils.js283 export function orderProperties(properties, order) { argument
285 return properties;
295 const propertyHash = arrayToHash(properties);
301 const rest = properties.filter(prop => !orderHash[prop]);
/misc/config_tools/scenario_config/jsonschema/
A Dconverter.py280 properties = OrderedDict()
380 properties[name] = js_ele
388 if properties:
389 result["properties"] = properties
/misc/config_tools/configurator/packages/vue-json-schema-form/vue3/vue3-form-naive/
A DREADME.md44 properties: {
/misc/debug_tools/acrn_crashlog/acrnprobe/
A DREADME.rst167 The ``acrnprobe`` needs to know some HW/SW properties, such as board version,
168 build version. These properties are managed centrally in this file.
/misc/config_tools/configurator/packages/configurator/src/pages/
A DConfig.vue158 …his.schemas.PreLaunchedVM.BasicConfigType.definitions.PCIDevsConfiguration.properties.pci_dev.items
201 …DevsConfiguration.properties.pci_dev.items.enum=this.schemas.PreLaunchedVM.BasicConfigType.definit…
/misc/config_tools/configurator/packages/configurator/src/lib/
A Dacrn.ts551 …this.schemaData.HV.BasicConfigType.definitions.CPUAffinityConfiguration.properties.pcpu_id.enum.ma…

Completed in 23 milliseconds