Displaying 3 results from an estimated 3 matches for "nexxes".
Did you mean:
exxes
2002 Jul 12
2
NE00: printer files left behind on Samba shares
Hi
We've noticed that we get zero length files left behind on Samba shares
after printing to a Samba printer, of the form NExx: (appears as NExx~yy)
from Windows due to name mangling. This only occurs in specific
circumstances:
Client running NT4 (SP6a) and
Printing file on a Samba share and
Printing to a Samba printer and
Running particular applications (e.g. Word and Acrobat, but not
2008 May 04
0
Morrowind: annoying graphic glitches
Hello,
I'm experiencing some annoying graphic glitches while running Morrowind (Version 1.6.1820).
See http://ss500600-p0g-1-w5t-2.customers.nexxes.net/morrowind.jpg for an example (look at the door).
For me it looks like some z buffer problem.
Other OpenGL apps run fine.
Is there a wine setting, that could improve this behaviour?
My System:
linux 2.6.24.4 x86_64
wine-0.9.61
nvidia driver 169.12
2012 Dec 03
2
Different results from random.Forest with test option and using predict function
Hello R Gurus,
I am perplexed by the different results I obtained when I ran code like
this:
set.seed(100)
test1<-randomForest(BinaryY~., data=Xvars, trees=51, mtry=5, seed=200)
predict(test1, newdata=cbind(NewBinaryY, NewXs), type="response")
and this code:
set.seed(100)
test2<-randomForest(BinaryY~., data=Xvars, trees=51, mtry=5, seed=200,
xtest=NewXs, ytest=NewBinarY)
The