similar to: Superassignment (<<-) and indexing

Displaying 20 results from an estimated 7000 matches similar to: "Superassignment (<<-) and indexing"

2015 Nov 18
4
Still can't figure out ACL issues
Yah, jimc again. I still cannot figure out what is wrong with my dc. The problem began with being unable to log on from Windows boxes after a power hit. The initial symptoms were: 1) When I log in on a Windows machine, with an account that should have administrator permissions, I don't have said admin rights. 2) When I attempt to launch the Windows remote server tools, I can select the
2011 Aug 17
3
OpenLDAP setup and bootstraping in CentOS 6
I'm having trouble getting openldap through its initial setup. I created a /etc/openldap/slap.conf file with a default rootdn and rootpw, and they didn't seem to take effect. After much wailing and gnashing of teeth I found that if there is a config directory at /etc/openldap/slapd.d, it will ignore slapd.conf. I can't figure out how to translate slapd.conf into the (new?) standard
2016 May 25
2
dnf replacing yum?
On 05/25/2016 06:43 PM, Always Learning wrote: > > On Wed, 2016-05-25 at 22:32 +0100, Timothy Murphy wrote: > >> Also, yum had associations which it was sad to lose. > > Perhaps the Fedora ("We love consulting all affected users") replacement > could be named MUD. > > Now we await the System-D controlling interface ;-) > > > > There was
2001 Aug 19
2
thumbs up or down on ext3 with md?
I've read through the archives and it looks like people are using ext3 with software RAID with at least some success. I just want to confirm that it works properly. If I convert my md RAID 0 to ext3, should I expect A) A fast journalled filesystem, or B) Wailing and gnashing of teeth My RAID currently does not use persistant superblocks, because I created it many moons ago under the old
2016 May 26
3
Re: dnf replacing yum?
On Thu, 26 May 2016 08:00, James Hogarth wrote: > On 26 May 2016 00:57, "SternData" wrote: >> On 05/25/2016 06:43 PM, Always Learning wrote: >>> On Wed, 2016-05-25 at 22:32 +0100, Timothy Murphy wrote: >>> >>>> Also, yum had associations which it was sad to lose. >>> >>> Perhaps the Fedora ("We love consulting all affected
2006 Jan 06
2
sudoku
Any doubts about R's big-league status should be put to rest, now that we have a Sudoku Puzzle Solver. Take that, SAS! See package "sudoku" on CRAN. The package could really use a puzzle generator -- contributors are welcome! -- David Brahm (brahm at alum.mit.edu) [[alternative HTML version deleted]] _______________________________________________ R-packages mailing list
2006 Jan 06
2
sudoku
Any doubts about R's big-league status should be put to rest, now that we have a Sudoku Puzzle Solver. Take that, SAS! See package "sudoku" on CRAN. The package could really use a puzzle generator -- contributors are welcome! -- David Brahm (brahm at alum.mit.edu) [[alternative HTML version deleted]] _______________________________________________ R-packages mailing list
2006 Apr 28
1
as.character.factor when the factor contains "NA"
as.character.factor contains this line (where cx=levels(x)[x]): if ("NA" %in% levels(x)) cx[is.na(x)] <- "<NA>" Is it possible that this is no longer the desired behavior? These two results don't seem very consistent: > as.character(as.factor(c("AB", "CD", NA))) [1] "AB" "CD" NA > is.na(.Last.value)[3] [1] TRUE
2004 Dec 22
2
outer(-x, x, pmin) cannot allocate
R> x <- 0. + 1:8000 R> y <- outer(-x, x, pmin) Error: cannot allocate vector of size 1000000 Kb Why does R need to allocate a gigabyte to create an 8000 x 8000 matrix? It doesn't have any trouble with outer(-x, x, "+"). Thanks. -- David Brahm (brahm at alum.mit.edu) Version: platform = i686-pc-linux-gnu arch = i686 os = linux-gnu system = i686, linux-gnu status =
2015 Nov 22
1
Still can't figure out ACL issues
On 22/11/15 10:04, Andrey Repin wrote: > Greetings, jimc! > >> After much wailing and gnashing of teeth, I did a setfacl. > Unfortunately, Samba does not use POSIX ACL's, if its own ACL's are present on > files. (If at all.) > Unless you have it configured for POSIX ACL's, but that's not the case for DC. Samba doesn't use ACLs at all, it is just a bridge
2016 May 26
2
dnf replacing yum?
On Thu, May 26, 2016 5:17 am, Johnny Hughes wrote: > On 05/26/2016 04:31 AM, Yamaban wrote: >> On Thu, 26 May 2016 08:00, James Hogarth wrote: >>> On 26 May 2016 00:57, "SternData" wrote: >>>> On 05/25/2016 06:43 PM, Always Learning wrote: >>>>> On Wed, 2016-05-25 at 22:32 +0100, Timothy Murphy wrote: >>>>>
2016 May 25
3
dnf replacing yum?
Kenneth Porter wrote: > I saw mention of dnf in a blog article about installing a package on > CentOS. Further investigation revealed that Fedora is replacing yum with > dnf, apparently a new and better yum. But it wasn't clear if dnf was a For the normal user (like me) dnf is neither better nor worse than yum. In fact it is almost identical. In my view, the introduction of a new
2009 Dec 18
2
[PATCH] Fix a couple of problems for compilers where int is 16-bits
Hi, The attached patch changes occurrences of serialno to use the type ogg_int32_t, rather than int, as int can be too small on targets where it is only 16-bits. Cheers, Jon -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/ogg-dev/attachments/20091218/bb17e83b/attachment-0001.htm -------------- next part -------------- An
2011 Jul 23
0
[LLVMdev] git
Chris Lattner <clattner at apple.com> writes: > I really do appreciate distributed VCS, but only as staging. > Incremental development is crucial for the project and "take this git > push with 100K of code" will never be acceptable. Incremental development is probably promoted by DVCS far more than others. Your comment seems to imply that only the tip of each push is
2005 Jul 06
2
Graphics: calling par(mar) after frame()
The following code produces 6 plots on a page, but the first is distorted and different from the others: par(mfrow=c(3,2), las=2) for (i in 1:6) { frame() par(mar=c(7, 7, 1, 1)) axis(2); box(); abline(h=seq(0,1,.5), col=2:4) } The first plot's axes are mis-aligned with the plotting area implied by the box. It seems to be a result of calling par(mar) after frame(). Is this expected
2002 Feb 20
1
Bug in "[<-.matrix"? (Was: Feature Request: "matrix[1:10,1:10, block=F] <- 1:10")
Thanks to David Meyer [david.meyer@ci.tuwien.ac.at] and David Brahm [brahm@alum.mit.edu] who suggested: m[ cbind(index.i, index.j) ] <- vals This works fine for the example I gave. Unfortunately, this approach doesn't extend to using the row and column names to make assignments: > m <- matrix("",ncol=3,nrow=3) > dimnames(m) <-
2006 Aug 18
2
Floating point imprecision in sum() under R-2.3.1?
After upgrading to R-2.3.1 on Linux Redhat, I was suprised by this: R> x <- c(721.077, 592.291, 372.208, 381.182) R> sum(x) - 2066.758 [1] 4.547474e-13 Now I understand that floating point arithmetic is not precise, but 1) the result is exactly 0 in R-2.2.1 (patched) on the same machine, 2) .Machine$double.eps = 2.2e-16, so the error seems quite large. Also note I get the same
2002 Jan 07
1
Is r-announce alive?
I sent a message to <r-announce at stat.math.ethz.ch> last Thursday ("New package: colSums"), and still haven't seen it echoed on r-help or on the web archive (in fact there is no r-announce web archive for 2002). Is something broken? Did I need to use <r-announce at lists.R-project.org> instead? -- -- David Brahm (brahm at alum.mit.edu)
2003 Oct 22
3
Subsetted 1-D arrays (PR#4110)
In R-patched_2003-10-20, subsetted 1-D arrays no longer get converted to vectors. The NEWS file documents this change, as an indirect result of bug report 4110. I just wanted to mention this can break code in some rather obscure ways, such as this toy example: R> x <- sort(tapply(1:8, rep(1:4,2), sum)) # Was vector, now is 1D array R> y <- matrix(1:4, 1,4) #
2002 Mar 08
4
ARMA and ARIMA modeling
I'd like to play with ARIMA models of stock prices, but I am a complete novice. Could some kind soul explain the relationship among packages "ts", "tseries", "dse", "dse2", and "fracdiff"? Are they 'competing' products or does one depend on another? Where would be the best place for a novice to begin? Thanks for any advice. PS. I