search for: _a_

Displaying 20 results from an estimated 30 matches for "_a_".

Did you mean: _a
2015 Jan 17
1
dahdi_genconf fails with "Empty configuration - no spans"
...m/sites/digium/files/quad-span-digital-card-user-manual.pdf > > > > The error is "no spans". > > > > What is the output of: > > > > dahdi_span_assignment list > > # /usr/sbin/dahdi_span_assignments list > 1:-:- [1TE435F_-_DM06134700043_-_A_-_20131202] @PCI_Bus_10_Slot_01 /sys/devices/pci0000:00/0000:00:1c.0/0000:0a:00.0/pci:0000:0a:00.0 > 2:-:- [1TE435F_-_DM06134700043_-_A_-_20131202] @PCI_Bus_10_Slot_01 /sys/devices/pci0000:00/0000:00:1c.0/0000:0a:00.0/pci:0000:0a:00.0 > 3:-:- [1TE435F_-_DM06134700043_-_A_-_20131202] @PCI...
2015 Jan 17
2
dahdi_genconf fails with "Empty configuration - no spans"
On Thu, Jan 15, 2015 at 12:58:26PM -0600, Russ Meyerriecks wrote: > On Thu, Jan 15, 2015 at 2:05 AM, Bertrand LUPART - Linkeo.com > <bertrand.lupart at linkeo.com> wrote: > > However, dahdi_genconf keeps finding no span: > > What am i missing? > > It looks like your driver is loaded correctly. My guess would be maybe > the dahdi-tools is packaged as an older
2008 Jul 10
2
Lattice: merged strips?
Hi all, By default a call to xyplot from the Lattice package when using 2 factors [eg xyplot( dv~iv | XY * AB ) ] yields the following shingle structure: |_A_|_A_|_B_|_B_| |_X_|_Y_|_X_|_Y_| However, I'm wondering if it is possible to merge the upper shingle within levels of that factor, as in: |___A___|___B___| |_X_|_Y_|_X_|_Y_| Mike -- Mike Lawrence Graduate Student, Department of Psychology, Dalhousie University www.memetic.ca "The roa...
2010 Dec 07
1
Dataframe from list of similar lists: not _a_ way, but _the best_ way
Hi All. I often find myself in this situation: . Based on some vector (or list) of values, I need to calculate a few new values for each of them, where some of the new values are numbers, but some are more of descriptive nature (so: character strings) . So I use e.g. sapply, passing a custom function that returns a list with all the calculated values . The result of
2015 Jan 17
0
dahdi_genconf fails with "Empty configuration - no spans"
...rd's manual >> http://www.digium.com/sites/digium/files/quad-span-digital-card-user-manual.pdf > > The error is "no spans". > > What is the output of: > > dahdi_span_assignment list # /usr/sbin/dahdi_span_assignments list 1:-:- [1TE435F_-_DM06134700043_-_A_-_20131202] @PCI_Bus_10_Slot_01 /sys/devices/pci0000:00/0000:00:1c.0/0000:0a:00.0/pci:0000:0a:00.0 2:-:- [1TE435F_-_DM06134700043_-_A_-_20131202] @PCI_Bus_10_Slot_01 /sys/devices/pci0000:00/0000:00:1c.0/0000:0a:00.0/pci:0000:0a:00.0 3:-:- [1TE435F_-_DM06134700043_-_A_-_20131202] @PCI_Bus_10_Sl...
2007 May 15
4
Need help with singleton worker
...# probably shouldn''t call self.delete here, as we reuse the worker..? end end MyWorker.register script/console: >> MiddleMan.schedule_worker(:class => :my_worker, :job_key => :foo, :worker_method => :do_work, :worker_method_args => "a", :args => "_a_", :trigger_args => { :start => Time.now }) => 0 >> MiddleMan.schedule_worker(:class => :my_worker, :job_key => :foo, :worker_method => :do_work, :worker_method_args => "b", :args => "_b_", :trigger_args => { :start => Time.now }) => 1...
2011 Nov 15
2
How can rpm "%{SUMMARY}" not be consistent?
I have been seeing something for quite some time which has confused me considerably for over a year, perhaps one of you can help me understand. Assumed: rpm queries are against _a_ database. Assumed: database queries against the same database, without changes to the data in the database, will return the same data. Confusion: then why are some of the summaries reported by rpm different? Each day I (cron.daily) run the following command rpm -qa \ --qf '"%{VENDOR...
2002 Oct 30
1
Samba <-> LDAP auth
...or user 'mdorofeev'! [2002/10/22 14:42:21, 1] smbd/reply.c:reply_sesssetup_and_X(998) Rejecting user 'mdorofeev': authentication failed ---------------------------------------------------------------------------------------------------------------------- The QUESTION IS : IS THERE _A_ WAY TO USE userPassword attr for Samba authentication ?? OR SYNC userPassword and ntPassword? What i did is i ran smbpasswd, looked at the password file, copied the string containing the encrypted password and inserted this value into the directory->ntPassword filed. However it didnt match :(...
2008 Mar 19
5
windows privileges
I am new to using Wine, so perhaps this question has been answered many times before, but how do I choose what windows privileges I want to run a program with? I know that I should not run Wine with sudo, but how do I tell Wine that I want/don't want *windows* administrator privileges? Or is it always assumed that the user is an administrator? Thanks
2001 Apr 15
2
data manipulation in R
...y observe one or more events, and each event j may have been observed by one or more observers. Thus the data are a lower-triangular array AxB where each cell [i,j] has a zero or one indicating whether observer i saw event j. I am interested in how observers cluster in circuits whereby observer _a_ sees events _1,2,3_, observer _b_ sees events _2,4,5_, observer _c_ sees event _4_, and observer _d_ sees _4,6,7_. Observers a, b, c, d comprise a circuit linked by the events they jointly observed. Given AxB, how can we use R to articulate the circuits? Pseudocode for my SQL solution is below...
2002 Jul 01
1
Substitutions in strings.
...sak sal skal sl_r sn_r [109] spik sp_r st_r s_ s_r gal kal n_r sak kal pak p_r . . . What I whant to do is to substitute all the '_'s in the vector whith some other character. Trying it out, this works. >gsub("_","A",c("_","_a_")) [1] "A" "AaA" However, this does not.. >gsub("_","A",token) Error in gsub(pattern, replacement, x, ignore.case, extended) : invalid argument Can't see why. Please help me out.. /Fredrik -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-....
2019 Jan 30
3
Is sshd supposed to interpret "{a,b}" brace expansions?
Hi, the proposed fix for CVE-2019-6111 [1] adds file name validation to scp to prevent the server from sending files that the client actually did not request. Now, a consequence of that patch is that commands which contain server-side brace expansions such as $ scp remote:'/etc/{passwd,group}' . error: unexpected filename: passwd no longer work. Shell globs such as [abc], ?, *,
2019 Mar 14
0
regarding ssl certificates
...s where wildcard certificates are of use. The alternative to paid signed certificates is using letsencrypt https://letsencrypt.org - they can do both individual certificates and wildcard certificates. There are pro's and con's for both paid and free signed certificates, but you should use _a_ signed certificate for any TLS based service that communicates with anything in the wild (i.e. non-internal services, public mail servers, public web servers). Personally I use letsencrypt wildcards with domain based authentication for automatic certificate renewal (although distributing the certif...
2003 Oct 16
1
plot discrimnant analysis
Hello, Does anyone knows how to do the plots from discriminant analysis (lda and qda)? Is there any computed function to do the stepwise procedure? thank you in advance Marta
2006 Oct 09
2
Add ellipse to plot
Is there a way to plot elliptical shapes? symbols() only provides circles... Thanks! Kamila
2009 Oct 22
0
dgTMatrix --- [, , drop=F] strange behavior, Matrix 0.999375-20
...Dim [1] 793251 1027355 > nnzero(mm) [1] 205746204 > class(mm) [1] "dgTMatrix" attr(,"package") [1] "Matrix" Imagine I want just the first row: > a = mm[1,,drop=F] > length(a) [1] 1027355 > nnzero(a) [1] 1291 >class(a) "numeric" However, _a_ is just a numeric (dense) vector (!). This takes a long time and a big bite off my memory. This is NOT what I get when I play with a toy example. In this case it works as expected: > (m <- Matrix(c(0,0,2:0), 3,5)) 3 x 5 sparse Matrix of class "dgCMatrix" [1,] . 1 . . 2 [2,] . . 2...
2007 Apr 04
1
command to see if a process is being spread among multiple cpus
What command can I use to check if a specific process is being spreaded among multiple cpus? -- ------------------------------------------------------------ Erick Perez ------------------------------------------------------------ -------------- next part -------------- An HTML attachment was scrubbed... URL:
2018 Dec 07
0
Re: [nbdkit PATCH] build: Allow 'make install' into non-root --prefix: bash-completion
...at './configure --prefix=$HOME/subdir' still uses an absolute > path pointing to a root-owned directory (rather than one relative > to our desired ${prefix}) in our definition of bashcompsdir. > > The solution? Tell pkg-config to NOT flatten the prefix variable. Well, it's _a_ solution. Another one would be to NOT ask pkg-config ANYTHING, and just _always_ default to installing into ${sysconfdir}, since the patch already shows that to be our default if pkg-config is not around: > AS_IF([test -z "$bashcompdir"], [ > bashcompdir="$...
2010 May 21
0
a matter of etiquette/Fw: dmvsnorm & mvst in fMultivar
...on parameter, but _not_ the mean, as the documentation wrongly indicates. In fact in the skew-t case the mean may even not exist. Similarly, Omega is described as "the covariance matrix", which suggests that this is the covariance matrix of the distribution, but it is not true. Omega is _a_ covariance matrix, which is related to the covariance matrix (when this one exists) but it is different. For the parametrization based on mean and variance, see later. In addition, in the code of dmvsnorm, for the one-dimensional case there is the assignment ans = dsn(x, location = xi[1], scale...
2010 Jul 07
1
problems with write.table, involving loops & paste statement
Hi! I want to write portions of my data (3573 columns at a time) to twenty folders I have available titled "A_1" to "A_20" such that the first 3573 columns will go to folder A_1, next 3573 to folder A_2 and so on. This code below ensures that the data is written into all 20 folders, but only the last iteration of the loop (last 3573 columns) is being written into ALL of the