search for: crx

Displaying 20 results from an estimated 22 matches for "crx".

Did you mean: cr4
2012 Jun 11
1
[LLVMdev] anti-dependency breaking and mask/shift dependencies
On Mon, 11 Jun 2012 08:56:21 -0700 Jakob Stoklund Olesen <stoklund at 2pi.dk> wrote: > > On Jun 11, 2012, at 8:07 AM, Hal Finkel wrote: > > > Also, I think the following might work well: If we add a special > > kind of register dependency called a 'remembered' register. This is > > not a real dependency meaning that that the instruction does not >
2004 Sep 15
2
smbclient's tar_re_search broken?
Hi all, My old and stable backup script don't work anymore. It's based on smbclient's tar command using crX parameters for creating archive, excluding files based on basic regular expressions. The box is running Fedora core 2, fully updated: kernel-2.6.8-1.521 samba-common-3.0.7-2.FC2 samba-client-3.0.7-2.FC2 The error is easily reproducible: smbclient //ntpdc/share -A credfile \ -c "tar crX ntpdc...
2010 Nov 20
2
Merge two ggplots
Hello everyone. I am using ggplot and I need some help to merge these two plots into one. plot_CR<-function(x,y,agentid,CRagent){   library(ggplot2)     agent<-CRagent[[agentid]] # To make following expression shorter   ggplot((data.frame(x=CRX,y=CRY,sr=agent$sr)))+   geom_point(aes(x,y,colour=cut(sr,c(0,-10,-20,-30,-40,-50,-60,-70,-80))))+   geom_text(aes(x,y,color=cut(sr, c(0,-10,-20,-30,-40,-50,-60,-70,-80)), label=round(sr,3)),vjust=1,legend=FALSE)+labs(colour="CRagents[[i]]$sr") } plot_shad_f<-function(f){   library(gg...
2016 Jan 07
1
Permissions Problem on a share
...is authenticated to the domain and can read/write to > the share in question. > The company data that works with the software resides on share: /apple/fuji > > The software won't complete the install and reports the following error: > > The file \\host\apple\fuji\ACL_DEFAULT.crx could not be opened. Please > check that your disk is not full and that you have access to the > destination directory. > > I don't understand why there's a permission problem for this user. > > \\host\apple\fuji reports the following with getfacl: group:users:rwx > T...
2010 Oct 05
3
Make a loop more efficient
Hello everyone I need some advice if the following might be easier implemented. There are n matrixes each matrix needs to calculate one value for the rest n-1 matrixes (but not for itself). I implemented this one by two nested loops for (i in c(1:length(CRX))) { for (j in c(1:length(CRX))) if (i!=j) # where i and j are the two indexes. If i==j then is the same matrix. calculations(); } Do you think there might be a more efficient R-wise way to implement this? I would like to thank you in advance for your help Best Regards...
2016 Jan 07
2
Permissions Problem on a share
...domain and can read/write to >> the share in question. >> The company data that works with the software resides on share: /apple/fuji >> >> The software won't complete the install and reports the following error: >> >> The file \\host\apple\fuji\ACL_DEFAULT.crx could not be opened. Please >> check that your disk is not full and that you have access to the >> destination directory. >> >> I don't understand why there's a permission problem for this user. >> >> \\host\apple\fuji reports the following with getfacl...
2005 Aug 23
1
openssh-unix-dev Digest, Vol 28, Issue 10
On Tue, Aug 23, 2005 at 03:10:45PM +1000, openssh-unix-dev-request at mindrot.org wrote: > Date: Fri, 19 Aug 2005 17:56:19 +1000 > From: Darren Tucker <dtucker at zip.com.au> > Subject: Re: OpenSSH sget/sput suggestion > To: CRX Driver <crxssi at hotmail.com> > Cc: openssh-unix-dev at mindrot.org > Message-ID: <430590A3.1090506 at zip.com.au> > Content-Type: text/plain; charset=ISO-8859-1 > > CRX Driver wrote: > >>>Imagine this: > >>> > >>>ssh user at machine....
2016 Jan 07
0
Permissions Problem on a share
...>> the share in question. > >> The company data that works with the software resides on share: > /apple/fuji > >> > >> The software won't complete the install and reports the following error: > >> > >> The file \\host\apple\fuji\ACL_DEFAULT.crx could not be opened. Please > >> check that your disk is not full and that you have access to the > >> destination directory. > >> > >> I don't understand why there's a permission problem for this user. > >> > >> \\host\apple\fuji report...
2005 Mar 22
2
Error: Can not handle categorical predictors with more than 32 categories.
...categories." This is generated from the command line: > credit.rf <- randomForest(V16 ~ ., data=credit, mtry=2, importance = TRUE, do.trace=100) The data set is the credit-screening data from the UCI respository, ftp://ftp.ics.uci.edu/pub/machine-learning-databases/credit-screening/crx.data. This data consists of 690 samples and 16 attributes. The attribute information includes: A1: b, a. A2: continuous. A3: continuous. A4: u, y, l, t. A5: g, p, gg. A6: c, d, cc, i, j, k, m, r, q, w, x, e, aa, ff. A7: v, h, bb, j, n, z, dd, ff, o. A8: continuous....
2011 Jan 06
1
Find and remove elemnts of a data frame
Dear all, I have a data frame that is created like that data.frame(x=CRX[-1],y=CRY[-1],z=CRagent[[1]]$sr) the output looks like 45 116 162 -30.89105988567164 46 128  79 -42.66296679571184 47 180 195 -30.45626175641315 48 114  83 -45.26843476475688 49 118  73 -46.85389245327003 How can I select only the rows that their third column is higher that -45? This will return...
2012 Jan 03
0
Create and Initialize List values
...t[[i]]$id=i } but I was wondering If I can have also the same done with a lapply statement ( I prefer lapply so to convert it easily to mclapply). After that I was also thinking to initialize the ...position$x  coordinates and position$y bu assigning to every sub list the corresponding element of CRX <- round(runif(nCR, min=0, max=nrow(r)))  # uniform distribute numbers between 0 and nrow(r) CRY <- round(runif(nCR, min=0, max=nrow(r)))  # uniform distribute numbers between 0 and nrow(r) so every agent should get $id=number in the list $position$x= CRX[number in the list] $position$y= CRY...
2005 Aug 17
3
OpenSSH sget/sput suggestion
Not sure if this has ever been suggested before as a feature request, but I am getting off my lazy a** and sending this Email to your list. Hopefully you will think it is a wonderful idea. I am forever using the wonderful OpenSSH on many systems and have done so for many years. But I often find myself wanting to transfer files while ssh'ed into another system. If I could just have a
2005 Mar 23
1
Gini's Importance Value Variable = Inf
...result of dividing the sum of the decreases by 0. Any suggestions on what may be causing the Inf in "V7" would be helpful? Thanks in advance, -Melanie ---------i library(randomForest) credit<-read.csv(url("ftp://ftp.ics.uci.edu/pub/machine-learning-databases/credit-screening/crx.data"), header=FALSE, na.string="?") credit.rf <- randomForest(V16~., credit, imp=T, do.trace=100,na.action=na.omit) imp <- round(importance(credit.rf), 2) imp - + MeanDecreaseAccuracy MeanDecreaseGini V1 0.00 0.00 0.00 0.00 V2 0.75 0...
2005 Mar 23
0
Question on class 1, 2 output for RandomForest
...they don't match. It does for me: > library(randomForest) randomForest 4.5-4 Type rfNews() to see new features/changes/bug fixes. > credit <- read.csv(url("ftp://ftp.ics. > credit <- read.csv(url("ftp://ftp.ics.uci.edu/pub/machine-learning-databases/credit-sc reening/crx.data"), header=FALSE, na.string="?") > credit.rf <- randomForest(V16~., credit, imp=T, do.trace=100, na.action=na.omit) ntree OOB 1 2 100: 20.37% 14.01% 28.04% 200: 21.59% 15.41% 29.05% 300: 20.52% 13.45% 29.05% 400: 20.52% 13.17% 29.39% 500: 20.21...
2005 Mar 23
0
Error: Can not handle categorical predictors with more th an 32 categories.
...rated from the command line: > > credit.rf <- randomForest(V16 ~ ., data=credit, mtry=2, > importance = > TRUE, do.trace=100) > > The data set is the credit-screening data from the UCI respository, > ftp://ftp.ics.uci.edu/pub/machine-learning-databases/credit-sc reening/crx.data. This data consists of 690 samples and 16 attributes. The attribute information includes: A1: b, a. A2: continuous. A3: continuous. A4: u, y, l, t. A5: g, p, gg. A6: c, d, cc, i, j, k, m, r, q, w, x, e, aa, ff. A7: v, h, bb, j, n, z, dd, ff, o. A8: continuous....
2016 Mar 02
0
Debugging second dvi output on quadro fx380 not working
...addr 0x1150 00000014: 7f exit 00000015: 7f exit 00000016: 7f exit 00000017: 7f exit Whereas nouveau does a lot less: [0] 108.304143 MMIO32 R 0x000008 0x00000000 PMC.BOOT_2 => 0 [0] 108.304162 MMIO8 W 0x6013d4 0x00000094 PRMIO.CRX <= 0x94 [0] 108.304176 CRTC0 R 0x94 0x68 0x94 => 0x68 ---bios script ends here--- [0] 108.304195 MMIO32 R 0x614200 0x00800080 PDISPLAY.CLOCK.VPLL_CTRL2[0] => 0x800080 [0] 108.304208 MMIO32 W 0x614200 0x00800080 PDISPLAY.CLOCK.VPLL_CTRL2[0] <= 0x800080 [0] 108.304222 MMIO32 R 0...
2011 Sep 21
3
Reading data in lisp format
Hi, I am trying to read the "credit.lisp" file of the Japanese credit database in UCI repository, but it is in lisp format which I do not know how to read. I have not found how to do that in the foreign library http://archive.ics.uci.edu/ml/datasets/Japanese+Credit+Screening <http://archive.ics.uci.edu/ml/datasets/Japanese+Credit+Screening> Could anyone help me? Best
2013 Feb 11
24
[Bug 60680] New: HDMI is connected and has mode, TV says "no signal"
https://bugs.freedesktop.org/show_bug.cgi?id=60680 Priority: medium Bug ID: 60680 Assignee: nouveau at lists.freedesktop.org Summary: HDMI is connected and has mode, TV says "no signal" QA Contact: xorg-team at lists.x.org Severity: normal Classification: Unclassified OS: Linux (All) Reporter:
2007 Apr 18
7
[RFC, PATCH 5/24] i386 Vmi code patching
The VMI ROM detection and code patching mechanism is illustrated in setup.c. There ROM is a binary block published by the hypervisor, and and there are certainly implications of this. ROMs certainly have a history of being proprietary, very differently licensed pieces of software, and mostly under non-free licenses. Before jumping to the conclusion that this is a bad thing, let us consider more
2007 Apr 18
7
[RFC, PATCH 5/24] i386 Vmi code patching
The VMI ROM detection and code patching mechanism is illustrated in setup.c. There ROM is a binary block published by the hypervisor, and and there are certainly implications of this. ROMs certainly have a history of being proprietary, very differently licensed pieces of software, and mostly under non-free licenses. Before jumping to the conclusion that this is a bad thing, let us consider more