Displaying 20 results from an estimated 29 matches for "stamina".
2011 Jul 28
1
Re: Problem with save files during game
Business Kid wrote:
> On 27 July 2011 21:23, crazy_dave <wineforum-user at winehq.org> wrote:
> Unimplemented is usually a bug. Some routine is missing from a dll. That's a
> time to use the native dll. If you have stamina, file a bug.
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL: <http://www.winehq.org/pipermail/wine-users/attachments/20110728/446da3e6/attachment.htm>
Darn ... according to dimesio I shouldn't create a bug report due to the fact I am using...
2002 Aug 30
1
Thoughts about Cygwin ?
...end to spend most of my Windows time in Cygwin. With R inside
Xemacs/ESS, my work is fairly OS-agnostic. Every now and then, however,
I feel that it would be nice to have R behave under Cygwin just like it
does under Unix/Linux. Anybody else here who feels the same? I don't
think I have the stamina, or for that matter windows/cygwin knowledge,
to spawn a port, but I would be happy to collaborare as I can with test,
configure.in hacks etc pp
If there is no demand, just tell me to crawl back under my stone. No
hurt feelings. I should be using Debian here anyway...
Dirk
--
According to the...
2014 Nov 23
2
R string comparisons may vary with platform (plain text)
...9;s the sort of thing thay I've tried to wrap my mind around multiple times and failed, but have a look at
>
> http://stackoverflow.com/questions/19967555/postgres-collation-differences-osx-v-ubuntu
>
> which seems to be essentially the same issue, just for Postgres. If you have the stamina, also look into the python question that it links to.
>
> As I understand it, there are two potential reasons: Either the two platforms are not using the same collation table for en_US, or at least one of them is not fully implementing the Unicode Collation Algorithm.
And I have seen both wi...
2009 Sep 20
1
[PATCH 1/2] drm/nouveau: unify logging format with DRM core
...i.c
@@ -95,7 +95,7 @@ int nouveau_hybrid_setup(struct drm_device *dev)
&result))
return -ENODEV;
- printk(KERN_INFO "nouveau: _DSM hardware status gave 0x%x\n", result);
+ NV_INFO(dev, "_DSM hardware status gave 0x%x\n", result);
if (result & 0x1) { /* Stamina mode - disable the external GPU */
nvidia_dsm(pdev, NOUVEAU_DSM_LED, NOUVEAU_DSM_LED_STAMINA,
diff --git a/drivers/gpu/drm/nouveau/nouveau_drv.h b/drivers/gpu/drm/nouveau/nouveau_drv.h
index 29cf085..a856099 100644
--- a/drivers/gpu/drm/nouveau/nouveau_drv.h
+++ b/drivers/gpu/drm/nouveau/nouveau...
2016 Jul 27
2
[RFC] One or many git repositories?
...t there is no bias from my part. For example, what was
considered "my" proposal was actually not what I would have wanted or
benefited me.
But we do have limited time to discuss (and work on the compiler at
the same time), and I don't want to drag this for years (I don't have
the stamina).
So, the current "plan" is to formalise all proposals in around a
month's time by uploading them as documents to docs/Proposals/*.rst,
then put the survey up and let people take their time to answer
(another month), than take some time to analyse the results, sharing
the results wit...
2014 Nov 23
2
R string comparisons may vary with platform (plain text)
On Sat, Nov 22, 2014 at 12:42 PM, Duncan Murdoch
<murdoch.duncan at gmail.com> wrote:
> On 22/11/2014, 2:59 PM, Stuart Ambler wrote:
>> A colleague?s R program behaved differently when I ran it, and we thought
>> we traced it probably to different results from string comparisons as
>> below, with different R versions. However the platforms also differed. A
>>
2014 Nov 23
0
R string comparisons may vary with platform (plain text)
...=en_US.utf8
It's the sort of thing thay I've tried to wrap my mind around multiple times and failed, but have a look at
http://stackoverflow.com/questions/19967555/postgres-collation-differences-osx-v-ubuntu
which seems to be essentially the same issue, just for Postgres. If you have the stamina, also look into the python question that it links to.
As I understand it, there are two potential reasons: Either the two platforms are not using the same collation table for en_US, or at least one of them is not fully implementing the Unicode Collation Algorithm.
In general, collation is a minef...
2004 Feb 11
1
64-bit Windows 2003 build of R
I am running into serious memory constraint issues with the 32 bit build
of R. We have Windows 2003 on an Itanium 64 box with the Intel 64-bit C
compiler (8.0.041) and want to create a 64-bit version of R.
Unfortunately, I am no longer "current" with C builds, i.e. - I haven't
done one in years and have never used the Intel 64-bit compiler. I
could use any suggestions, make file,
2005 May 16
1
Solutions? "Intro Stats with R" - Dalgaard
Hi,
I'm going through the book "Introductory Statistics with R" by Dalgaard to teach myself R. At the end of each chapter there are some exercises. Does anyone know of any place on the net where someone has posted the answers to these?
I've looked at the author's and the publisher's site with no luck. And no, this is not cheating for a class, I graduated several
2005 Feb 21
0
Thank You Note
...want to take a minute to thank everybody that has helped me and will
continue to help newbies on their understand of Asterisk.
Also, I hope Asterisk's makers are reading this.. I want to congratulate you
on an excellent piece of software!! I LOVE ASTERISK!
Hope you will have the support and stamina to continue making this great
software.
Thank you!
__________________________________________________________________
Anton Krall
1999 Feb 10
1
Function parsing (PR#118)
Is anyone else concerned with the way in which the R function parser
relocates comments that occur after condional expressions in functions to
before, i.e.
fred <- function(x) {
# wonder what x is like
if (x>0) stop("Sorry non-positive x only")
# that showed x big-time!
x
}
but then fred is parsed and stored as
"fred" <-
function (x)
{
# wonder what x is
2009 Sep 07
0
performance of vector subscripting via character index
...mes(vec))
system.time(vec[ind])
}
test(46340)
## user system elapsed
## 0.012 0.000 0.009
test(46341)
## user system elapsed
## 11.805 0.000 11.805
There seems to be a rebound at just over twice the value of the
threshold above, though I'll admit I didn't have the stamina to test all
values in between:
test(92689)
## user system elapsed
## 48.951 0.000 48.946
test(92690)
## user system elapsed
## 0.036 0.000 0.038
And then worse again...
test(139022)
## user system elapsed
## 0.068 0.003 0.071
test(139023)
## user system elapsed...
2014 Nov 23
0
R string comparisons may vary with platform (plain text)
...o wrap my mind around multiple times
>> and failed, but have a look at
>>
>> http://stackoverflow.com/questions/19967555/postgres-collation-differences-osx-v-ubuntu
>>
>>
>> which seems to be essentially the same issue, just for Postgres. If you have
>> the stamina, also look into the python question that it links to.
>>
>> As I understand it, there are two potential reasons: Either the two platforms
>> are not using the same collation table for en_US, or at least one of them is
>> not fully implementing the Unicode Collation Algorithm...
2001 Aug 27
1
is.environment, as.environment, and NULL
The r-devel (1.4) code has C implementations now of the class and
class<- functions in package methods, and also of as.environment.
The last brings up a question (it shows up in the isas-tests test
suite).
as.environment(NULL) is NULL. Seems like it has to be, since NULL is
the environment associated with package:base.
But is.environment(NULL) is FALSE, which is also fairly natural, if we
2009 May 18
2
stringsAsFactors param in expand.grid not working
Hi all,
I've (tried) to look through the bug tracker, and gmane-search the R list to
see if this has been mentioned before, and it looks like it hasn't.
According to the R 2.9.0 release notes[1], the expand.grid function should now
take a stringsAsFactor=LOGICAL argument which controls whether or not the
function coerces strings as factors. While the parameter is indeed in the
2009 May 18
2
stringsAsFactors param in expand.grid not working
Hi all,
I've (tried) to look through the bug tracker, and gmane-search the R list to
see if this has been mentioned before, and it looks like it hasn't.
According to the R 2.9.0 release notes[1], the expand.grid function should now
take a stringsAsFactor=LOGICAL argument which controls whether or not the
function coerces strings as factors. While the parameter is indeed in the
2020 Jun 28
2
IRC spam
...is
> month-long attack and communication I was able to get them to understand
> that they aren't welcome to the channel.
> > They no longer enter the channel that I moderate; I managed to get
> through to them on some level at least.
>
> I'm impressed with your care and stamina. Not many people I know would
> have gone that far. Thank you for doing that.
>
> > Sadly this sort of baby sitting of a user shouldn't be required and
> requiring some thick skin to get through their harsh comments is difficult.
> > More moderation will "work" bu...
2020 Jun 26
4
IRC spam
I'll comment from the perspective of someone that is in the Mesa,
#dri-devel, #radeon channels myself and have watched their behaviour over
the years. This is a real person that spams a load of information into a
channel about their understanding of how hardware works.
I have no idea what their goal is for spamming this information, could be
some desire for acceptance from perceived smartness.
2001 Feb 13
1
X11 device doesn't handle destroy events correcly (PR#848)
Hi, there are two problems in devX11.c. The one is an undocumented
nuisance and the other isn't a bug until you try to embed an X11
device in another window (think tktoplevel() in tcltk package...).
Let's take a look at locator() first: Assuming you call locator() with
a current X11 device, this call is handled in X11_Locator
(src/unix/X11/devX11.c). When you have one window open and
2006 Sep 19
18
Open Source UML Tool for Ruby on Rails?
I am new to web development, Ruby on Rails, and UML as well. I was
wondering if there were any free tools available for UML design.
There is a list of free tools on wikipedia under UML tools, but I don''t
understand if I need a tool that supports the ruby language. If anyone
uses a free UML tool for designing Ruby on Rails apps, please let me
know what you use.