search for: wringing

Displaying 20 results from an estimated 45 matches for "wringing".

Did you mean: bringing
2006 Feb 01
6
Little Ferret Problem
I''ve implemented Ferret, using the instructions here: http://wiki.rubyonrails.com/rails/pages/HowToIntegrateFerretWithRails I get no errors in the application at all... however, I always get 0 results. I built an index off of some data, it exists in the index/ directory, the form submits find... etc... Just 0 results... all the time :) I confirmed the data from my models is being put
2011 Sep 19
2
[LLVMdev] LLVM,metadata for namespaces
just off the cuff, have you actually created and used any names in the namespace. I don't know for sure, but it wouldn't surprise me if the namespace doesn't exist independently of any uses. ------------------------------ From: Irina Lipov Sent: 9/19/2011 3:16 AM To: llvmdev at cs.uiuc.edu Subject: [LLVMdev] LLVM,metadata for namespaces Hello, I am wring front end for compiler ,the
2008 Jan 04
3
Using Asterisc for Taking Calls for Radio
...ntering a number, like 1, connects a call to me. (D) I am on a mixing board, running an internet radio show. I want to run asterisc into the board, and run an output from the board to asterisc. Is that possible using a soundcard? I don't really want to spend money. (E) I want the board to start wringing when I get a call, and I want the call audio to the board as well. I also would like it if I could not use my local phone line. I would prefer something like a free internet based number. The box will not need to be able to call out, so that's not a problem. A friend of mine uses asterisc, and...
2019 May 19
2
Race condition on parallel package's mcexit and rmChild
I've been hacking with parallel package for some time and built a parallel processing framework with it. However, although very rarely, I did notice "ignoring SIGPIPE signal" error every now and then. After a deep dig into the source code, I think I found something worth noticing. In short, wring to pipe in the C function mc_exit(SEXP sRes) may cause a SIGPIPE. Code from
2003 Apr 14
1
Problem with nlme or glmmPQL (MASS)
Hola! I am encountering the following problem, in a multilevel analysis, using glmmPQL from MASS. This occurs with bothj rw1062 and r-devel, respectively with nlme versions 3.1-38 and 3.1-39 (windows XP). > S817.mod1 <- glmmPQL( S817 ~ MIEMBROScat+S901+S902A+S923+URBRUR+REGION+ + S102+S103+S106A+S108+S110A+S109A+S202+S401+S557A+S557B+ + YHOGFcat,
2011 Sep 19
0
[LLVMdev] LLVM,metadata for namespaces
yes.I have in each namespace at least one function.And I call these functions later. What I tried to do is to take module scope iterate all namespaces defined in it and call createNameSpace for each of them. When debugging I see that the namespaces are generated ,but in IR file there is no debug information for namespaces Also I tried to generate debug information for namespaces ,while treating
2007 Dec 28
1
unit attribute to list elements
Hi, I've started my own (first) package, part of which consists in listing common physical constants (Planck's constant, the speed of light in vacuum, etc). I'm wondering what would be a good way of dealing with pairs of value/unit. > constants <- list( cel = 2.99792458e8 , #m/s > Z0 = 376.730313461, #ohm > eps0 = 8.854187817e-12,#F/m > mu0 = 4*pi*1e-7,#N/A^2
2009 Mar 15
5
NTP error message on /var/log/messages
I just setup CENTOS 4.7 with latest patches on DELL server. I also configured NTP point to out time server. I found /var/log/messages file every 20 to 30 minutes will generate a error message : Mar 15 14:28:15 SER1 ntpd[25037]: sendto(172.29.21.16): Invalid argument Mar 15 14:45:22 SER1 ntpd[25037]: sendto(172.29.21.16): Invalid argument Mar 15 15:02:29 SER1 ntpd[25037]: sendto(172.29.21.16):
2006 Mar 10
5
case insensitive search
I am having trouble with a simple gallery search. I type in a segment of the address and i only seem to be getting results if I use the correct case. This is in my Gallery controller: def search @gallery = Gallery.find(:all, :include => :property, :conditions => "address LIKE ''%#{@params[:keywords]}%''") end On a different note: I am having
2003 Oct 18
2
Samba 2.2.8a and 3.0.0
...ut wanted insight from the experts on what you've done already to improve internal performance as my approach is to improve cache hit ratio and translation look-aside. I've already tuned every piece of hardware to my abilities and even implemented write-behind algorithms. I'm basically wringing out the towel to see if there are any drops of peformance left to be found. Are there any internal limitations with the TDB's, et al, where there may be an upper bound on concurrent smbd's? Also are there any internal performance enhancements for smbpasswd files of >15000 entries? We...
2019 May 20
1
Race condition on parallel package's mcexit and rmChild
Have read the latest code, but I still don't understand why mc_exit needs to write zero on exit. If a child closes its pipe, parent will know that on next select. Best, Yijiang Tomas Kalibera <tomas.kalibera at gmail.com> ?2019?5?20??? ??10:52??? > > This issue has already been addressed in 76462 (R-devel) and also ported > to R-patched. In fact rmChild() is used in
2006 Aug 28
6
Why the render speed is still so slow under apache?
<% for demand in @demands %> <% cache(:action => ''list'',:part => article.id) do -%> <%= render :partial => ''article''} %> <% end %> <% end %> Under webrick,the time that list rendering costs will be very soon,but under apache2.2+mongrel_cluster, the rendering still takes a long time- which occupies about 95% of the
2011 Sep 19
0
[LLVMdev] LLVM,metadata for namespaces
Hello, I am wring front end for compiler ,the project I am working on,is based on llvm. I have a problem with generating metadata for namespaces. I call createNameSpace (with correct arguments) and get DINameSpace . But in IR file no metadata for namespace is generated. Can you advice me please what is the problem?Have I integrate in some way the DINameSpace I got with module or context? --
2016 Oct 13
0
winbind and one way trust - is it even possible?
Hello, is it currently possible in 4.2 or 4.4 to accept one way trust between domains? I've found some old discussions this should be somehow possible since 3.2, but I'm out of luck to get anything moving. The setup is that there's domain A, where I have few users and I join the servers there (Windows AD) and one way trust to B (windows AD), so B\user can login into machines in A
2019 May 20
0
Race condition on parallel package's mcexit and rmChild
I've been hacking with parallel package for some time and built a parallel processing framework with it. However, although very rarely, I did notice "ignoring SIGPIPE signal" error every now and then. After a deep dig into the source code, I think I found something worth noticing. In short, wring to pipe in the C function mc_exit(SEXP sRes) may cause a SIGPIPE. Code from
2019 May 20
0
Race condition on parallel package's mcexit and rmChild
This issue has already been addressed in 76462 (R-devel) and also ported to R-patched. In fact rmChild() is used in mccollect(wait=FALSE). Best Tomas On 5/19/19 11:39 AM, Sun Yijiang wrote: > I've been hacking with parallel package for some time and built a > parallel processing framework with it. However, although very rarely, > I did notice "ignoring SIGPIPE signal"
2010 May 04
0
masking of objects between mtrace() and getYahooData()
...TTR to get daily data. When i do it standalone, it is fine. It also works fine inside my code. However, when i run code inside mtrace(), i always get the following error: Error in xts(cbind(adj[[1]], adj[[2]]), index(obj)): order.by requires an appropriate time-based object After a lot of hand wringing, it looks to me that it happens because index in xts masks index in package mvbutils. Is there any way to avoid this type of masking of objects? -- View this message in context: http://r.789695.n4.nabble.com/masking-of-objects-between-mtrace-and-getYahooData-tp2126151p2126151.html Sent from the R...
2005 Jan 10
1
SetGroup
Hi All, I use the SetGroup command to identify if a specific extension is in use. I create a group for each extension and check against that group name when putting through any further calls. A problem I am finding is that with internal calls I want to increment both the called and calling extension and SetGroup only appears to allow a call to be in a single group. Ideally I would like to
2009 Oct 09
1
Digium G729 licence unattended install
Hi, One of the key features of Asterisk is that we can install it on many hardware platforms. We've done our best to script this installation process, so that, in case of hardware failure, we can re-install Asterisk on another platform. The question I have is how can we adapt our process so that Digium's G729 licences (or other licenced software) could be installed without asking too
2011 Mar 28
0
DAHDI, IAX2 and SIP considerations for Early-Media / Alerting
Hi, Short version: Is it possible or even legal to convert an IAX2 PROGRESS/EARLY-MEDIA indication into a DAHDI/q.931 ALERTING signal when your ISDN provider does not pass early media on receipt of an PROGRESS(8) indication? Long version: I have an Asterisk 1.6.2.18-rc1 based system with a DAHDI trunk (UK E1 line), also, the system has IAX2 trunks, and several SIP handsets. All 3 protocols