search for: 34,4

Displaying 20 results from an estimated 33 matches for "34,4".

Did you mean: 3,4
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...
2003 Nov 06
2
TINC and OpenVPN tunnel performance on a Windows client
...P works as well as the plain network connection during the transfers. The other tunnels drop too much packets to be usable. PING: latency, min/avg/max (ms): - plain network: 1,2/9,1/50,7 - OpenVPN-TCP: 4,5/121,1/352,6 - OpenVPN-UDP: 3,7/25,7/88,9 - OpenVPN-UDP-LZO: 3,5/25,4/79,0 - TINC-TCP: 7,3/34,4/88,9 - TINC-UDP: 4,1/14,5/75,9 The maximum latency of TINC-TCP doesn't get as big as the latency of OpenVPN-TCP, but that might have something to do with the large packet loss TINC-TCP is having. FTP: transfer times FTP1/FTP2/FTP3/total (s): - plain network: 24,0/24,6/24,9/73,5 - OpenVPN-T...
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...
2006 May 15
2
Any Alpha users...
If you have access to an Alpha, please test klibc-1.3.21; in particular, anything which uses pipes... Thanks, -hpa
2014 Dec 16
0
[PATCH] mc/nv4c: disable msi
...@ #include "nv04.h" -static void -nv4c_mc_msi_rearm(struct nouveau_mc *pmc) -{ - struct nv04_mc_priv *priv = (void *)pmc; - nv_wr08(priv, 0x088050, 0xff); -} - struct nouveau_oclass * nv4c_mc_oclass = &(struct nouveau_mc_oclass) { .base.handle = NV_SUBDEV(MC, 0x4c), @@ -41,5 +34,4 @@ nv4c_mc_oclass = &(struct nouveau_mc_oclass) { .fini = _nouveau_mc_fini, }, .intr = nv04_mc_intr, - .msi_rearm = nv4c_mc_msi_rearm, }.base; -- 2.0.4
2012 Sep 30
0
Small Extension to license()/licence()
...nse, either Version 2, June 1991 or Version 3, June 2007.\n") cat("The terms of version 2 of the license are in a file called COPYING\nwhich you should have received with\n") cat("this software and which can be displayed by RShowDoc(\"COPYING\").\n") @@ -34,4 +40,9 @@ cat("Version 3 of the license can be displayed by RShowDoc(\"LGPL-3\").\n") cat("\n") cat("'Share and Enjoy.'\n\n") + } else { + cat(pkg, "is distributed under the", pkgd[["License"]],"License.\n&...
2014 Dec 30
2
Modification time error
...ude=text --include='*/' --exclude='*' "$fromdir/" "$alt1dir/" +stat -c %y "$fromdir/text" "$alt1dir/text" $RSYNC -av --include=etc-ltr-list --include='*/' --exclude='*' "$fromdir/" "$alt2dir/" sleep 1 @@ -34,4 +35,4 @@ '$fromdir/' '$todir/'" "$fromdir" "$todir" # The script would have aborted on error, so getting here means we've won. -exit 0 +exit 99 in order to examine and preserve the data, I found: 2014-12-30 19:29:01.806934641 +0100 2014-12-30...
2013 Mar 07
7
Fixes from the patch queue of the Debian package
Here are three patches that fix issues with out-of-tree building and one that uses Ruby's own autoconf stuff for determining how Ruby bindings should be built. Cheers, -Hilko
2013 Aug 27
0
[PATCH 3/9] drm/nouveau: Allocate local event handlers
..., struct nouveau_eventh *handler) diff --git a/drivers/gpu/drm/nouveau/core/include/core/event.h b/drivers/gpu/drm/nouveau/core/include/core/event.h index ad4d8c2..bdf1a0a 100644 --- a/drivers/gpu/drm/nouveau/core/include/core/event.h +++ b/drivers/gpu/drm/nouveau/core/include/core/event.h @@ -34,4 +34,10 @@ void nouveau_event_get(struct nouveau_event *, int index, void nouveau_event_put(struct nouveau_event *, int index, struct nouveau_eventh *); +int nouveau_event_handler_create(struct nouveau_event *, int index, + int (*func)(struct nouveau_eventh*, int), + void *pri...
2019 Jan 20
0
[klibc:master] Build and install shared binaries only if KLIBCSHAREDFLAGS is defined
...sh/Kbuild @@ -93,4 +93,8 @@ $(obj)/syntax.h: $(obj)/syntax.c $(Q): # Targets to install +ifdef KLIBCSHAREDFLAGS install-y := sh.shared +else +install-y := sh +endif diff --git a/usr/kinit/Kbuild b/usr/kinit/Kbuild index 5320127..84a636a 100644 --- a/usr/kinit/Kbuild +++ b/usr/kinit/Kbuild @@ -34,4 +34,7 @@ subdir- := fstype ipconfig nfsmount resume run-init # install binary -install-y := kinit kinit.shared +install-y := kinit +ifdef KLIBCSHAREDFLAGS +install-y += kinit.shared +endif diff --git a/usr/kinit/fstype/Kbuild b/usr/kinit/fstype/Kbuild index 9b20db1..631eb32 100644 --- a/usr/...
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 Aug 02
3
[PATCH trivial] include: uapi: standard all files' macro prefix and suffix, excluding "linux/" sub-directory
..._GENERIC_ERRNO_BASE_H +#ifndef _UAPI_ASM_GENERIC_ERRNO_BASE_H +#define _UAPI_ASM_GENERIC_ERRNO_BASE_H #define EPERM 1 /* Operation not permitted */ #define ENOENT 2 /* No such file or directory */ @@ -36,4 +36,4 @@ #define EDOM 33 /* Math argument out of domain of func */ #define ERANGE 34 /* Math result not representable */ -#endif +#endif /* _UAPI_ASM_GENERIC_ERRNO_BASE_H */ diff --git a/include/uapi/asm-generic/errno.h b/include/uapi/asm-generic/errno.h index a1331ce..a47d9b5 100644 --- a/include/uapi/asm-generic/errno.h +++ b/include/uapi/asm-generic/errno.h @@ -1,5 +1,5 @@ -#i...
2013 Aug 02
3
[PATCH trivial] include: uapi: standard all files' macro prefix and suffix, excluding "linux/" sub-directory
..._GENERIC_ERRNO_BASE_H +#ifndef _UAPI_ASM_GENERIC_ERRNO_BASE_H +#define _UAPI_ASM_GENERIC_ERRNO_BASE_H #define EPERM 1 /* Operation not permitted */ #define ENOENT 2 /* No such file or directory */ @@ -36,4 +36,4 @@ #define EDOM 33 /* Math argument out of domain of func */ #define ERANGE 34 /* Math result not representable */ -#endif +#endif /* _UAPI_ASM_GENERIC_ERRNO_BASE_H */ diff --git a/include/uapi/asm-generic/errno.h b/include/uapi/asm-generic/errno.h index a1331ce..a47d9b5 100644 --- a/include/uapi/asm-generic/errno.h +++ b/include/uapi/asm-generic/errno.h @@ -1,5 +1,5 @@ -#i...
2013 Aug 02
3
[PATCH trivial] include: uapi: standard all files' macro prefix and suffix, excluding "linux/" sub-directory
..._GENERIC_ERRNO_BASE_H +#ifndef _UAPI_ASM_GENERIC_ERRNO_BASE_H +#define _UAPI_ASM_GENERIC_ERRNO_BASE_H #define EPERM 1 /* Operation not permitted */ #define ENOENT 2 /* No such file or directory */ @@ -36,4 +36,4 @@ #define EDOM 33 /* Math argument out of domain of func */ #define ERANGE 34 /* Math result not representable */ -#endif +#endif /* _UAPI_ASM_GENERIC_ERRNO_BASE_H */ diff --git a/include/uapi/asm-generic/errno.h b/include/uapi/asm-generic/errno.h index a1331ce..a47d9b5 100644 --- a/include/uapi/asm-generic/errno.h +++ b/include/uapi/asm-generic/errno.h @@ -1,5 +1,5 @@ -#i...
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...
2016 Jan 01
9
[PATCH v4 0/9] PCIe speed changes
overall it is for the most part the same as my older version. I cleaned up some copyright things, so that it is more like the others. Also I moved the print about the max speed supported into preinit and did some other minor cleanups in the 3rd commit. Happy testing (and performance for prime offloading setups) Karol Herbst (9): pci: add gk104 variant pci: add gf106 variant pci: implement
2014 Nov 04
13
[PATCH 0/9] Small bits of non-Linux porting - #2
Hi, continuing what started a couple of weeks ago [1], the attached patch series continues the work in making it easier to build and run libguestfs (in fixed appliance mode) on OSes different than Linux. The provided changes should cause no functional changes on Linux. [1] https://www.redhat.com/archives/libguestfs/2014-October/msg00176.html Thanks, -- Pino Pino Toscano (9): build: check
2006 Mar 07
8
[PATCH] xm,xend: flesh out xm sched-sedf
This patch -Displays[1] current parameters for running domains ala xm list -Allow users to set[2] one or more parameters[3] without having to provide values for parameters they do not wish to change -Adds additional testing of sched-sedf via new xm-test testcases. With this patch applied, test 02_sedf_period_lower_neg.py exposes a bug[4]. I''ll follow up this email with a patch for
2013 Sep 05
0
[PATCH RESEND v3 3/7] Intel MIC Host Driver, card OS state management.
...buffer length address to be written can be found in the + System.map file of the card OS. diff --git a/drivers/misc/mic/common/mic_device.h b/drivers/misc/mic/common/mic_device.h index f02262e..6440e9d 100644 --- a/drivers/misc/mic/common/mic_device.h +++ b/drivers/misc/mic/common/mic_device.h @@ -34,4 +34,11 @@ struct mic_mw { resource_size_t len; }; +/* + * Scratch pad register offsets used by the host to communicate + * device page DMA address to the card. + */ +#define MIC_DPLO_SPAD 14 +#define MIC_DPHI_SPAD 15 + #endif diff --git a/drivers/misc/mic/host/Makefile b/drivers/misc/mic/ho...
2008 May 20
4
[PATCH O/4] BIO tracking take2
...here, to track down block I/Os and assign them to ioband device "ioband1". First, mount the bio cgroup filesystem. # mount -t cgroup -o bio none /cgroup/bio Then, make new bio cgroups and put some processes in them. # mkdir /cgroup/bio/bgroup1 # mkdir /cgroup/bio/bgroup2 # echo 1234 > /cgroup/bio/bgroup1/tasks # echo 5678 > /cgroup/bio/bgroup1/tasks Now, check the ID of each bio cgroup which is just created. # cat /cgroup/bio/bgroup1/bio.id 1 # cat /cgroup/bio/bgroup2/bio.id 2 Finally, attach the cgroups to "ioband1" and assign them weights. # dms...