Displaying 2 results from an estimated 2 matches for "brmisc".
Did you mean:
bbmisc
2012 Dec 02
1
Bug#694931: xenstored not started by init script on domU
...ble to have direct network
connection, rather than having to go through the dom0 bridge, that might
have a firewall to bypass (multiple copy, lag, ...)
Example of vif configuration, to get the backend in a vm :
'mac=00:16:3E:de:ad:01,backend=firewall,script=vif-bridge,vifname=sandbox,bridge=brmisc',
That require xen-utils to run in the domU named firewall. The script
vif-bridge will be launched there, expecting to get put in a bridge
'brmisc'. The interface will also have a nice name, instead of 'vifX.Y'.
Catch: it NEED to have xenstored running. I'd appreciate not...
2006 Jan 25
0
lazy evaluation (was RE: Number of replications of a term)
...; a bit worrying. It relies on rep() using the first argument
> before it uses
> the second one. In this case, clearly, it works, but it is
> not a style I
> would encourage and it's easy to construct functions where it fails.
Indeed. Here's a trivial example:
2: package BRmisc in options("defaultPackages") was not found
> f <- function(x, y) {
+ print(y)
+ x + y
+ }
> f(a <- 3, a)
Error in print(y) : object "a" not found
Without the print(), the function would work just fine.
Andy
> -thomas
>
>
>
> > Tim...