Displaying 20 results from an estimated 4000 matches similar to: "Scope and assignment: baffling"
2010 Nov 17
2
Reference classes: accessor functions via 'getRefClass(...)$accessors(...)'
Hi there,
I''d like to choose between an "static" and "dynamic" access of a reference
class field, say ''a''.
myObj <- getRefClass("Blabla")$new()
Static: myObj$a
Dynamic: myObj$a.get() where the function retrieves the data
from a database (or some other location), stores it to a buffer and
2018 Sep 25
3
[cfe-dev] New warnings when building trunk with GCC 9
+ Erik, who implemented DR1579
Originally, I had the warning similar to GCC's warning, but took it out due
to not having DR1579 implemented in clang (warning changed in r243594)
Erik in r274291 implemented DR1579, although PR27785 didn't mention
anything about std::move
It looks like what's happening is that Clang and GCC handles the return
differently. Clang needs the std::move
2011 Apr 09
2
best practice(s) for retrieving a local variable from a closure
Greetings,
Say I have defined
mp <- function(a) function(x) x^a
f2 <- mp(2)
and I would like to retrieve the "a" which is local to f2. Two options
come to mind;
get("a", envir=environment(f2))
eval(substitute(a), environment(f2))
I'm curious if one of these is preferred over the other in terms of
efficiency, robustness, aesthetics, etc. Or perhaps
2018 Sep 16
2
[cfe-dev] New warnings when building trunk with GCC 9
Yes, we should produce this warning in C++11 mode too. (I could be
misrecalling, but I think the rationale for the current behaviour is based
on historical GCC behaviour.)
On Sun, 16 Sep 2018, 10:04 David Blaikie via cfe-dev, <
cfe-dev at lists.llvm.org> wrote:
> Fair point made on that thread - that this is a DR, so technically the
> std::move is pessimizing even in C++11 mode.
2007 Apr 01
7
baffling sort problem
I had sort-by-date working almost perfectly with my app. It was
behaving as expected for most data, but had a few hiccups with
certain data. I investigated and discovered that the correct data was
storing this in my ferret index: "1999-10-18 00:00:00" and the
incorrect data was storing this: "Mon Oct 18 00:00:00 EDT
1999" (oops...)
So I of course had to fix the
2006 Mar 16
9
Baffling AJAX issue
Ok, I''ve got some link_to_remote stuff working elsewhere just fine, but
this time it''s doing something very screwy. Here''s the view code to
create a link to remotely toggle a boolean value on a record:
<td class="contact_active">
<%= link_to_remote "<div id=''contact_active_#{cm.id}''><span
2002 Dec 05
1
winbind + groups hogs CPU
I've been using winbind successfully for awhile now for user info
(nothing in /etc/passwd), but today I tried to use it to pull group
info, so I updated /etc/nsswitch.conf (RH 7.3) and then tried to add:
valid users = @DOMAIN+group_name
and now whenever I click on any folder (share) to open the cpu util goes
up, and the connection hangs for awhile, and then eventually it
times-out on the
2011 Nov 28
1
Comparing data
Hi all,
i have a data set cintaining 14 columns and 11 rows. Rows represent single point and columns represent the parameter measured.
I wiuld like to compare the data to see which are more alike. I used the cluster analysis, but now i ma wondering if there are some other methods, since the cluster analysis did not give me the result i like.
I tried to use factanal() for factor analysis
2008 Apr 15
4
NFS Performance
Hi,
With help from Oleg we got the right patches applied and NFS working
well. Maximum performance was about 60 MB/sec. Last week that dropped
to about 12.5 MB/sec and I cannot find a reason. Lustre clients all
obtain 100+ MB/sec on GigE. Each OST is good for 270 MB/sec. When
mounting the client on one of the OSSs I get 230 MB/sec. Seems the
speed is there. How can NFS and Lustre be tuned
2004 Mar 15
4
effect size
Hi,
Having searched google '[R] aov effect size' without any results I
wonder if I not completely miss something.
Is there any R function that calculates the effect size of an AOV's main
effect or interaction effect? It should be related to the F's and the
degree of freedom of the error, but the multitude in numbers in aov()
baffle me a bit.
Thanks,
---david
2016 Dec 31
2
Baffling regress/forwarding.sh failure, new in 7.4p1
I have the OpenSSH regression tests hooked up to run in Debian and
Ubuntu's "autopkgtest" system, so that they're automatically run on
uploads of OpenSSH itself or any of its dependencies. This is
especially good for enforcing interoperability between it and other SSH
implementations, but it's also pretty good for throwing up occasional
extremely-hard-to-debug failures since
2005 Mar 03
0
Baffled by drop1
I've been experimenting with drop1 for my biostatistics class, to obtain the
so-called Type III sums of squares. I am fully aware of the deficiencies of
this method, however I feel that the students should be familiar with it.
What I find baffling is that when applied to a fully balanced design, you
obtain different sums of squares. I've used this for several years in Splus
and R and never
2005 Mar 03
0
Baffled by drop1: Please ignore previous request!
My apologies to the list for sending this without adequate research. I have
found my answer; please ignore! Thanks.
I've been experimenting with drop1 for my biostatistics class, to obtain the
so-called Type III sums of squares. I am fully aware of the deficiencies of
this method, however I feel that the students should be familiar with it.
What I find baffling is that when applied to a fully
2005 Nov 23
2
Changing loadTextURL
I have an InPlaceEditor, when it is clicked on it loads the unformatted
textile text from the server. When i click on menu items, I change the
content to the formatted text and i want to change the file the
InPlaceEditor will load.
I thought a simple
loadTextURL: "getPage.php?page=" + currentPage;
would do. But currentPage is always empty... It''s baffling :p
Is there a way
2019 Feb 26
1
winbind causing huge timeouts/delays since 4.8
I run samba for a small business domain (less than 10 users), which to me,
seems like a common (and good) use case. When I ran a Windows server, it
did it all. AD DC and file server. I have figured out how to get samba to
do the same, but not without many a headache and some I'm sure, unsupported
workarounds. While I fully understand the reasoning behind the desire to
run separate servers
2017 Jan 02
2
RFC: Allowing @llvm.objectsize to be more conservative with null.
Hi George,
On Mon, Jan 2, 2017 at 10:41 AM, George Burgess IV
<george.burgess.iv at gmail.com> wrote:
> Thanks for the comments!
>
>> Have you considered changing our existing behavior to match GCC's
>> builtin_object_size instead of adding a new parameter
>
> Yup! My issue with turning `i1 %min` into `i8 %flags` is that
> __builtin_object_size would get
2002 Feb 25
2
Dummy Printing Round 2!
Hi,
I have posted this before, and was told to read the documentation (which I
already had in detail) since I have been looking everywhere (mainly google)
with no joy.
If possible I want to tell wine I have a printer installed (write to file
printer if possible) as I do not have a printer but have a windows
application that requires a printer to be installed to run, could anyone
advise me on any
2006 May 21
2
MySQL-Front question
I''ve been going through the tutorial here:
http://instantrails.rubyforge.org/tutorial/index.html
About a third of the way down, right under figure 23 there''s a section on ''Adding Recipe Fields''. I just completed creating a recipes table and the Primary Index and auto_incrementing id have been made.
The thing that''s baffling me, is that my results are
2015 Mar 25
2
vignette checking woes
I'm having trouble with R CMD check of my quantreg package. All is well
until I get to:
checking running R code from vignettes ...
?rq.Rnw? ... failed
ERROR
Errors in running code in vignettes:
when running code in ?rq.Rnw?
when I see a snippet from the vignette code and then:
Loading required namespace: MatrixModels
When sourcing ?rq.R?:
Error: could not find function
2011 Sep 01
3
DOM0 Hang on a large box....
Hi,
I''m looking at a system hang on a large box: 160 cpus, 2TB. Dom0 is
booted with 160 vcpus (don''t ask me why :)), and an HVM guest is started
with over 1.5T RAM and 128 vcpus. The system hangs without much activity
after couple hours. Xen 4.0.2 and 2.6.32 based 64bit dom0.
During hang I discovered:
Most of dom0 vcpus are in double_lock_balance spinning on one of the locks: