search for: reard

Displaying 6 results from an estimated 6 matches for "reard".

Did you mean: read
2016 Sep 05
2
Extending the AD schema
Hi Andrew, Thanks for the info. A backup before hand was always on the to do list. ;) Any idea when we can expect 4.5? It's looking like this "urgent" project can be delayed a bit if necessary. regards, John On 05/09/16 17:55, Andrew Bartlett via samba wrote: > On Mon, 2016-09-05 at 10:23 +1000, John Gardeniers via samba wrote: >> We're looking at implementing
2018 Feb 16
1
.glusterfs grown larger than volume content
Hello All, I posting this email rearding the gluster issue in http://lists.gluster.org/pipermail/gluster-users/2016-April/026493.html i searched this everywhere but still having no answer . we getting a big problem with the out of space now. Kindly help me. Rasika -------------- next part -------------- An HTML attachment was scrubb...
2007 Nov 17
3
R and reading matlab compressed files
Is there any way to read these files (standard .mat files, created by matlab version 7 onwards are compressed)? I know that R.matlab doesn't read them (it even says in the file MatlabServer.m "Matlab v7 saves compressed files, which is not recognized by R.matlab's readMat()" (lines 47-8)). I know I should be able to make R call Matlab and transfer data (not that I managed to
2012 Oct 08
11
Puppet 3.0 upgrade issue
...86_64 rubygem-passenger-native-3.0.12-1.el6.x86_64 $ rpm -qa | grep puppet puppet-3.0.0-1.el6.noarch puppetlabs-release-6-6.noarch puppet-server-3.0.0-1.el6.noarch $ rpm -qa | grep http httpd-tools-2.2.15-15.sl6.1.x86_64 httpd-2.2.15-15.sl6.1.x86_64 httpd-devel-2.2.15-15.sl6.1.x86_64 $ Any hints? Reards, Thomas -- Linux ... enjoy the ride! -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com. To unsubscribe from this group, send email to puppet-users+unsubscribe@googlegrou...
2016 Dec 29
2
Formulating Advanced Queries with Xapian-Omega
...hat other types of extended wild card(s) options are there ? or is this still currently limited to these two characters '*?' ? b. Apart from 0 or more and single char options are there any other options ? either via Omega, formulating an appropriate query for CGI or via Xapian. Rearding the question in relation to Text Patterns The reference to ISBNs was of course merely a simple example, but it could be any other typical pattern of letters, numbers and separator characters. Were you suggesting that one possibility would be trying something similar to : isbn:?-???-?????-...
2004 Jun 23
5
assigning from multiple return values
I know that if I have a function that returns multiple values, I should do return(list(foo, bar)). But what do I do on the recieving end? fn <- function(x) { return(list(foo, bar)) } I know that at this point I could say values.list <- fn(x) and then access values.list[1] values.list[2] But that's hideous. I'd rather be able to say something like list(local_foo, local_bar)