search for: process1

Displaying 8 results from an estimated 8 matches for "process1".

Did you mean: process
2010 Mar 11
1
Failed to init inotify
Hi, I'm going through my messages log and I've noticed a large amount of the following error going on. What affect would this have on the smb client that is connected to those pid's? Mar 11 11:35:24 process1 smbd[25349]: [2010/03/11 11:35:24, 0] smbd/notify_inotify.c:293(inotify_setup) Mar 11 11:35:24 process1 smbd[25349]: Failed to init inotify - Too many open files Mar 11 11:35:24 process1 smbd[25349]: [2010/03/11 11:35:24, 0] smbd/notify_inotify.c:293(inotify_setup) Mar 11 11:35:24 process1 s...
2008 May 13
1
Compare columns
Dear R-users, I have the following 2 files; A V1 V2 A 1 A 2 A 3 A 4 B 1 B 4 C 1 C 3 D 4 B V1 V2 process1 1 process2 2 process3 3 process4 4 I want to get this output C V1 V2 V3 A 1 process1 A 2 process2 A 3 process3 A 4 process4 B 1 process1 B 4 process4 C 1 process1 C 3 process3 D...
2009 Dec 29
2
pass functions and arguments to function
Hi, I wonder how to pass several functions and their arguments as arguments to a function. For example, the main function is f = function(X ) { process1(X) ... process2(X) } I have a few functions that operate on X, e.g. g1(X, par1), g2(X, par2), g3(X, par3). par1, par2 and par3 are parameters and of different types. I would like to pass g1, g2, g3 and their arguments to f and g1, g2, g3 may appear to be in different orders. So that final...
2010 Feb 11
0
Intermittent Samba Problem
...aving a strange problem where users get permission denied on folder in public shares. On the windows xp machine you can see the folder when browsing the smb share except that it has no attribute information. If I double click on the folder it says Access is Denied. On the samba server "process1" I can list the directory and also the contents of the folder and it appears that the files system is working correctly. [asx at process1 ad_build]$ ls -la drwxrwxrwx 3 asx asx 4096 Feb 11 09:19 2953730af drwxrwxrwx 2 asx asx 4096 Feb 11 09:43 2967365ala drwxrwxrwx 3 asx asx 4096 Feb...
2012 Feb 15
2
[newbie] separating plot output from debug output
...F, but I understand this is not feasible, no? 2 Create a buncha PDFs with code above, download them to my laptop, merge them to a single PDF, upload it. Feasible but annoying and kludgey. 3 Separate processing from plotting, e.g., setup # but not pdf(...) for each part of input { write(process1(part), intermediate) } pdf(...) for each part of intermediate { plot(process2(part)) } cleanup # does dev.off() Again, feasible but kludgey. 4 No status and debug messages. I hope to be that good someday :-) Am I missing something? Are there clean solutions to this problem? TIA, Tom Roche...
2014 Dec 09
1
[RFC PATCH v2] armv7: celt_pitch_xcorr: Introduce ARM neon intrinsics
...st float *y, > + float *sum, int len) { I had to think quite a bit about what "3to1" meant (since it is describing the context of the caller, not what the actual function does). I'd follow the naming convention in the existing celt_pitch_xcorr_arm.s, and use "process1", personally. > + int i; > + float32x4_t XX[4]; > + float32x4_t YY[4]; > + float32x4_t SUMM; > + float32x2_t ZERO; > + float32x2x2_t tv; > + float sumi; > + float *xi = x; > + float *yi = y; > + > + ZERO = vdup_n_f32(0); > + SUMM = vdu...
2006 Jan 30
5
Multiple ajax calls
This is slightly OT for which I apologise in advance, but I was wondering if anyone here has had any problems when making multiple ajax calls at the same time. I''m working on a large Intranet application which makes heavy use of ajax calls and the bugs are flying in from the testers that if they repeatedly click on a link that makes an ajax call then Internet Explorer can fall
2014 Dec 07
2
[RFC PATCH v2] cover: armv7: celt_pitch_xcorr: Introduce ARM neon intrinsics
Hi, Optimizes celt_pitch_xcorr for floating point. Changes from RFCv1: - Rebased on top of commit aad281878: Fix celt_pitch_xcorr_c signature. which got rid of ugly code around CELT_PITCH_XCORR_IMPL passing of "arch" parameter. - Unified with --enable-intrinsics used by x86 - Modified algorithm to be more in-line with algorithm in celt_pitch_xcorr_arm.s Viswanath Puttagunta