similar to: FW: Dropping clients between songs

Displaying 20 results from an estimated 300 matches similar to: "FW: Dropping clients between songs"

2002 Jan 25
1
access denied error with rsync 2.5.1
Hi. I have several Linux machines running the Debian unstable distribution. Until recently I used rsync version 2.4.6 without any problems, but after upgrading to version 2.5.1 (using apt-get) rsync fails. The command that produces the error is run on oldmill (128.135.72.4): rsync -av --password-file=/etc/rsyncd.pw armada::rsync /backup/armada/home/ And the error is: @ERROR: access denied to
2014 Oct 24
3
[Bug 982] New: vfork() in xtables.c can corrupt stack
https://bugzilla.netfilter.org/show_bug.cgi?id=982 Bug ID: 982 Summary: vfork() in xtables.c can corrupt stack Product: iptables Version: 1.4.x Hardware: x86_64 OS: other Status: NEW Severity: normal Priority: P5 Component: iptables-restore Assignee: netfilter-buglog at
2019 Sep 09
7
multiple instances? Updated
Hello, Thomas_B._Rücker, ======= At 2019-09-09, 08:36:43 you wrote: ======= > >I am not familiar with a file called "icecast_run.xml". >Could this be a local modification to your installation? > >You should be able to check which one is used by opening the >"icecast.bat" file that you are using to start the server. aha!! You nailed it! I have no idea why
2019 Feb 26
1
Compile R to WebAssembly / Emscripten?
As I recall, the major blocker is that R links against a number of other things (notably BLAS, pcre, etc) so while technically possible (?) I suppose, the universe of things you'd have to compile over and then get working is much larger than just the R internals. I think most people who consider this (including me years ago, as well as the poster of Gabor's message to rdevel) hit that
2007 Jul 24
1
crimtab related question
Dear all, the dataset documented under ?crimtab was also used in: @article{TreloarAE1934, title = {The adequacy of "{S}tudent's" criterion of deviations in small sample means}, author = {Treloar, A.E. and Wilder, M.A.}, journal = {The Annals of Mathematical Statistics}, volume = {5}, pages = {324-341}, year = {1934} } The following is
2019 Feb 20
2
Compile R to WebAssembly / Emscripten?
Has anyone attempted to compile R (probably without any OS bindings) to WebAssembly / Emscripten? If so, how far did you get? (would be crazy awesome if you could get all the way to a ggplot bitmap output). If not, is this a waste of time or is there some daylight to doing this? [[alternative HTML version deleted]]
2001 Apr 12
1
smbfs not showing all files
I've a PC with a 2.2.13 kernel and Samba 2.0.7. It serves shares to our lan and has had no problems since its install. Recently, I tried to copy a bunch of files from an older OS/2 server to the Samba server via smbclient and smbmount. Neither shows all the files in a few of the several directories on the OS/2 server, and neither agrees with the other as to the actual number of files.
2019 Sep 10
7
multiple instances? Updated
Hello, Thomas_B._Rücker, Initially I was asking for a working example file with more than one stream instance. Something that I can take as an example to work from. I've not gotten that yet, despite posting 2 config files; both that came with the install package. Trust me, if there were other choices for streaming servers than just icecast and shoutcast; I'd be running there to see if
2010 Jan 29
5
random permuted block randomization
Hi, I am very new to R. Just started yesterday. I have to generate a sequence of 40 random treatments using permuted block randomization with a block size of 8. Then I have to plot moving averages for the resulting sequence. I have tried the sample function but I dont know if wht i did is right or not > sample(c(1,1,1,1,2,2,2,2),8) Any ideas please? -- Ayesha Khan MS Bioinformatics Dept. of
2006 Oct 26
6
SIP v IAX2
Lets talk about SIP and IAX2 1. The good and bad of both 2. What is the better one and why 3. and any other information that maybe use full -- Best regards, Al Bochter Bochter Services (Voip PBX) Toll Free: 866-638-1254 EXT: 250 (Voip PBX) Free World DialUp: 780217 EXT: 250 (Voip) Cellular: 712-432-5401 http://www.BochterServices.com/?t=Email BUY and sell Coins, Silver and Gold
2018 Jan 22
2
always allow canonicalizing to 8- and 16-bit ops?
Thanks for the perf testing. I assume that DAG legalization is equipped to handle these cases fairly well, or someone would've complained by now... FWIW (and at least some of this can be blamed on me), instcombine already does the narrowing transforms without checking shouldChangeType() for binops like and/or/xor/udiv. The justification was that narrower ops are always better for
2018 Jan 22
0
always allow canonicalizing to 8- and 16-bit ops?
Hello Thanks for looking into this. I can't be very confident what the knock on result of a change like that would be, especially on architectures that are not Arm. What I can do though, is run some benchmarks and look at that results. Using this patch: --- a/lib/Transforms/InstCombine/InstructionCombining.cpp +++ b/lib/Transforms/InstCombine/InstructionCombining.cpp @@ -150,6 +150,9 @@
2002 Jun 24
1
2.2.5 "--with-lockdir" problem?
I have executed ./configure --with-lockdir=/var/lock/samba and get a proper Makefile with LOCKDIR = /var/lock/samba The trouble is strings ./usr/sbin/smbd | grep /var/lock reports /var/lock not the expected /var/lock/samba! There are no entries for "lock dir" or "lock directory" in smb.conf, and true to fashion testparm -s | grep "lock dir"
2019 Sep 09
6
multiple instances?
wilderzone.radio.2: > Hello, unosonic, > > Okay, we'll do it this way as it appears to be the only sane way... > THIS is the xml config file that I've been using for ONE STREAM ONLY. but it's not the config file you're using actually at your site. can't find any mountpoint called /rock ... there must be another one...
2007 Mar 04
1
Change user IDs on Samba PDC
Hi, I've got a Samba 3.0.24 Debian server which I'm currently moving to a new hardware. It uses tdbsam as password backend. So, while looking at configuration files, I was thinking: is there a way I could change the Unix UIDs for some users, without breaking anything? The problem is that, since migrating from a different Linux distribution a long time ago, I still have some UIDs and
2018 Jan 17
3
always allow canonicalizing to 8- and 16-bit ops?
Example: define i8 @narrow_add(i8 %x, i8 %y) { %x32 = zext i8 %x to i32 %y32 = zext i8 %y to i32 %add = add nsw i32 %x32, %y32 %tr = trunc i32 %add to i8 ret i8 %tr } With no data-layout or with an x86 target where 8-bit integer is in the data-layout, we reduce to: $ ./opt -instcombine narrowadd.ll -S define i8 @narrow_add(i8 %x, i8 %y) { %add = add i8 %x, %y ret i8 %add } But on
2010 Feb 22
2
Siegel-Tukey test for equal variability (code)
Hi, I recently ran into the problem that I needed a Siegel-Tukey test for equal variability based on ranks. Maybe there is a package that has it implemented, but I could not find it. So I programmed an R function to do it. The Siegel-Tukey test requires to recode the ranks so that they express variability rather than ascending order. This is essentially what the code further below does. After the
2017 Oct 13
3
/var/run/... being deleted :((
On Wed, 11 Oct 2017, Lamar Owen wrote: > If the maintainers of packages that want to run well on CentOS 7 need to have > /var/run/$some-file persistence (or pseudo-persistence, which is the current > behavior enabled by re-creating said files) then those maintainers will need > to change their packages to match actual behavior or file a bug report with > upstream to change the
2013 Jun 05
0
[LLVMdev] Enabling the vectorizer for -Os
On 5 June 2013 11:59, David Tweed <david.tweed at arm.com> wrote: > (I've very rarely had O3 optimzation, rather than some program specific > subset of the options, acheive any non-noise-level speed-up over O2 with > gcc/g++.) > Hi David, You surely remember this: http://plasma.cs.umass.edu/emery/stabilizer "We find that, while -O2 has a significant impact relative
2007 Mar 19
5
Dovecot 'suicide'
I have a Dovecot installation on a Fedora 4. With the last update from Dovecot RC10 to Dovecot RC27, the daemon kills itself every night with this error: Mar 17 05:23:11 mail dovecot: Time just moved backwards by 6 seconds. This might cause a lot of problems, so I'll just kill m yself now. The error appears just after the night maintenance script executes a ntpdate syncronization ntpdate