search for: sf2

Displaying 18 results from an estimated 18 matches for "sf2".

Did you mean: f2
2003 Dec 15
6
interface bonding
...d fxp1. I also want to make sure that data from fxp0, fxp1 or $VIRTUAL doesn't get sent out fxp1 or fxp0 for some reason. ----- End forwarded message ----- I'm sure i checked this before, but a google search turned up this. ngctl mkpeer fec dummy fec ngctl msg fec0: add_iface '"sf2"' ngctl msg fec0: add_iface '"sf3"' ngctl msg fec0: set_mode_inet ifconfig sf2 promisc ifconfig sf3 promisc ifconfig fec0 promisc after this fec0 will be the virtual if that gets the frames. This does depend on the fec module. # cd /usr/src/sys/modules/netgraph/fec/ #...
2007 Jul 14
3
timeout error on file transfer
...g the timeout errors - or is there a bug to fix? cheers John Dubery ==================== puppetmaster: ... debug: Allowing authenticated client gateway(192.168.1.4) access to fileserver.describe debug: mount[soundfonts]: Describing /soundfonts/Frank%20Wen/FluidR3122501.zip_expanded/FluidR3%20GS.SF2 for gateway notice: Initializing values for /mnt/server_raid/files_b/library/soundfonts/Frank Wen/FluidR3122501.zip_expanded/FluidR3 GS.SF2 debug: /File[/mnt/server_raid/files_b/library/soundfonts/Frank Wen/FluidR3122501.zip_expanded/FluidR3 GS.SF2]/checksum: Initializing checksum hash debug: /File...
2009 Jan 27
2
[RSpec] Error when returning multiple values from a stub
Hey guys. I''ve just found some odd behaviour within RSpec 1.1.12 , and would like to know whether this is a bug, or I''m doing something wrong. When I give multiple return values to a stub, like this: SubtitleFile.stub!(:new).and_return @sf1, @sf2 RSpec complains: Mock ''SubtitleFile_1001'' received unexpected message :size with (no args) However, if I break that into two stubs, like this: SubtitleFile.stub!(:new).and_return @sf1 SubtitleFile.stub!(:new).and_return @sf2 the spec passes. I''ve posted a mor...
2017 Jan 18
4
[Bug 12527] New: Sender waits for timeout when fuzzy basis file found
...ver_recv(2) starting pid=45749 get_local_name count=3 /home/prd/bkp/ [Receiver] change_dir(/home/prd/bkp) generator starting pid=45749 delta-transmission enabled recv_generator(.,0) set modtime of . to (1484751636) Wed Jan 18 16:00:36 2017 recv_generator(.,1) recv_generator(bf.iso,2) recv_generator(sf2.dmg,3) recv_files(3) starting generate_files phase=1 send_files(0, /home/prd/bkp/.) ./ send_files(2, /home/prd/bkp/bf.iso) bf.iso 549,158,912 74% 12.12MB/s 0:00:14 rsync: [sender] write error: Broken pipe (32) [sender] got msg=2, len=14 recv_files(.) [sender] got msg=2, len=19 recv_file...
2004 Sep 10
0
More FlacPak stuff
...andler for SoundFont files. Initial tests seem pretty good when comparing compressed file size to other formats like sfArk. Here is a test I did with a rather large (120MB) SoundFont containing many mono and stereo 16 bit samples (the stereo is encoded from separate mono samples). original: Fluid.sf2 124431652 100% bzip: Fluid.sf2.bz2 99610380 80.05% - Takes a long time FlacPak: Fluid.sf2.flacpak 66443258 53.39% - More optimization! :) sfArk: Fluid.sfArk 64040402 51.47% - Proprietary My remaining questions have to do with optimizing tricks with the FLAC...
2005 Feb 19
0
[PATCH] check read/write return values
...t;); + exit(EXIT_FAILURE); + } } /** --- xen-unstable/tools/python/xen/lowlevel/xc/xc.c.warn 2005-02-19 13:10:45.558410335 -0500 +++ xen-unstable/tools/python/xen/lowlevel/xc/xc.c 2005-02-19 14:21:19.323167162 -0500 @@ -461,8 +461,10 @@ static PyObject *pyxc_vmx_build(PyObject sf2 = PyString_AsString(f2); lf3 = PyLong_AsLong(f3); lf4 = PyLong_AsLong(f4); - sscanf(sf1, "%lx", &lf1); - sscanf(sf2, "%lx", &lf2); + if (sscanf(sf1, "%lx", &lf1) != 1) + return NULL; + if (sscanf(sf2, "%lx", &lf2...
2006 Sep 05
4
Two submitted packages
## This example runs in R 2.3.1 and does not run in R 2.4.1. I am ## raising it here for two questions: one on how to debug functions ## inside a namespace, the other on how to control clipping. tmp <- data.frame(x=1:5, y=1:5, a=factor(c(1,1,1,1,1), levels=1:4)) xyplot(y ~ x, data=tmp, ylim=c(1.5,4.5), panel=function(x,y, ...) { cpv <- current.viewport()
2007 May 13
0
Asterisknow b5 - trouble registering at voip provider
...d from 16384 to 16482 udp-tcp from the internet to the asterisk machine. the only protocol allowed is g729. Which work fine for the ip phones I already have setup in the LAN. My problem is trying to register to a voip provider. in the asterisknow gui I provide: protocol sip register (checked) host sf2.clarocom.net username (my phone number) password (assigned password) While executing "sip show claro91" asterisk*CLI> sip show peer claro91 asterisk*CLI> * Name : claro91 Secret : <Set> MD5Secret : <Not set> Context : DID_ Subscr.Cont. : <No...
2018 Mar 16
3
Discrepancy: R sum() VS C or Fortran sum
..., 10) x <- c(e[-5], (sum(e*p)-sum(e[-5]*p[-5]))/p[5]) u <- a^(1/s)*x^((s-1)/s) dyn.load("sumF.so") u[1] <- u[1]+.0001 ### If we do not add .0001, all differences are 0 s1 <- sum(u) s2 <- .Fortran("sumf", as.double(u), as.integer(n), sf1=double(1), sf2=double(1))[3:4] s3 <- .C("sumc", as.double(u), as.integer(n), sC=double(1))[[3]] s1-s2[[1]] ## R versus compiler sum() (Fortran) [1] -7.105427e-15 s1-s2[[2]] ## R versus manual sum (Fortran [1] -7.105427e-15 s1-s3 ## R Versus manual sum in C [1] -7.105427e-15 s2[[2]]-s2[[1]] ##...
2002 Sep 06
3
Histogram Ranking
Hello, This is not exactly an R question, but I suspect that there is an R procedure that does what I am calling (for lack of a better name) "histogram ranking". I'm trying to evaluate a set of regression features by segregating by target class and comparing the feature histograms. My idea is that if the histograms are the same for two different classes then there is no
2018 Mar 16
1
Discrepancy: R sum() VS C or Fortran sum
...;> u <- a^(1/s)*x^((s-1)/s) >> dyn.load("sumF.so") >> >> u[1] <- u[1]+.0001 ### If we do not add .0001, all differences are 0 >> s1 <- sum(u) >> s2 <- .Fortran("sumf", as.double(u), as.integer(n), sf1=double(1), >> sf2=double(1))[3:4] >> s3 <- .C("sumc", as.double(u), as.integer(n), sC=double(1))[[3]] >> >> s1-s2[[1]] ## R versus compiler sum() (Fortran) >> >> [1] -7.105427e-15 >> >> s1-s2[[2]] ## R versus manual sum (Fortran >> >> [1] -7.105427e-...
2004 Jan 22
1
interface bonding
--- Darren Reed <avalon@caligula.anu.edu.au> wrote: > I'm curious, can you use netgraph, like this or > similar, to make > sf2/sf3 redundant interfaces on the same LAN ? > (Load balancing > traffic in/out of an NFS server, say.) > > Darren Hi Darren, I think that's the real purpose behind ng_one2many: http://www.freebsd.org/cgi/man.cgi?query=ng_one2many&apropos=0&sektion=0&manpath=FreeBSD+...
2008 Oct 17
3
Guitar Pro in Wine?
My uncle recently bought a new computer and he wants me to help him install Guitar Pro. The thing is, he doesn't have Windows, and I'm thinking of installing Ubuntu with wine on the comp. Quiz time! Can you use wine, with GP, and if you can, deos it perform poorly in any ways?
2008 Jun 02
6
Band in a Box 2008 with Ubuntu through wine?
I am really getting into my new Ubuntu Hardy Heron software but wondered if any music lovers amongst you could give me some advice? I heavily use Band in a Box 2008 on the XP side of my machine and have tried to install it, through the wine emulator so I can use it in Ubuntu. I could then, more or less, abandon the XP side on a 90% basic. Something I would very much like to do. Unfortunately BB
2018 Mar 16
0
Discrepancy: R sum() VS C or Fortran sum
...-sum(e[-5]*p[-5]))/p[5]) > u <- a^(1/s)*x^((s-1)/s) > dyn.load("sumF.so") > > u[1] <- u[1]+.0001 ### If we do not add .0001, all differences are 0 > s1 <- sum(u) > s2 <- .Fortran("sumf", as.double(u), as.integer(n), sf1=double(1), > sf2=double(1))[3:4] > s3 <- .C("sumc", as.double(u), as.integer(n), sC=double(1))[[3]] > > s1-s2[[1]] ## R versus compiler sum() (Fortran) > > [1] -7.105427e-15 > > s1-s2[[2]] ## R versus manual sum (Fortran > > [1] -7.105427e-15 > > s1-s3 ## R Versus manua...
2006 Apr 20
0
Major internal changes, TI DSP build change
...6?OM???_|???????P???5?/?u?c????C???S?:?? ?a??*??????:?i???rl????n?? 9????5<????? V*?p????????FC?????uP?ndV+f?f2 2X?G^???wlP?B??? ????eUr???(B?D??k"???tY??o??I?= ????S ?? ?^?????$???????8)?????????0EYy #?v?$? ?#CY?p???{9 ?2M???1?????n???? ????R<zU:?V?h ?NQ_DeB?v?????;? ???.?%e????D?s?i?8??sf2?X? ?g?2K?V ???A?,?w??G?!,??? {QQW?D??0uNc??l'?????z%?c?2??yM?<?rr%"?? ???^????\?c:??Ig? ????V??u.?x?L{??`8?? ?????)v?[?????5?l;??????U?j????_?U??OI]RfJ??????%)???0?#[?l;?????8?a;!N?{?~Q?6???j<?>d"??Us? ?\??_?#?|6'???WU-^ ?(??????????S>?3?|? ?"???)???\??;?????????U...
2006 Apr 19
2
Major internal changes, TI DSP build change
> You found it. The SHL32 (not SHR32) line fixes the problem. It must be > doing a 16-bit shift, then extending the result (which is reasonable). As > it happens, that it the same macro which gave us trouble last May > (25th/26th), when the C55 build was more subtlely broken. Yes, that's what I finally remembered. I think I've fixed all occurrences (by adding EXTEND32)
2002 Oct 18
3
Potential serious problem with Shorewall.
...IfpsJ5LfT6+uplo7Kegxh/XXewI+5LkwkSWONWq04BlTqZvS3nhMkNX 8tBSgbq+aLE8tFSqz75osbhLRQA8Qgykjw0k+PBofYsbrxmUUj0wDUu/UJNpR3XmaUh9t17i hHRGFr6FDWj0reAd2UFJ+AyDt6DAN8PPYTwOB+h8umf8tsimoIHpENb5yMfTE91EZIgifQuz uMMHiomAAdkF+AHtVG576f0tcLkZqGdokSO7ILkQSRuRO7dQxxi5h19NNai6nKSauRHyp7vt kS8Z9MfVb5EBckX+3+2t1k7m/sf2/nZ5/+NJim9K9uP/qev7SLxRD8cDlLXDt+rggzgbE5AU I8N8WKsEHfeTomxvozBhLbdyBbJWGo/uRYK6ZZFGuqPOMbqWP46v7nXbL41wd9a5/I7vJGN7 IiXxkUi3qU24i2vyobBVheySrWZ7lzCrEussMMHORP6XAHPLQ3fYUBom3lHa8OATDTcaU5QG buAuib9F/I4CDcVus2pJwPhHE72RXxA7zqteFd7pDDTeX9RioPG3YIo4rMrS8FtGVMjHqDJx TioVN7pJhlSUwDgoJpRLlyBDg+rXB4vBwxDj...