similar to: Problems with Socket#write and all that depend on it

Displaying 20 results from an estimated 10000 matches similar to: "Problems with Socket#write and all that depend on it"

2006 Mar 18
1
Fixtures and single table inheritance
I''m wondering what the accepted method for doing unit tests on STI models is. I tried to create a fixture for the class but Rails tries to load that data into the non-existent child table. I could create a fixture named for the real, parent table, but then it would be very difficult to test for the individual functionality and integrity of each sub-class. I saw this page
2006 Mar 05
4
Help implementing a 43things-like ''activity'' measurement
I''m trying to implement something in my app akin to 43things'' main page, where more active topics are bigger than the less active topics. The difference in my app is that I''m building a business-oriented app and want to have a list of clients, where clients with recent activity are larger than others. My perhaps too-clever way of going about this is by feeding each job
2016 Feb 17
2
Asterisk 13.6.0/The simplest TCP configuration does not work
On Wed, Feb 17, 2016 at 12:13 PM, Sonny Rajagopalan < sonny.rajagopalan at gmail.com> wrote: > Wow. Incredible. That worked. The backslash is important there; I kept > trying with no backslash and followed the instructions in > pjsip_wizard.conf.sample (in configs/samples) and it says we have to say > > transport=tcp ; the only example however talks about ipv4. > > Is
2006 Apr 09
1
RadRails question
I do apologize for asking this question here, but it seemed like the appropriate place: I keep trying to move from jEdit to RadRails for my ruby/rails development but there are a few things holding me back. I''m wondering if anybody could tell me whether these features are truly missing, or if I''m just missing how to make them work. Firstly, it doesn''t truly auto
2008 May 31
0
KPSS test - Lag selection
Hello everyone! Quite a similar question has been posed here some time ago, but there was no explicit solution offered. So I hope that it is OK to pose it again. I want to perform a KPSS test using the packages "urca" or "tseries". But I neither want to use the predefined lag structures, "short" and "long", nor specify the number of lags arbitrarily by
2011 Jul 20
1
"xm dmesg" shows SVM but not /proc/cpuinfo
Ah, thank you for pointing that out. I forgot to include a subject, my bad. On Thu, Jul 21, 2011 at 12:46 AM, Larry Ing <larry@lwi3.net> wrote: > Earlier I posed this question: > > "My Dom0 kernel is having issues detecting the SVM capabilities of my > CPU. Non-Xen kernels are able to see the capability just fine and I > can''t figure out why the Dom0 cannot. I
2015 Apr 17
0
Cannot join Ubuntu12.04 Samba 4.1.17 to domain
Greetings, ivenhov! > I don't have krb5.conf at hand at the moment but I've checked it multiple > times and I think is OK since I can get ticket via kinit. Words are cheap. I've just came back from work, where I'm ironing out last twists of recent classic migration. One of them been that krb5.conf on one of the gateway systems posed itself as an authoritative KDC for a
2006 Mar 22
1
An easy one: Accessing fixture data in 1.0+
OK, we all know that Rails turned off instantiated fixtures by default in 1.0. That''s not a problem. However, what I''m now wondering is how to access the raw fixture data out of the YML file (as opposed to the database.) Mainly, for comparing my database results with my expected results in a DRY way. The book says if you have the command "fixtures :foo", that
2010 Jun 21
1
[LLVMdev] Disabling assertions in llvm.org releases
Hi Torok, > I am running with assertions enabled and it was very useful in finding > bugs on platforms I can't (or rarely) test on. > Had assertions been off I think bad/invalid code would have been > generated silently, resulting in a much harder to debug segfault. are you using the binaries supplied by llvm.org, or building yourself? There is a big difference between what is
2013 Apr 03
0
[LLVMdev] LNT ClamAV - Sorting output
On 04/03/2013 01:20 AM, Renato Golin wrote: > Hi Torok, > > I've used a hard-coded list on the input parameter and still got some output (slightly) scrambled between two different bots... > > I though the dbdir could be the culprit, but it has only one file. Attached is the output of both. > The version of ClamAV in the LLVM test-suite is quite old, and it first unpacks
2010 Apr 27
1
save a data frame in environment
Dear group, Here is my function : position<-function(x) { pose<-read.csv2((paste(c("LSCPos",x,".csv"),collapse="")),dec=".",sep=",",as .is=T,h=T,skip=1)[,c(4,8,14,15)] pose$CREATED.DATE<-as.Date(pose$CREATED.DATE,"%d/%m/%y") futures<-pose[-grep("USD",pose[,1]),]
2010 Jan 20
2
[LLVMdev] updated code size comparison
Hi Torok- > Could you also add a main() for each of these files, and do > a very simple test that the optimized functions actually work? Unfortunately, testing isolated C functions is much harder than just passing them random data! Consider this function: int foo (int x, int y) { return x+y; } The behavior of foo() is undefined when x+y overflows. If course it is trivial to come
2013 Apr 15
2
[LLVMdev] LNT ClamAV - Sorting output
On Wed, Apr 3, 2013 at 12:12 AM, Török Edwin <edwin+ml-debian at etorok.net> wrote: > On 04/03/2013 01:20 AM, Renato Golin wrote: >> Hi Torok, >> >> I've used a hard-coded list on the input parameter and still got some output (slightly) scrambled between two different bots... >> >> I though the dbdir could be the culprit, but it has only one file.
2008 Oct 13
2
samba+cups failure - no printers in the share list
Hi! It seems my samba and cups won't communicate with each other. I've configured samba to load the printers from cups: load printers = yes printing = cups printcap name = cups [printers] comment = All Printers path = /var/spool/samba printable = yes public = no read only = yes create mode = 0700 valid users = @digiszfv
2013 Apr 02
3
[LLVMdev] LNT ClamAV - Sorting output
Hi Torok, I've used a hard-coded list on the input parameter and still got some output (slightly) scrambled between two different bots... INPUT = $(PROJ_SRC_DIR)/inputs/clam.cab \ $(PROJ_SRC_DIR)/inputs/clamdoc.tar.gz \ $(PROJ_SRC_DIR)/inputs/clam.exe \ $(PROJ_SRC_DIR)/inputs/clam.exe.bz2 \ $(PROJ_SRC_DIR)/inputs/clam-v2.rar \
2008 Mar 26
3
[LLVMdev] Say hi to VMKit: JVM/LLVM, CLI/LLVM
Very nice Torok! I applied most of the patch. A few comments: 1) What is your jni.h file? I can't compile the Jni.cpp file with your changes. 2) ISO C++ does not support %jd. x86_64 does not know about %lld? Thanks! Nicolas Török Edwin wrote: > Nicolas Geoffray wrote: > >> Hi everyone, >> >> I've just checked in a JVM and a CLI for LLVM (called JnJVM and N3).
2008 Jun 23
2
Pairwise Partitioning of a Vector
Hi, How can I partitioned an example vector like this > print(myvector) [1] 30.9 60.1 70.0 73.0 75.0 83.9 93.1 97.6 98.8 113.9 into the following pairwise partition: PAIR1 part1 = 30.9 part2 = 60.1 70.0 73.0 75.0 83.9 93.1 97.6 98.8 113.9 PAIR2 part1 = 30.9 60.1 part2 = 70.0 73.0 75.0 83.9 93.1 97.6 98.8 113.9 .... PAIR9 part1 = 30.9
2009 May 31
1
R Solves Shakespeare Authorship Question
Those of you who track applications of R may be interested in the following: "The purpose of this paper is then to apply modern text analysis techniques using the R statistical packege [sic] to compare the works attributed to Shakespeare to those of leading alternate candidates such as Sir Frances Bacon, Christopher Marlow, and Edward de Vere...".
2006 Mar 07
0
Overriding date helpers in a logical way
Short story: I need to use a different style of inputs to enter datetimes. What I want is to be able to implement these while still retaining the niceties of the built-in input helpers, like ActiveRecord error handling and automatic reconstitution of a single Date object from multiple form elements. What''s the best way to go about this? Long story: My form has one standard month
2010 Jan 20
0
[LLVMdev] updated code size comparison
On 01/20/2010 10:10 PM, John Regehr wrote: > Hi Torok- > >> Could you also add a main() for each of these files, and do >> a very simple test that the optimized functions actually work? > > Unfortunately, testing isolated C functions is much harder than just > passing them random data! > > Consider this function: > > int foo (int x, int y) { return x+y; }