search for: l736

Displaying 7 results from an estimated 7 matches for "l736".

Did you mean: 736
2025 Feb 12
1
Unexpected result after auto-attaching of the Matrix package
...lass(d)), which finally loads Matrix in order to find out classes extended by "dgCMatrix": https://github.com/r-devel/r-svn/blob/fa73948a1977da05788499807469e69d5a21bd98/src/main/attrib.c#L840 https://github.com/r-devel/r-svn/blob/fa73948a1977da05788499807469e69d5a21bd98/src/main/attrib.c#L736-L741 7. S3 dispatch fails for all those S4 classes or the "default" method, so dim(d) returns attr(d, "dim") (which is not set): https://github.com/r-devel/r-svn/blob/fa73948a1977da05788499807469e69d5a21bd98/src/main/attrib.c#L1184 Then why does print(d) work without loading Ma...
2015 Mar 02
2
Errors on Windows with grep(fixed=TRUE) on UTF-8 strings
On Windows, grep(fixed=TRUE) throws errors with some UTF-8 strings. Here's an example (must be run on Windows to reproduce the error): Sys.setlocale("LC_CTYPE", "chinese") y <- rawToChar(as.raw(c(0xe6, 0xb8, 0x97))) Encoding(y) <- "UTF-8" y # [1] "?" grep("\n", y, fixed = TRUE) # Error in grep("\n", y, fixed = TRUE) : invalid
2017 Dec 30
1
RFC: Default path for cross-compiled runtimes
...rst look here and if you don't don't find headers/libraries there keep looking in other include/library paths. When you use -stdlib=libc++ today, Clang driver will always first look into ../include/c++/v1 (see https://github.com/llvm-mirror/clang/blob/master/lib/Driver/ToolChains/Linux.cpp#L736) and only then check the sysroot. I don't wan to replace or alter --sysroot=, what I'm proposing is generalizing the existing logic to support multiarch, akin to libstdc++ (see https://github.com/llvm-mirror/clang/blob/master/lib/Driver/ToolChains/Linux.cpp#L774 ). > I cannot modify Xco...
2009 Aug 10
2
testing exception notification plugin with rspec
Hi, I''m trying to install exception notification plugin and test it with rspec. The problem that I have is that when running the server in production mode : at the end of the log i get this when I have a critical error rendering section "request" rendering section "session" rendering section "environment" rendering section "backtrace" Sent mail to
2015 Mar 04
0
Errors on Windows with grep(fixed=TRUE) on UTF-8 strings
...} else ... This can be seen at https://github.com/wch/r-source/blob/e92b4c1cba05762480cd3898335144e5dd111cb7/src/main/grep.c#L668-L692 A similar pattern occurs in the fgrep_one_bytes function, at https://github.com/wch/r-source/blob/e92b4c1cba05762480cd3898335144e5dd111cb7/src/main/grep.c#L718-L736 I believe that the test order should be reversed; it should test first for `use_UTF8`, and then for `mbcslocale`. This pattern occurs in a few places in grep.c. It looks like this: if (!useBytes && use_UTF8) { ... } else if (!useBytes && mbcslocale) { ......
2025 Feb 11
2
Unexpected result after auto-attaching of the Matrix package
Dear all, I just stumbled on this behavior - not sure if this is expected: R version 4.4.2 (2024-10-31) -- "Pile of Leaves" Copyright (C) 2024 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu > library(Matrix) > sparseMatrix(i=1:10, j=1:10, x=rnorm(10)) |> saveRDS("~/Downloads/sparsemat_test.rds") > q() Save workspace image? [y/n/c]: n
2017 Dec 19
2
RFC: Default path for cross-compiled runtimes
On Tue, Dec 19, 2017 at 8:33 AM Jonathan Roelofs <jonathan at codesourcery.com> wrote: > On 12/19/17 9:15 AM, Petr Hosek via llvm-dev wrote: > > Today, there're two different locations for runtimes files within > > Clang's installation: > > > > compiler-rt: > > headers: $prefix/lib/clang/$version/include(/sanitizer) > > libraries: >