Displaying 20 results from an estimated 6000 matches similar to: "stripping attachments"
2012 Jul 12
3
Add row into a Matrix witout headers from Function
Hi,
Here i have a matrix like this,
OLDMatrix <-
X1 X2 X3
----- ------ ------
22 24 23
25 27 27
10 13 15
the thing is,
im running two function(SUM,COUNT) to get output in another matrix called
NEWMatrix
NEWMatrix <- c("SUM",colSums(OLDMatrix ))
NEWMatrix <- c("COUNT",colSums(!is.na(OLDMatrix
2018 Nov 02
3
Kodi crashes when trying to browse network
On Fri, 2 Nov 2018 08:33:56 +0100
"L.P.H. van Belle via samba" <samba at lists.samba.org> wrote:
> Hai,
>
> I think he also forgot to mention this part of kodi and smbclient.
>
> ( the default of kodi its smbclient )
> .smb/smb.conf
> [global]
> lock directory = /home/username/.kodi/.smb/
> name resolve order = bcast host
>
2017 Jun 06
2
Usage of PROTECT_WITH_INDEX in R-exts
On 06.06.2017 10:07, Martin Maechler wrote:
>>>>>> Kirill M?ller <kirill.mueller at ivt.baug.ethz.ch>
>>>>>> on Mon, 5 Jun 2017 17:30:20 +0200 writes:
> > Hi I've noted a minor inconsistency in the documentation:
> > Current R-exts reads
>
> > s = PROTECT_WITH_INDEX(eval(OS->R_fcall, OS->R_env), &ipx);
S3 dispatch for S4 subclasses only works if variable "extends" is accessible from global environment
2016 Apr 19
3
S3 dispatch for S4 subclasses only works if variable "extends" is accessible from global environment
Thanks for looking into it, your approach sounds good to me. See also
R_has_methods_attached()
(https://github.com/wch/r-source/blob/42ecf5f492a005f5398cbb4c9becd4aa5af9d05c/src/main/objects.c#L258-L265).
I'm fine with Rscript not loading "methods", as long as everything works
properly with "methods" loaded but not attached.
-Kirill
On 19.04.2016 04:10, Michael
2005 Sep 23
2
[LLVMdev] name collision - llvm::tie and boost::tie
On Thursday 22 September 2005 19:12, Chris Lattner wrote:
> On Thu, 22 Sep 2005, Tzu-Chien Chiu wrote:
> > On 22/09/05, Bill Wendling <isanbard at gmail.com> wrote:
> >> Couldn't you state the explicit namespaces. So not using "using
> >> namespace llvm" and instead prefix all calls with "llvm::"?
> >
> > The header files in
2017 Jun 09
1
Usage of PROTECT_WITH_INDEX in R-exts
>>>>> Kirill M?ller <kirill.mueller at ivt.baug.ethz.ch>
>>>>> on Thu, 8 Jun 2017 12:55:26 +0200 writes:
> On 06.06.2017 22:14, Kirill M?ller wrote:
>>
>>
>> On 06.06.2017 10:07, Martin Maechler wrote:
>>>>>>>> Kirill M?ller <kirill.mueller at ivt.baug.ethz.ch> on
2017 Jun 05
2
Usage of PROTECT_WITH_INDEX in R-exts
Hi
I've noted a minor inconsistency in the documentation: Current R-exts reads
s = PROTECT_WITH_INDEX(eval(OS->R_fcall, OS->R_env), &ipx);
but I believe it has to be
PROTECT_WITH_INDEX(s = eval(OS->R_fcall, OS->R_env), &ipx);
because PROTECT_WITH_INDEX() returns void.
Best regards
Kirill
S3 dispatch for S4 subclasses only works if variable "extends" is accessible from global environment
2016 Apr 19
2
S3 dispatch for S4 subclasses only works if variable "extends" is accessible from global environment
See also .isMethodsDispatchOn, which is what trace uses to decide if the
methods package needs to be loaded.
~G
On Tue, Apr 19, 2016 at 5:34 AM, Michael Lawrence <lawrence.michael at gene.com
> wrote:
> Not sure why R_has_methods_attached() exists. Maybe Martin could shed
> some light on that.
>
> On Mon, Apr 18, 2016 at 11:50 PM, Kirill M?ller
> <kirill.mueller at
S3 dispatch for S4 subclasses only works if variable "extends" is accessible from global environment
2016 Apr 19
4
S3 dispatch for S4 subclasses only works if variable "extends" is accessible from global environment
Does it make sense to be able to load an S4 object without the methods
package being attached? I'm not sure implementation-wise how easy this
would be, but it seems like any time there is an S4 object around, the
methods package should be available to deal with it.
~G
On Tue, Apr 19, 2016 at 7:34 AM, Michael Lawrence <lawrence.michael at gene.com
> wrote:
> Right,
S3 dispatch for S4 subclasses only works if variable "extends" is accessible from global environment
2016 Apr 18
3
S3 dispatch for S4 subclasses only works if variable "extends" is accessible from global environment
Scenario: An S3 method is declared for an S4 base class but called for
an instance of a derived class.
Steps to reproduce:
> Rscript -e "test <- function(x) UseMethod('test', x); test.Matrix <-
function(x) 'Hi'; MatrixDispatchTest::test(Matrix::Matrix())"
Error in UseMethod("test", x) :
no applicable method for 'test' applied to an
2018 Nov 01
4
Kodi crashes when trying to browse network
On 11/1/18 11:22 AM, Rowland Penny via samba wrote:
> It is for a standalone server without guest access, it also will not
> allow network browsing because of the default 'server max protocol =
> SMB3'
>
> I think you need to understand that network browsing is going away, you
> need SMB1 for this.
>
> Anyway, it shouldn't crash, so can you get a level 10 from
2016 Dec 15
2
Redhat Dependencies
Am 15.12.2016 um 19:21 schrieb Dale Renton via samba:
> For CentOS 7 I install these packages before building Samba 4.5.1 from
> source
>
> # yum install chrony gcc perl python-devel gnutls-devel libacl-devel
> openldap-devel bind bind-utils krb5-workstation gpgme-devel python2-gnupg
but you need https://fedoraproject.org/wiki/EPEL as virtually everybody
out there because
2008 Aug 19
7
[LLVMdev] Please help with LLVM C++ integration
Hi Gordon,
I wrote a small example, but while running I get an error("Tied to
execute an unknown external function"), where I am wrong?
Thanks in advance.
Kirill.
int some_test_func( int ){
std::cout << "!!!!" << std::endl;
return 8848;
}
int _tmain(int argc, _TCHAR* argv[]){
Module *M = new Module("test");
ExistingModuleProvider* MP = new
2011 Jun 27
7
[btrfs-delalloc-]
Hello all.
What we have:
SL6 - kernel 2.6.32-131.2.1.el6.x86_64
btrfs on mdadm RAID5 with 8 HDD - 27T partition.
I see this at top:
1182 root 20 0 0 0 0 R 100.0 0.0 16:39.73
[btrfs-delalloc-]
And LA is grow. What is this and how can I fix it?
--
Best regards,
Proskurin Kirill
--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of
2006 Oct 11
1
(no subject)
Hello,
I'm looking for some package in Centos which will provide en/decoding of
mime formats. I have over 1000 outlook mails to process, and it would be
great to script that, but centos 4.4 doesn't have a metamail package and
I couldn't find anything connected to decoding and encoding of MIME.
Is there any tool in Centos repository ?
Thanks a lot,
Paul Malinowski
This electronic
2014 Feb 11
2
$new cannot be accessed when running from Rscript and methods package is not loaded
Hi
Accesses the $new method for a class defined in a package fails if the
methods package is not loaded. I have created a test package with the
following single code file:
newTest <- function() {
cl <- get("someClass")
cl$new
}
someClass <- setRefClass("someClass")
(This is similar to code actually used in the testthat package.)
If methods is not loaded,
2009 Mar 03
3
[LLVMdev] Issue with paper http://llvm.org/devmtg/2008-08/Geoffray_VMKitProject.pdf and presentation http://hal.inria.fr/docs/00/35/45/77/PDF/RR-6799.pdf
Hi Chris,
Just in case that this information does not get corrupted I want to
point to the issue:
In http://llvm.org/devmtg/2008-08/Geoffray_VMKitProject.pdf it is on
page 21: "VMKit, Mono, PNet", Array bounds checks.
In http://hal.inria.fr/docs/00/35/45/77/PDF/RR-6799.pdf it is on page
17: "We compare N3 with Mono [9] version 1.2.6, and PNet version 0.7.4
[2], which uses
2018 Oct 05
2
Dots are not fixed by make.names()
Hi
It seems that names of the form "..#" and "..." are not fixed by
make.names(), even though they are reserved words. The documentation reads:
> [...] Names such as ".2way" are not valid, and neither are the
reserved words.
> Reserved words in R: [...] ... and ..1, ..2 etc, which are used to
refer to arguments passed down from a calling function, see
2014 Jan 03
1
Sweave trims console output in "tex" mode
Hi
In the example .Rnw file below, only the newline between c and d is
visible in the resulting .tex file after running R CMD Sweave. What is
the reason for this behavior? Newlines are important in LaTeX and should
be preserved. In particular, this behavior leads to incorrect LaTeX code
generated when using tikz(console=TRUE) inside a Sweave chunk, as shown
in the tikzDevice vignette.
A
2019 Jun 11
2
x2go is not able to start x2go sessions
Hi everyone.
Since a few days I can't connect with a server via x2go. I get the
following error message:
Connection failed. Failed to start X2Go Agent session with ID
stefsimo-60-1560249248_stDMATE_dp24. X2Go Agent terminated unexpectedly.
Aborting session startup.
Did you get the same error?
cat /etc/centos-release CentOS Linux release 7.6.1810 (Core)
cat /proc/version Linux version