search for: seaches

Displaying 20 results from an estimated 78 matches for "seaches".

Did you mean: reaches
2006 Jun 30
3
How do I seach for this in the api ?
<% for product in @products %> <%= h(product.description) %> It is simple code I see, but it has no umm classes I think <% for product <-- that can be fish in @products <-- this is the table I know %> <%= h(product <-- so this can be fish as well .description<-- this is the object to show the table field) %> But what would <% for()
2008 Feb 23
3
exprs function download
Hi, I am supposed to use exprs as a function. Where can i download exprs function? I tried searching at bioconductor and seach engine but no luck. Is it located in one of the library in R? thanks. C -- View this message in context: http://www.nabble.com/exprs-function-download-tp15654560p15654560.html Sent from the R help mailing list archive at Nabble.com.
2007 Mar 22
3
Noice words...
Hi I use acts_as_ferret on an app that is in Danish and English. In Danish english words like "and" and "under" has meaning. Is it possible to make ferret search for these words? As it is now a seach for "under" returns nothing even-though I know the word is present in the index. Cheers Mattias
2004 May 25
4
79XX converting
I have a done google seaches on convertion and so far they all failed. Rich adamson and wheely-bin.co.uk Here is what I have Laptop running solarwinds tftp with the following files OS79XX.txt <- POS30201 SIP<phonemac>.cnf.xml RINGLIST.DAT <-Ringer1.pcm Ringer1.pcm The phone (7940) is hardcoded to the TFTP...
2006 Mar 01
2
Problem with paginate search
Hi, Firts all sorry for my poor english I am doing a simple search with paginate, the problem is the search dont find the words within acutes (example "dont find sal?n if i search salon"). Its the code for the seach: def search words = @params[''search''].to_s.split('' '') array_conditions = [] for w in words array_conditions =
2006 Oct 17
2
Question about managing searching path
Hi all, I'm having sometrouble with managing the seach path, in a function , I need to attach some data set at the begining and detach them at the end, say, myfunction<- function() { attach(mylist); ............. detach(mylist) } , the problem is, since I am still debugging this code, sometimes it got error and ended before reaching the end, thus the data is left in the
2008 Nov 03
2
Multiple connections
Hi, I'd like to establish multiple direct connections between 2 hosts. As far as I can see, tinc doesn't allow this (when a new connection come, the old one is closed). Is seach features maybe integrated to tinc ? What is the status of 2.0 svn branch ? Thx. Manuel
2004 Sep 13
2
calculating memory usage
I am comparing two different algorithms in terms of speed and memory usage. I can calculate the processing time with proc.time() as follows but am not sure how to calculate the memory usage. ptm <- proc.time() x <- rnorm(1000000) proc.time() - ptm I would like to be within R itself since I will test the algorithm several hundred times and in batch mode. So manually looking up
2013 Aug 25
2
Backend for Lucene format indexes-How to get doclength
On Tue, Aug 20, 2013 at 07:28:42PM +0800, jiangwen jiang wrote: > I think norm(t, d) in Lucene can used to caculate the number which is > similar to doc length(see norm(t,d) in > http://lucene.apache.org/core/3_5_0/api/all/org/apache/lucene/search/Similarity.html#formula_norm). It sounds similar (especially if document and field boosts aren't in use), though some places may rely on
2018 Jul 09
2
How about giving commit ID in release notes
Hello developers, Your release notes from libvirt(https://libvirt.org/news.html) are really helpful to our users and QAs. How about giving commit ID of each item in release notes, so that our user can gather more info from release notes. For example,in v4.5.0 release note, add commit ID on each item: capabilities: Provide info about host IOMMU support Capabilities XML now provide information about
2006 Aug 11
1
Encoding
Hello, i seach a plugin like Zend Encoder for rails. Do u know one ? Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060811/26d4a546/attachment.html
2005 Jan 24
3
OT: Libnewt sourcecode?
Hi, I'm trying to compile zttool from the Zaptel lib, but I just can't find the sorcecode for Libnewt. Anyone got a link? Since i'm using LFS, I can't use precompiled packages. -- Med venlig hilsen / Best regards Michael L?jtnant - Systems Engineer ZyXEL Communications A/S Columbusvej 5 - 2860 S?borg Tel (+45) 3955 0700 - Fax (+45) 3955 0707
2003 Oct 13
1
no user management tool
hi, AFAIK there is not any usable user management tool for samba 3 with ldap (except the command line and ldif import). I seach for any useable stuff. the alternatives are directory admin (but this requires linux and X) currently not support samba 3 ldap schema and it seems to won't be in the near future (although Andrew Bartlett would like to help, but it seems nothing happend). the
2008 Jan 21
0
Help with pagintate
I have this code in Repair_Tickets_controller: @repair_tickets = RepairTicket.paginate :per_page => 10, :page => params[:page], :conditions => [''ID like ?'', "%#{params[:search]}%"], :order => ''id DESC'' And this code in Incidences controller:
2004 Jan 23
2
3.0.2rc1, LDAP, Solaris 9 and secondary group problem - Bug 395?
Hi, we have tested Samba 3.0.0 and 3.0.1 with LDAP-Support (--with-ldap) on Solaris 8 and it worked fine. The machine authenticates against an OpenLDAP server. Patch 108993-23 is applied and we use native Sun LDAP client modules. On Solaris 9 we ran into problems with secondary groups. Users cannot access files if the rights are based on a secondary group and if this information is stored on
2007 Jan 30
2
R packages
Hi, Do any body know which packages of R I need to go for the below topics? 1. Monte Carlo Markov chain (MCMC) 2. Gibbs Sampling 3. Metropolis Hastings Thanks in advance... Shubha [[alternative HTML version deleted]]
2015 Nov 06
4
Puzzled by eval
I am currently puzzled by a seach path behavior. I have a library of a dozen routines getlabs(), getssn(), getecg(), ... that interface to local repositories and pull back patient information. All have a the first 6 arguments in common, and immediately call a second routine to do initial processing of these 6. The functions "joe" and "fred" below capture the relevant
2009 Jul 17
6
Solving two nonlinear equations with two knowns
Dear R users, I have two nonlinear equations, f1(x1,x2)=0 and f2(x1,x2)=0. I try to use optim command by minimize f1^2+f2^2 to find x1 and x2. I found the optimal solution changes when I change initial values. How to solve this? BTW, I also try to use grid searching. But I have no information on ranges of x1 and x2, respectively. Any suggestion to solve this question? Thanks, Kate
2006 Jul 28
1
PXElinux and Windows RIS
I was trying to use my windows RIS server to deploy linux so as to require user authentication. After seaching the internet I found that it was possible but not very well explained after alot of tinkering I eventually got it to work. Here is my documentation so hopefully others can do it in less time than I, feel free to comment and improve.. ************************ On RIS Server Create
2007 Jan 18
4
problems testing a rails controller
I''m trying to test a rails controller, but my mock isn''t working. Everything looks right to me. Can someone take a look at it and see if I''m missing something obvious http://pastie.caboo.se/33883 Domain.should_receive(:find_domain).once.and_return(domain) That line in the spec is failing but I don''t see why. If I comment out that line the test passes so it is