search for: 34,3

Displaying 17 results from an estimated 17 matches for "34,3".

Did you mean: 3,3
2010 Sep 15
3
aggregate, by, *apply
...actly what I need. More specifically, I'd like my function to have a context of where the data it's analyzing came from. Here is an example: ### BEGIN ### func<-function(x){ m<-median(x$x) if(m > 2 & m < x$y){ return(T) } return(F) } tmp<-data.frame(x=1:10,y=c(rep(34,3),rep(35,3),rep(34,4)),z=c(rep("a",3),rep("b",3),rep("c",4))) res<-aggregate(tmp,list(z),func) ### END ### The values in the example are trivial, but the problem is that only one column is passed to my function at a time, so I can't determine how 'm' r...
2008 Jul 23
5
Histogram
Hi, how can I treat data organised in classes and frequencies? Ex. class frequency 20-23 9 23-25 7 26-28 5 29-31 5 32-34 3 Thanks Angelo Scozzarella
2005 Jan 15
1
SayDigits -- ToneDigits??
I have a user who wants to receive an ANI spitback in DTMF. Right now, the "SayDigits(${CALLERIDNUM})" command works fine with voice. But I'd like to end up doing both. Something along the lines of: exten => 34,1,Answer exten => 34,2,Wait(1) exten => 34,3,Playback(vm-extension) exten => 34,4,SayDigits(${CALLERIDNUM}) exten => 34,5,Wait(2) exten => 34,6,Macro(DTMFDigits,${CALLERIDNUM}) exten => 34,7,Hangup I've searched the voip-info tiki and google, but haven't seen anything lik...
2010 Jul 29
5
xenballooning
As I understand concept of xenballooning, it allow to take memory from guest and return it to hypervisor. This allow to reduce amount of memory allocated to VM in realtime without rebooting VM. But how we can add more memory to guest VM in realtime, than was at boot time? Can we somehow make balloon inflated at start time? (F.e. VM starts with memory = 512Mb and balloon inflating to +512Mb).
2009 Aug 05
1
syntax-check changes
...PATCH 7/8] build: exempt symlinks from trailing-blank-line prohibition * cfg.mk (sc_prohibit_trailing_blank_lines): Exempt symlinks. --- cfg.mk | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/cfg.mk b/cfg.mk index c43185c..2b37450 100644 --- a/cfg.mk +++ b/cfg.mk @@ -134,8 +134,9 @@ sc_prohibit_gethostby: # Disallow trailing blank lines. sc_prohibit_trailing_blank_lines: - @$(VC_LIST_EXCEPT) | xargs perl -ln -0777 -e \ - '/\n\n+$$/ and print $$ARGV' > $@-t + @$(VC_LIST_EXCEPT) \ + | xargs perl -ln -0777 -e \ + '-f $$ARGV or ne...
2013 May 10
4
remotely mounting client disks in p2v server
Just spent a little time poking around w/ p2v and am attaching the following pseudo-code for consideration. Note the patches aren't commit ready yet, just looking for thoughts - The first is a fix to get client image building process working on F17. It seems the version of ksflatten there didn't expand the nested %includes which was causing errors (also --interpreter image-minimizer
2006 Oct 31
1
Asterisk does not bridge zap channels on outgoing calls
...sfer=yes callwaitingcallerid=yes ;echocancelwhenbriged=yes immediate=no rxgain=-2.0 txgain=2.2 callerid=OMG 28 channel=>8 callerid=OMG 29 channel=>9 callerid=OMG 30 channel=>10 callerid=OMG 31 channel=>11 callerid=OMG 32 channel=>12 callerid=OMG 33 channel=>13 callerid=OMG 34 channel=>14 callerid=OMG 35 channel=>15 callerid=OMG 36 channel=>16 ;------------------- ;Placa TDM24XXP - 24 DE INTERIOARE; CONTEXT NOU!! ;------------------- ;------------------------------ context=int_agentie ;------------------------------ group=3 callgroup=3 pickupgroup=3,4,5,10 t...
2018 Jan 20
0
[PATCH nbdkit] filters: Add copy-on-write filter.
...filters/cow/Makefile filters/delay/Makefile filters/offset/Makefile filters/partition/Makefile diff --git a/filters/Makefile.am b/filters/Makefile.am index d918b81..15a1995 100644 --- a/filters/Makefile.am +++ b/filters/Makefile.am @@ -34,3 +34,7 @@ SUBDIRS = \ delay \ offset \ partition + +if HAVE_COW_FILTER +SUBDIRS += cow +endif diff --git a/filters/cow/Makefile.am b/filters/cow/Makefile.am new file mode 100644 index 0000000..5b8ae5a --- /dev/null +++ b/filters/cow/Makefile.am @@ -0,0 +1,65 @@ +# nbdkit +# Copyright (C) 201...
2018 Jan 20
4
[PATCH nbdkit] filters: Add copy-on-write filter.
Eric, you'll probably find the design "interesting" ... It does work, for me at least. Rich.
2019 Jun 18
17
[libnbd PATCH 0/8] Add nbd_pread_callback
I've mentioned this topic before (in fact, the idea of adding NBD_CMD_FLAG_DF was first mentioned at [1]), but finally finished enough of an implementation to feel confident in posting it. I'd still like to add something under examples/ that uses the new API to implement strict checking of a server's structured replies read implementation (ensure that a server never sends data after
2020 Nov 03
45
[patch V3 00/37] mm/highmem: Preemptible variant of kmap_atomic & friends
Following up to the discussion in: https://lore.kernel.org/r/20200914204209.256266093 at linutronix.de and the second version of this: https://lore.kernel.org/r/20201029221806.189523375 at linutronix.de this series provides a preemptible variant of kmap_atomic & related interfaces. This is achieved by: - Removing the RT dependency from migrate_disable/enable() - Consolidating all
2020 Nov 03
45
[patch V3 00/37] mm/highmem: Preemptible variant of kmap_atomic & friends
Following up to the discussion in: https://lore.kernel.org/r/20200914204209.256266093 at linutronix.de and the second version of this: https://lore.kernel.org/r/20201029221806.189523375 at linutronix.de this series provides a preemptible variant of kmap_atomic & related interfaces. This is achieved by: - Removing the RT dependency from migrate_disable/enable() - Consolidating all
2020 Nov 03
45
[patch V3 00/37] mm/highmem: Preemptible variant of kmap_atomic & friends
Following up to the discussion in: https://lore.kernel.org/r/20200914204209.256266093 at linutronix.de and the second version of this: https://lore.kernel.org/r/20201029221806.189523375 at linutronix.de this series provides a preemptible variant of kmap_atomic & related interfaces. This is achieved by: - Removing the RT dependency from migrate_disable/enable() - Consolidating all
2014 Oct 04
4
[PATCH v4 0/4] tests: Introduce test harness for running tests.
This converts more of the tests (basically everything under tests/) to use the test harness, revealing some problems which have subsequently been fixed. Rich.
2014 Oct 05
12
[PATCH v5 0/7] tests: Introduce test harness for running tests.
Since v4: - More tests have been converted. - Testing local guests fixed. - Drop no-exec-stack test.
2014 Oct 23
10
[PATCH v6 00/10] tests: Introduce test harness for running tests.
For v6: This is mainly just a rebase, but I have also added tests in the ocaml/ language bindings directory, and for all the OCaml-written virt tools. Rich.
2014 Oct 24
10
[PATCH v7 00/10] tests: Introduce test harness for running tests.
v7: The only changes since v6 are those suggested by Pino in the review of v5.