search for: _between_

Displaying 16 results from an estimated 16 matches for "_between_".

2003 Oct 15
2
Odd problem with pxelinux
We encountar a somewhat odd problem. We use pxelinux to boot a linux cluster and when we reboot all 103 of the nodes some of the won't start since the tftp-servere looses the arp-entry _between_ it downloads the pxelinux.0 and the config file! pxelinux doesn't seem to answer the arp-requests either in this phase. We run linux 2.4.22 on the tftp-server which also is dhcp-server and nfs-server. Is this som known issue with the linux kernel or pxelinux? // Jimmy -- Jimmy Hedman...
2010 Apr 26
2
[PATCH] Make Queue announcements more consistent (1.4.26.2)
...elayed up to "timeout+retry" seconds. -- This patch reduces that possible delay to only "timeout" seconds - The say_position and periodic_announcement times are in elapsed time that _includes_ the time of the announcement. -- This patch changes those times to be the time _between_ playing of those announcements Thanks. -- James --- asterisk-1.4.26.2/apps/app_queue.c 2009-08-10 13:14:34.000000000 -0700 +++ asterisk-1.4.26.2.new/apps/app_queue.c 2010-04-25 22:25:08.000000000 -0700 @@ -345,6 +345,7 @@ time_t last_periodic_announce_time; /*!< The last time we played a p...
2004 Dec 05
13
Adding dynamically more than one host at once?
Hi, it seems not to be possible to add more than one host at once to a zone. So shorewall add br0:eth0:192.168.2.10,eth0:192.168.2.11 work fails, since "br0:eth0:192.168.2.10,eth0" is interpreted as one interface. --snip -- iptables v1.2.9: interface name `eth0:192.168.2.10,eth0'' must be shorter than IFNAMSIZ (15) Try `iptables -h'' or ''iptables
2020 Aug 04
2
TableGen trace facility
...i-class, or by a free-standing def, or a >defm (inside or outside a multiclass) -- any free variables that are >"resolved" as template parameters get their substitution applied. The >relevant let-statements take effect just after that. > >However, and this is key, reference _between_ fields are only resolved >and substituted once the final defined record at the global scope is >produced. This is what makes: > >class A<int x> { > int a = x; > int b = a + 1; >} > >def B : A<5> { let a = 10; } > >... result in b == 11 instead of b ==...
2013 Feb 04
2
[LLVMdev] Asserts in bundleWithPred() and bundleWithSucc()
...bundle: v BUNDLE %R0<imp-def,dead>, %PC<imp-def>, %R18<imp-use> *^v %R0<def> = AND_ri %R18, 128 *^ JMP_EQriPnt_nv_V4 %R0<kill,internal>, 0, <BB#2>, %PC<imp-def> I need to move an instruction into this bundle from another location and insert it _between_ AND_ri and JMP_EQriPnt_nv_V4. I use MBB->splice(...) to do that. Let's pretend that moved instruction was not bundled. New instruction is pointed to by MachineBasicBlock::instr_iterator MII. New bundle right after splice is: v BUNDLE %R0<imp-def,dead>, %PC<imp-def>, %R18&lt...
2005 Oct 17
1
RFC: API to allow identification of warnings and errors in the output stream
...r_R_WriteErrConsole, will still receive all output in ptr_R_WriteConsole. Hence this change is perfectly backwards compatible. Of course, the naming may not be perfect? 2) While 1 makes it easy to split warning _and_ errors (and messages) from regular output, it does not suffice to differentiate _between_ warnings, errors, and messages on the error channel. The patch addresses this, by making inError, inWarning, and inPrintWarnings from errors.c accessible (read-only) in R_ext/Error.h. This part of the patch may be slightly more delicate, in that inError, inWarning, and inPrintWarnings seem to b...
2013 Feb 04
0
[LLVMdev] Asserts in bundleWithPred() and bundleWithSucc()
...%R0<imp-def,dead>, %PC<imp-def>, %R18<imp-use> > *^v %R0<def> = AND_ri %R18, 128 > *^ JMP_EQriPnt_nv_V4 %R0<kill,internal>, 0, <BB#2>, %PC<imp-def> > > I need to move an instruction into this bundle from another location and > insert it _between_ AND_ri and JMP_EQriPnt_nv_V4. I use MBB->splice(...) to > do that. Let's pretend that moved instruction was not bundled. New > instruction is pointed to by MachineBasicBlock::instr_iterator MII. New > bundle right after splice is: > > v BUNDLE %R0<imp-def,dead>, %PC...
2020 Aug 04
3
TableGen trace facility
Yes, I understand the problem. To be more useful, TableGen would have to carry the traces along with the classes and records and (re)display the values while the substitutions are being made. I'm writing a new Programmer's Guide for TableGen and have been digging into the parse-time versus substitution-time issue. I haven't found a document that makes it clear. Can you give a quick
2008 Jun 21
2
using the stepfun to plot histogram outline.
...x: numeric vector giving the knots or jump locations of the step function for 'stepfun()'. For the other functions, 'x' is as 'object' below. y: numeric vector one longer than 'x', giving the heights of the function values _between_ the x values. X I think is the same as bbb above. I am however uncertain of how I would go about getting the data needed for y, given that the data I have is on the same format as testdata above is. Thanks for your help! Karin -- Karin Lagesen, PhD student karin.lagesen at medisin.uio.no http:...
2012 May 25
1
R+Stata batch mode
Dear R help, I am using Stata, and I use a Stata ado file (Rsource) to run R in batch mode within Stata Everything works fine .... except for the fact that I cannot export the graphics that I obtain with my computations written in my R source file I believe this is related to the global Rterm_options `"--vanilla"' that I need to precise to Rsource (otherwise it does not work) ...
2013 Feb 02
0
[LLVMdev] Asserts in bundleWithPred() and bundleWithSucc()
On Feb 1, 2013, at 3:43 PM, "Sergei Larin" <slarin at codeaurora.org> wrote: > I have a question about the following (four) asserts recently added in > bundleWithPred() and bundleWithSucc() (see below). What is the real danger > of reasserting a connection even if it already exist? The intention was to identify code that may have been converted from the old style a
2020 Aug 05
2
TableGen trace facility
...>defm (inside or outside a multiclass) -- any free variables that are > > >"resolved" as template parameters get their substitution applied. The > > >relevant let-statements take effect just after that. > > > > > >However, and this is key, reference _between_ fields are only resolved > > >and substituted once the final defined record at the global scope is > > >produced. This is what makes: > > > > > >class A<int x> { > > > int a = x; > > > int b = a + 1; > > >} > > > > &...
2013 Feb 04
2
[LLVMdev] Asserts in bundleWithPred() and bundleWithSucc()
..., %PC<imp-def>, %R18<imp-use> *^v > > %R0<def> = AND_ri %R18, 128 > > *^ JMP_EQriPnt_nv_V4 %R0<kill,internal>, 0, <BB#2>, %PC<imp-def> > > > > I need to move an instruction into this bundle from another location > > and insert it _between_ AND_ri and JMP_EQriPnt_nv_V4. I use > > MBB->splice(...) to do that. Let's pretend that moved instruction was > > not bundled. New instruction is pointed to by > > MachineBasicBlock::instr_iterator MII. New bundle right after splice > is: > > > > v BUNDLE...
2013 Jul 31
11
Is the checkpoint interval adjustable?
I believe 30 sec is the default for the checkpoint interval.  Is this adjustable? -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
2013 Feb 01
4
[LLVMdev] Asserts in bundleWithPred() and bundleWithSucc()
Jakob, I have a question about the following (four) asserts recently added in bundleWithPred() and bundleWithSucc() (see below). What is the real danger of reasserting a connection even if it already exist? My problem with them happens when I try to call finalizeBundle() on an existing bundle to which I have added a new instruction. The goal - a new bundle header with liveness abbreviation, but
2008 Nov 05
2
puzzled by cat() behaviour when argument '...' is a vector (and argument 'sep' contains "\n")
Hi r-devels, I am a bit puzzled by the behaviour of cat() --- any help is appreciated... At least AFAICS, cat() for vector-valued '...' argument behaves in contradiction to what I understand from the note in the help to cat() which reads " Despite its name and earlier documentation, 'sep' is a vector of terminators rather than separators, being output after every