search for: juggle

Displaying 20 results from an estimated 175 matches for "juggle".

2012 Apr 25
1
PCI Hotplugging - Could I juggle a video card and other devices between running DomUs?
Hello List! As I venture a little further down the Xen rabbit hole, I''ve gotten myself wondering: could I script the use of "xm pci-attach" and "xm pci-detach" such that I can shift all of my difficult-to-virtualize PCI devices, such as video card[s], USB controllers, audio devices, and so on, from one running DomU to another? Give myself a button or key
2010 Feb 25
3
rack configurator?
Hey folks, Does anyone know of a rack configurator that runs on CentOS? It does not have to even be very fancy - immediately I'm just looking for an easy way to keep track of what is in my racks, and being able to have a visual of it. Maybe juggle stuff around. Bonus if it does power calculations based on model numbers and so on - or data I punch in for each model. But really right now some kind of very specific CAD or Draw tool that is specific to this purpose. Or a template for a more general tool. thanks, -Alan -- ?Don't eat a...
2009 Dec 14
2
ISDN: Inband DTMF doesn't trigger transfer feature
Hi there, I just upgraded a relatively old Asterisk installation (1.2) in our office to a relatively new version (1.6svn from last wednesday) which runs a Junghans QuadBRI card [1]. To get this flying I got dahdi-linux, dahdi-tools and libpri from SVN as well. After a while of juggling it "works". What doesn't work: connected ISDN devices (Gigaset phones connected to QuadBRI
2023 May 23
3
[Bridge] [PATCH net-next 1/5] skbuff: bridge: Add layer 2 miss indication
On Fri, May 19, 2023 at 02:52:18PM -0700, Jakub Kicinski wrote: > On Fri, 19 May 2023 16:51:48 +0300 Ido Schimmel wrote: > > diff --git a/net/bridge/br_input.c b/net/bridge/br_input.c > > index fc17b9fd93e6..274e55455b15 100644 > > --- a/net/bridge/br_input.c > > +++ b/net/bridge/br_input.c > > @@ -46,6 +46,8 @@ static int br_pass_frame_up(struct sk_buff *skb) >
2018 Sep 10
2
linear-scan RA
How precise is the interference checking (to my mind, a great weakness of linear scan)? Is there way to do coalescing (the great strength of coloring)? I ask these questions because we (guys I work with) see loops where there's a little register juggling that seems unnecessary. Is there a paper that describes what y'all do? Thanks, Preston On Mon, Sep 10, 2018 at 9:57 AM, Matthias
2010 May 25
1
Non-unique Values
...t I could report to my data entry team any non-unique values of unique and tell them the row numbers so they can check if the 'unique' value is keyed wrongly, or the entry had been made twice. Hoping there is an easy way. if not I suspect we can do it in the SQL tables, just trying not to juggle two languages... C ******************************************************************************************************************** This message may contain confidential information. If yo...{{dropped:21}}
2011 Nov 14
3
ruby 1.9.3 causes rbuf_fill timeout, but 1.8.7 does not
subject line says it all. I am trying to use the Google Storage gem (gstore), and if i use ruby 1.8.7, no problem. If i try to use ruby 1.9.3, i get this error: Timeout::Error: Timeout::Error from /usr/local/lib/ruby/1.9.1/net/protocol.rb:146:in `rescue in rbuf_fill'' from /usr/local/lib/ruby/1.9.1/net/protocol.rb:140:in `rbuf_fill'' from
2006 Jun 01
2
CentOS 4.3 Server spontaneously rebooting (over and over again)
...sults. In doing so I noticed that it took a might long time to load my SCSI drivers and after removing both SCSI adapters (just connected for oldish CD- and tape-drives) it got a little better for just a few hours. Now my system is back to his anoying reboot habbit during the boot-process I've juggled around with the memory because sometimes the reboot occurred during initialization of the RAM disks. I was also starting to think that it may have to do something with networking activity because when it (only now and then) comes up properly, I can login (straight from the console) but as soon as...
2023 May 19
1
[Bridge] [PATCH net-next 1/5] skbuff: bridge: Add layer 2 miss indication
On Fri, 19 May 2023 16:51:48 +0300 Ido Schimmel wrote: > diff --git a/net/bridge/br_input.c b/net/bridge/br_input.c > index fc17b9fd93e6..274e55455b15 100644 > --- a/net/bridge/br_input.c > +++ b/net/bridge/br_input.c > @@ -46,6 +46,8 @@ static int br_pass_frame_up(struct sk_buff *skb) > */ > br_switchdev_frame_unmark(skb); > > + skb->l2_miss
2019 Aug 27
2
[PATCH nbdkit] sh: Remove assert and replace with smarter file descriptor duplication. (was: Re: [nbdkit PATCH v2 14/17] sh: Use pipe2 with CLOEXEC when possible)
On Fri, Aug 02, 2019 at 02:26:15PM -0500, Eric Blake wrote: > + /* Ensure that stdin/out/err of the current process were not empty > + * before we started creating pipes (otherwise, the close and dup2 > + * calls below become more complex to juggle fds around correctly). > + */ > + assert (in_fd[0] > STDERR_FILENO && in_fd[1] > STDERR_FILENO && > + out_fd[0] > STDERR_FILENO && out_fd[1] > STDERR_FILENO && > + err_fd[0] > STDERR_FILENO && err_fd[1] > STDE...
2011 Oct 18
0
maybe there's something i don't understand
...a lot different than "ambiguity". there's absolutely no reason in the world -- none! -- that you can't have _clarity_ and _user_convenience_... indeed, i see those two as working hand-in-hand... the easiest thing for the user to handle is a clear model. the hardest thing is to juggle two ambiguous models. even juggling two _clear_ models is somewhat difficult. but one clear model, especially a simple one? _easy_. > Another problem is that the majority of Markdown.pl > derivatives are implemented as a long series of > global substitutions running on the...
2014 May 07
1
directory permissions not set until all files copied
...if one volume is corrupted in some way, the corruption will not affect the other volumes automatically. At the same time, I want to treat these as one unified filesystem, so I effectively concatenate them via aufs. Incidentally, this also allows me to more easily address strange behavior because juggle smaller chunks. If I had 1 10TB fs, and something was going wonky, I would have to have an additional 10TB of capacity to be able to offload it, but as 5 2TB filesystems, I can juggle 2TB at a time. It just so happens that I recently replaced my disk controller and I noticed an unexpected side ef...
2018 Sep 10
2
linear-scan RA
> The underlying liveness datastructure is a list of ranges where each vreg is alive > (ranges in terms of instructions numbered). I remember a couple of later linear scan > papers describing the same thing (Traub et.al. being the first if I remember correctly). > That should be as accurate as you can get in terms of liveness information. It depends on the details. For example, given
2006 Feb 12
2
dual TE410, both span 3 is broken
This afternoon I finally figured out more with regarding to a strange clock-slip problem we have on our asterisk box. We have two TE410s, in E1 mode: TE410P version c01a009b They have their own interrupts: 66: 781648298 783747388 IO-APIC-level t4xxp 233: 253890977 1311504670 IO-APIC-level t4xxp They have their full 31 channels: span=3,0,0,ccs,hdb3,crc4 bchan=63-77,79-93 dchan=78
2010 Apr 23
2
bigmemory package woes
I have pretty big data sizes, like matrices of .5 to 1.5GB so once i need to juggle several of them i am in need of disk cache. I am trying to use bigmemory package but getting problems that are hard to understand. I am getting seg faults and machine just hanging. I work by the way on Red Hat Linux, 64 bit R version 10. Simplest problem is just saving matrices. When i do somethi...
2015 Jan 19
2
SIG repo layout and conflicts between projects within a SIG
At the moment, we're essentially using yum repos as the "patch" mechanism to CentOS Base: SIGs populate a repo with packages they want to add / override, and all other packages default to Base. The current setup is that every sig has exactly one production repo per CentOS version. Also, we seem to be wanting to see SIGs not as individual projects, but to make the 'G' an
2004 Sep 10
2
Improving on Rice coding
On Sun, 27 Apr 2003, Josh Coalson wrote: > > Paul, cool to see you here... I thought bonk was in limbo > since I couldn't even see the homepage for a while. > There's a reason that web server is called yoyo... Bonk was a neat idea that turned out to be not too practical, so i haven't been working on it much. > > I actually did study bonk a little when I discovered
2017 Jul 24
7
[RFC] Add IR level interprocedural outliner for code size.
Hi Jessica, The comparison to the inliner is an interesting one but we think it's important to note the difference in the use of heuristics. The inliner is juggling many different tasks at the same time, execution speed, code size, etc. which can cause the parameters to be very sensitive depending on the benchmark/platform/etc. The outliners heuristics are focused solely on the potential code
2016 Apr 06
0
Revolutions blog: March 2016 Roundup
.../2016/03/analysing-the-movements-of-a-cat.html General interest stories (not related to R) in the past month included: typography in movies (http://blog.revolutionanalytics.com/2016/03/fonts-from-the-future.html), rubiks cube juggling (http://blog.revolutionanalytics.com/2016/03/because-its-friday-juggle-solve.html), pianograms (http://blog.revolutionanalytics.com/2016/03/because-its-friday-pianograms.html) and a robot rebellion (http://blog.revolutionanalytics.com/2016/03/our-robot-overlords.html). Meeting times for local R user groups (http://blog.revolutionanalytics.com/local-r-groups.html) can...
2008 Apr 30
5
Debian updates
Once again Debian has no updates. Is there any reason for this to happen? Jim -------------- next part -------------- An HTML attachment was scrubbed... URL: http://www.winehq.org/pipermail/wine-users/attachments/20080430/c39ba1e4/attachment.htm