Displaying 20 results from an estimated 100 matches similar to: "sm.density.compare - a lot of curves"
2007 Sep 21
2
duplicated names and values
Dear list,
I am sorry about this simple question, but somehow I can not figure out
how to solve my problem, may be you could help?
I have a vector mir3:
> length(mir3)
[1] 220671
>head(mir3)
rno-miR-30c rno-miR-30c rno-miR-30d
rno-miR-30e "ENSRNOT00000049288" "ENSRNOT00000049288"
"ENSRNOT00000049288"
2013 Aug 27
6
Scale of axis for two data sets
Hi,
Kbytes RSS rNo
2689632 1450876 1433788
2689632 1450876 1433788
2689632 1450876 1433788
2689632 1450876 1433788
2689632 1450876 1433788
2689632 1450876 1433788
2689632 1450876 1433788
2689632 1460168 1443084
plot(data$rNo,data$RSS,pch=0,type="b",col=36,axes=FALSE, ylab="",
xlab="",las=2,lwd=2.5)
title(" PID -
2012 Mar 10
1
Generating abnormal returns in R
Hello
This is my first post on this forum and I hope someone can help me out.
I have a datafile (weeklyR) with returns of +- 100 companies.
I acquired this computing the following code:
library("tseries");
tickers = c("GSPC" , "BP" , "TOT" , "ENI.MI" , "VOW.BE" , "CS.PA" ,
"DAI.DE" , "ALV.DE" ,
2008 Oct 09
1
Error when reading a SAS transport file
Dear All,
I get the following error when using either SASxport or Hmisc to read an
.xpt file:
> w <- read.xport("D:/consult/Trophos/dnp/base/TRO_ds_20081006.xpt")
Erreur dans factor(x, f$value, f$label) :
invalid labels; length 15 should be 1 or 14
> z<- sasxport.get("D:/consult/Trophos/dnp/base/TRO_ds_20081006.xpt")
Erreur dans factor(x, f$value, f$label) :
2018 Jan 15
3
Fwd: Re: Sysvolreset
Hello!
After process, error continue......
----------------------------------------------------------------
C: \ Users \ USER1XXX> gpupdate / force
Updating Policy ...
Unable to update user policy successfully. The following errors for found:
Group Policy was not processed. Windows was unable to apply the settings
registry-based policy for the LDAP Group Policy object LDAP://CN
2018 Jan 15
0
Fwd: Re: Sysvolreset
Hello,
Wile getting this error, can You navigate to this folder via File
Explorer in Windows or are You getting access denied error there?
Also check which DC was used as logonserver, then check on this DC acl
on this policy with "getfacl" and compare output of "getfacl" on the
same policy, but on Your DC with PDC FSMO (the one that is the "source"
for rsync
2018 Jan 11
2
Sysvolreset
Hello,
copying idmap is fairly straightforward.
1) on your first DC (that one that has PDC FSMO, and is the source for
rsync) create backup of idmap.ldb
tdbbackup -s .bak /path/to/samba/private/idmap.ldb
it will create idmap.ldb.bak
2) stop samba service on second DC
3) copy idmap.ldb.bak from first dc to second dc, lose the .bak suffix
and just copy it over idmap.ldb on second dc
4)
2019 Dec 10
3
Glue two instructions together
Hi,
for DAG-to-DAG instruction selection I’ve implemented a pattern, which
creates from one SDNode two instructions, something like:
def: Pat<(NEW_SDNODE REG:$r1),
(INST_OUT (INST_IN), REG:$r1)>;
where INST_IN doesn't accepts any inputs and INST_OUT accepts two inputs -
one returned by INST_IN and REG;$r1.
Is there any possibility to ‘Glue’ two instruction created
2010 May 04
8
iscsitgtd failed request to share on zpool import after upgrade from b104 to b134
Hi,
I am posting my question to both storage-discuss and zfs-discuss as I am not quite sure what is causing the messages I am receiving.
I have recently migrated my zfs volume from b104 to b134 and upgraded it from zfs version 14 to 22. It consist of two zvol''s ''vol01/zvol01'' and ''vol01/zvol02''.
During zpool import I am getting a non-zero exit code,
2019 Dec 11
2
Glue two instructions together
You could hardcode a register for the pseudo instruction to use in the td file.
The register allocator will make sure not to clobber it.
let uses = [ R1 ], defs = [ R1 ] in {
def MYINST : Pseudo<>
}
On Wed, Dec 11, 2019 at 10:25 AM Przemyslaw Ossowski via llvm-dev
<llvm-dev at lists.llvm.org> wrote:
>
> I have one more question regarding expanding pseudo instruction.
>
>
2012 Feb 02
3
Question about quota configuration
Hi
This is my first post here so i will be as precise as i can
I'm trying to setup a quota system using dovecot postfix and procmail
dovecot version 1.2.9
postfix version 2.7.0
I have succesfully modified dovecot config to use fs quota system (so far
imap and pop3)
It reports correct quotas to imap and pop3 clients (both user and group)
What im tryin to do now is to modify
2020 Jan 28
2
Handling node through TargetLowering::LowerOperation vs TargetLowering::ReplaceNodeResults
Thank you Craig for explanation.
Could be the same algorithm used for custom legalizing given node in
LowerOperation and ReplaceNodeResults in case results and inputs of the
node are illegal?
Or actually such situation is impossible and for given node either
LowerOperation or ReplaceNodeResults can be only called?
Przemek
wt., 28 sty 2020, 18:48 użytkownik Craig Topper <craig.topper at
2020 Jan 28
2
Handling node through TargetLowering::LowerOperation vs TargetLowering::ReplaceNodeResults
Hi,
I see that for different targets in classes which inherits from
TargetLowering there are implemented both methods:
LowerOperation and ReplaceNodeResults
What decides that for one given ISD we have to add handling in
LowerOperation and for other in ReplaceNodeResults, when for both
SetOperationAction is configured to be Custom?
Is it related with number of results of given operation and
2020 Sep 17
3
Unaligned Stack Pointer
Hi all,
my question is maybe not directly related with LLVM but general with
compilers.
The common approach is that compilers often don't align stack pointer for
leaf functions if the function utilizes stack just for keeping variables of
small sizes.
I’m wondering what is the benefit of such behavior.
Is saving a few bytes of the stack just once worth of such approach?
Or maybe
2019 Apr 25
2
Assigning custom information to IR instruction and passing it to its correspondent in Selection DAG
Hello,
I’m looking for the best approach which would allow for marking given LLVM
IR instruction during IR custom pass and later utilizing that information
during DAG Instruction Selection in order to match given pattern based on
this marking.
I’m wondering if marking IR instruction utilizing Metadata is good idea.
But how later pass that information to DAG and appropriately mark in
2019 May 01
2
Assigning custom information to IR instruction and passing it to its correspondent in Selection DAG
On Wed, May 1, 2019 at 2:48 PM Przemyslaw Ossowski <
przemyslaw.ossowski at googlemail.com> wrote:
> Thanks Mehdi for the suggestion.
> I want to customize handling of 'load' instruction during processing DAG,
> but on IR level I want the 'load' to be treated in different passes as
> common load. So I'm afraid that replacing 'load' with Intrinsic
2019 May 01
2
Assigning custom information to IR instruction and passing it to its correspondent in Selection DAG
On Tue, Apr 30, 2019 at 3:51 PM Przemyslaw Ossowski via llvm-dev <
llvm-dev at lists.llvm.org> wrote:
> Hi,
> as I wrote in mu previous post I wanted to somehow mark one IR instruction
> (in this particular case it would be 'load') during dedicated pass, which
> will set the marking based on neighboring instructions. Next I wanted to
> somehow to convey this marking
2012 Feb 24
3
iPhone and custom imap folders problem
Hi
Im using Dovecot 1.0.10 and everything seems work ok except one client
He is accessing his mailbox using iPhone
There are several custom folders created and mail is directed to them
using procmail
The problem is iPhone mail app only sees changes in INBOX and when new
mail arrives to other folders it will not see it unlers user accesses this
particular folder
Is there some kind of workaround
2010 Jul 05
3
How to determine if R is 64 bit compiled under Unix-alike?
Under MacOS I had R64 executive and it was clear. Under Ubuntu, which I
do not have administrative rights to, there is only R executive. It
seems that I can allocate more than 3GB of memory, however not
everything seems to work the same/right as with R64 under MacOS.
Pms.
1999 Sep 20
1
POP secure access??
Hi, I'm looking for a solution to access pop mails (sendmail in linux)
securely. Most of the access would be from window clients (outlook express
etc). Is there a way to encrypt the password (like ssh2) when authenticating
with sendmail? Any info is greatly appereceiated. Thx.
Regards,
Wong.