Displaying 2 results from an estimated 2 matches for "toadd".
Did you mean:
tcadd
2006 Aug 29
1
PATCH: Add fields argument to installed.packages and available.packages
...@
} # end of download vs cached
} # end of localcran vs online
if (length(res0)) {
- res0 <- cbind(res0, Repository = repos)
+ missingFields <- fields[!(fields %in% colnames(res0))]
+ if (length(missingFields)) {
+ toadd <- matrix(as.character(NA), nrow=nrow(res0),
+ ncol=length(missingFields),
+ dimnames=list(NULL, missingFields))
+ res0 <- cbind(res0, toadd)
+ }
+ res0 <- cbind(res0[, fields], Repository =...
2018 Jul 11
1
Adding a VLAN tag to a libvirt SR-IOV VF network using the "virsh net-update" command
...anaged='yes'> <driver name='vfio'/> <address type='pci' domain='0x0000' bus='0x02' slot='0x10' function='0x0'/> </forward></network>
I am trying to add VLAN 100 to this network. If I use the following command toadd a VLAN tag to this network:
virsh net-update GE0-0-SRIOV-1 modify bridge --xml "<vlan trunk='no'><tag id='100'/></vlan>"
It fails as the section "bridge" doesn't support adding a VLAN tag. I have triedother section values like domain and al...