Displaying 20 results from an estimated 500 matches similar to: "Non-standard S4 behavior"
2001 Mar 30
0
Re: [Omega-bugs] RSMethods pkg causes data.frame misbehavior in R
Right. The methods such as as.data.frame.numeric don't get
dispatched, basically because RSMethods tries to interpret class(x) in
the S4 sense (so, e.g. a numeric vector has class "numeric").
Problems can then come from different semantics for S3-style and
S4-style methods. The older methods don't dispatch on the mode of
vectors (or equivalently, on the value of
2008 Mar 18
1
S4 : dumpMethod
Hi the list,
I almost finished the green book (chapter 7 and 8 on S4), this is
probably one of my last question :-)
I hope you will not miss them to much !
Here is my today nighmare: I do not manage to use dumpMethod :
setClass("A",representation(a="numeric"))
setMethod("plot","A",function(x,y,...){cat("AAAAA\n")})
2024 Oct 18
2
Confusion using "ssh-add -D" and then "ssh-add -l"
I'm confused by the following:-
rcfg at q957$ ssh-add -l
256 SHA256:gl9l9m/xnYpL9P7WkL60L+FcJ0+r2c5Ci770p9VEC08 chris at q957 (ED25519)
256 SHA256:4XDYbepg8zK43pofpQ8IGxMAXkej298a0XZHWjJTIQQ chris at q957 (ED25519)
3072 SHA256:yeQw8xe9rrxHKLqICoXNwReZKKV9HI1UeTCf95QywXM chris at t470 (RSA)
256 SHA256:dluRgJeTqJ32jKxRrSdjr/cibbIOZQeq8Inlna3+Sdw chris at q957 (ED25519)
1996 Dec 24
0
Linux Redhat 4.0/3.0.3 makewhatis cron job
There is a serious problem with the makewhatis cronjob under Redhat Linux
4.0/3.0.3. You can use it to overwrite any file on the system. Redhat
is aware of the problem, and said they would have some kind of fix by
next week which should be plenty of time before this bug is exploitable
again.
#!/bin/sh
#
# blowitawaysam
#
# makewhatis is a shellscript that stores a tmp copy of the whatis
#
2004 Jan 21
0
Fw: Word-of-the-Day: wiki
hope this help some one else --as it helped me, in undertanding
contributions to * wiki pages...
Regards!
Samuel
----- Original Message -----
From: "whatis.com" <WhatIs-BAD63EB5A68046E1@lists.techtarget.com>
To: "whatis.com" <WhatIs@lists.techtarget.com>
Sent: Tuesday, January 06, 2004 10:31 AM
Subject: Word-of-the-Day: wiki
> THE
2002 Feb 26
0
Samba lock X Unix fcntl() lock
Hi
I look at list archives and at samba docs but I did not found ...
please can some one help me?
I have to write a unix program that need to check if it can write to a file and place the apropriate locks before write. Those files are in a Samba share. I intend to use fcntl() function to check and set the locks.
I wrote a test program to see if the fcntl() function can see the samba locks
2024 Oct 18
1
Confusion using "ssh-add -D" and then "ssh-add -l"
On 18/10/2024 11:38, Chris Green wrote:
> chris$ ssh-add -l
> 256 SHA256:4XDYbepg8zK43pofpQ8IGxMAXkej298a0XZHWjJTIQQ chris at q957 (ED25519)
> 3072 SHA256:yeQw8xe9rrxHKLqICoXNwReZKKV9HI1UeTCf95QywXM chris at t470 (RSA)
> 256 SHA256:dluRgJeTqJ32jKxRrSdjr/cibbIOZQeq8Inlna3+Sdw chris at q957 (ED25519)
> 256 SHA256:gl9l9m/xnYpL9P7WkL60L+FcJ0+r2c5Ci770p9VEC08
2024 Oct 18
3
Confusion using "ssh-add -D" and then "ssh-add -l"
On Fri, Oct 18, 2024 at 11:38:37AM +0100, Chris Green wrote:
> I'm confused by the following:-
>
> rcfg at q957$ ssh-add -l
> 256 SHA256:gl9l9m/xnYpL9P7WkL60L+FcJ0+r2c5Ci770p9VEC08 chris at q957 (ED25519)
> 256 SHA256:4XDYbepg8zK43pofpQ8IGxMAXkej298a0XZHWjJTIQQ chris at q957 (ED25519)
> 3072 SHA256:yeQw8xe9rrxHKLqICoXNwReZKKV9HI1UeTCf95QywXM chris at t470
2011 Jan 31
1
DO NOT REPLY [Bug 7941] New: Formatting bug in rsync man page? (man -k, whatis, catman -w)
https://bugzilla.samba.org/show_bug.cgi?id=7941
Summary: Formatting bug in rsync man page? (man -k, whatis,
catman -w)
Product: rsync
Version: 3.0.7
Platform: Sparc
OS/Version: Solaris
Status: NEW
Severity: minor
Priority: P3
Component: core
AssignedTo: wayned at samba.org
2008 Mar 30
1
package.skeleton.S4
Hi the devel list.
I am adapting the package.skeleton to S4 classes and methods
I would have been very proud to post a new working function on this list.
Unfortunately, I do not manage to solve all the problems. Mainly
- sys.source does not compile a file with setClass
- dumpMethod does not exists yet
In the following code, thise two problems are notified by a line
#################
Still
2024 Oct 04
2
[PATCH 00/51] treewide: Switch to __pm_runtime_put_autosuspend()
Hello everyone,
This set will switch the users of pm_runtime_put_autosuspend() to
__pm_runtime_put_autosuspend() while the former will soon be re-purposed
to include a call to pm_runtime_mark_last_busy(). The two are almost
always used together, apart from bugs which are likely common. Going
forward, most new users should be using pm_runtime_put_autosuspend().
Once this conversion is done and
2019 Jul 20
2
Dovecot 2.3.6 on Solaris10: build issues, segfaults
Looking further into this segfault at
settings-parser.c:setting_copy():1519
*dest_size = *src_size;
*src_size points to type size_t (typedef unsigned long), a 4-byte
aligned value consistent with a 32-bit build. This is mismatched with
declared type
(gdb) whatis src_size
type = const uoff_t *
(gdb) whatis uoff_t
type = unsigned long long
(gdb) p sizeof(uoff_t)
$1 = 8
resulting
2007 Oct 04
2
print Text on device
hi BioC,
I need to plot a vector of characters on a pdf device, not as a legend, but
as in image by itself.
I tried text but it is only related to locate text in a plot.
what do you suggest?
> sessionInfo()
R version 2.6.0 (2007-10-03)
x86_64-unknown-linux-gnu
locale:
2012 Jun 12
0
International Workshop on Management of Big Data Systems (MBDS 2012) - Deadline is near
Apologies if you received duplicate copies of this Call for Papers.
Sincerely,
Aravind Menon
MBDS 2012
-----------------------------------------------------------------
CALL FOR PAPERS
International Workshop on Management of Big Data Systems (MBDS 2012)
http://www.cercs.gatech.edu/mbds12
In conjunction with ICAC 2012
http://icac2012.cs.fiu.edu
September 21, 2012, San Jose, CA
2012 Jun 12
0
International Workshop on Management of Big Data Systems (MBDS 2012) - Deadline is near
Apologies if you received duplicate copies of this Call for Papers.
Sincerely,
Aravind Menon
MBDS 2012
-----------------------------------------------------------------
CALL FOR PAPERS
International Workshop on Management of Big Data Systems (MBDS 2012)
http://www.cercs.gatech.edu/mbds12
In conjunction with ICAC 2012
http://icac2012.cs.fiu.edu
September 21, 2012, San Jose, CA
2010 Aug 10
1
Dovecot Ldap Problem
Hi All,
My server is running with Dovecot 1.2.11 and openldap
2.4.17 it was working fine but suddenly my dovecot auth started to
failing sometimes. After restarting dovecot everything will work fine.
The slapd log file is showing "deffering operation: too many executing".
When i googled i have seen that if the client is not properly
disconnecting the connection slapd will give this
2004 Nov 01
1
source level debugging with WineLib?
Hello,
We just started using WineLib, and have very basic question:
which -g??? option do you use to do source level debugging
with winedbg?
I searched the documentation and mailing list for any step-by-step
about this, but found nothing. So either the answer is so obvious
that I just can't see it - or it doesn't work?
By default, winemaker seems configure things for no debug - so
2019 Jul 22
0
Dovecot 2.3.6 on Solaris10: build issues, segfaults
Ah, okay, I see. submission_max_mail_size should be defined as uoff_t instead of size_t in struct submission_settings and struct submission_settings.
> On 20 Jul 2019, at 1.47, Joseph Tam via dovecot <dovecot at dovecot.org> wrote:
>
>
> Looking further into this segfault at
>
> settings-parser.c:setting_copy():1519
> *dest_size = *src_size;
>
> *src_size
2011 Jan 13
0
Formatting bug in rsync man page? (man -k, whatis, catman -w)
Hi guys, I'm new to this mailing list as I just came across a small
problem after installing the rsync package on one of our Solaris 10
machines.
I installed rsync package SMCrsync v3.0.7 SPARC and although command
man rsync worked, man -k rsync and whatis rsync did not despite the
fact that I had run a catman -w to rebuild the windex databases. After
reading the catman man page, I suspected
2007 Dec 27
2
Problem of lmer under FreeBSD
I encounter such problem with lmer under FreeBSD, but not under
Windows. Anyone knows why? Thanks.
> example(lmer)
lmer> (fm1 <- lmer(Reaction ~ Days + (Days|Subject), sleepstudy))
Error in UseMethod("as.logical") : no applicable method for "as.logical"
> traceback()
9: as.logical(EMverbose)
8: as.logical(EMverbose)
7: lmerControl()
6: