Displaying 14 results from an estimated 14 matches for "debugcall".
Did you mean:
debug_call
2020 Aug 28
2
utils::isS3stdGeneric chokes on primitives and identity
Trace adds something to the body of the function, so it does make sense
that it doesn't. Whether traced functions still technically meet the
definition of standard s3 generic or not is, I suppose, up for debate, but
I would say that they should, I think.
As before, if desired I can work on a patch for this if desired, or someone
on R-core can just take care of it if that is easier.
Best,
~G
2020 Aug 29
0
utils::isS3stdGeneric chokes on primitives and identity
Hi all,
I have a patch that fixes this and also fixes/improves debugcall so that it
supports pkg::fun(obj) and pkg:::fun(obj) style calls. I'm going to test it
a bit more and add a regression test for isS3stdGeneric and then I will
submit it to bugzilla tonight or tomorrow morning.
Best,
~G
On Thu, Aug 27, 2020 at 5:28 PM Gabriel Becker <gabembecker at gmail.co...
2007 Jul 17
1
BUG IN XAPIAN_FLUSH_THRESHOLD
There is is bug when setting XAPIAN_FLUSH_THRESHOLD=20000000
When trying for force Xapian flush documents to flush after 20 million
documents Xapian ignores the size and flush it after only 10,000
documents.
Data captured from delve after 60 seconds interval when has been set as follow:
XAPIAN_FLUSH_THRESHOLD=20000000
perl -e ' while(1) { system("delve ."); sleep(60); } '
2024 Jun 14
0
R 4.4.1 is released
...qpois(), qnbinom(), no longer sometimes
fail accurate inversion (of pbinom(), etc), thanks to Christopher
Chang's report and patch in PR#18711.
* The internal help server on Windows can again serve requests sent
in quick succession, fixing a regression in R 4.4.0.
* debugcall(<S3Generic>()) now also works when a corresponding
S4-generic version is in the methods cache (PR#18143).
* Package tools' toTitleCase(ch0) now returns character(0) when ch0
is of zero length; fixing PR#18724, reported by David Hugh Jones.
* R CMD check is no longer...
2024 Jun 14
0
R 4.4.1 is released
...qpois(), qnbinom(), no longer sometimes
fail accurate inversion (of pbinom(), etc), thanks to Christopher
Chang's report and patch in PR#18711.
* The internal help server on Windows can again serve requests sent
in quick succession, fixing a regression in R 4.4.0.
* debugcall(<S3Generic>()) now also works when a corresponding
S4-generic version is in the methods cache (PR#18143).
* Package tools' toTitleCase(ch0) now returns character(0) when ch0
is of zero length; fixing PR#18724, reported by David Hugh Jones.
* R CMD check is no longer...
2024 Jun 14
0
R 4.4.1 is released
...qpois(), qnbinom(), no longer sometimes
fail accurate inversion (of pbinom(), etc), thanks to Christopher
Chang's report and patch in PR#18711.
* The internal help server on Windows can again serve requests sent
in quick succession, fixing a regression in R 4.4.0.
* debugcall(<S3Generic>()) now also works when a corresponding
S4-generic version is in the methods cache (PR#18143).
* Package tools' toTitleCase(ch0) now returns character(0) when ch0
is of zero length; fixing PR#18724, reported by David Hugh Jones.
* R CMD check is no longer...
2018 Apr 28
3
debugonce() functions are not considered as debugged
debugonce() sets a different flag (RSTEP), and this is not queried by
isdebugged(), and it is also not unset by undebug().
Is this expected? If yes, is there a way to query and unset the RSTEP flag
from R code?
? f <- function() { }
? debugonce(f)
? isdebugged(f)
[1] FALSE
? undebug(f)
Warning message:
In undebug(f) : argument is not being debugged
? f()
debugging in: f()
debug at #1: {
}
2012 Mar 28
2
[PATCH v2] New APIs: mount-local and umount-local using FUSE
This version doesn't crash or cause hung processes or stuck
mountpoints, so that's an improvement.
Rich.
2012 Mar 27
3
[PATCH 0/3] Enable FUSE support in the API via 'mount-local' call.
This patch is just for review.
It enables FUSE support in the API via two new calls,
'guestfs_mount_local' and 'guestfs_umount_local'.
FUSE turns out to be very easy to deadlock (necessitating that the
machine be rebooted). Running the test from the third patch is
usually an effective way to demonstrate this. However I have not yet
managed to produce a simple reproducer that
2012 Mar 29
3
[PATCH v3] New APIs: mount-local, mount-local-run and umount-local using FUSE
This changes the proposed API slightly.
Previously 'mount-local' generating a 'mounted' event when the
filesystem was ready, and from the 'mounted' event you had to
effectively do a fork.
Now, 'mount-local' just initializes the mountpoint and you have to
call 'mount-local-run' to enter the FUSE main loop. Between these
calls you can do a fork or whatever
2017 Apr 21
0
[PATCH 1/2] generator: Simplify the handling of string parameters.
...@@ -827,7 +827,7 @@ C<guestfs_add_drive_opts>." };
{ defaults with
name = "mount_local"; added = (1, 17, 22);
- style = RErr, [String "localmountpoint"], [OBool "readonly"; OString "options"; OInt "cachetimeout"; OBool "debugcalls"];
+ style = RErr, [String (PlainString, "localmountpoint")], [OBool "readonly"; OString "options"; OInt "cachetimeout"; OBool "debugcalls"];
shortdesc = "mount on the local filesystem";
longdesc = "\
This call exp...
2017 Apr 21
4
[PATCH 0/2] generator: Simplify the handling of string parameters.
Very large but mechanical change to the generator.
Rich.
2017 Feb 18
8
[PATCH 0/6] generator: Split up generator/actions.ml
Split up the huge generator/actions.ml into several smaller files.
Rich.
2015 May 26
6
[PATCH 0/6] Update the way that API versions are generated for the man page.
The existing mechanism was clunky, slow and used ~ 10 MB of
local disk.
Rich.