search for: valentin

Displaying 20 results from an estimated 280 matches for "valentin".

2017 Jul 06
2
Gluster install using Ganesha for NFS
After 3.10 you'd need to use storhaug.... Which.... doesn't work (yet). You need to use 3.10 for now. On 07/06/2017 12:53 PM, Anthony Valentine wrote: > I'm running this on CentOS 7.3 > > [root at glustertest1 ~]# cat /etc/redhat-release > CentOS Linux release 7.3.1611 (Core) > > > Here are the software versions I have installed. > > [root at glustertest1 ~]# rpm -qa | egrep -i "nfs|gluster|ganesha&...
2023 Jan 13
1
return value of {....}
...y=%g\n", x, y); return 0; } $ gcc -Wall a.c $ ./a.out Starting... Done: x=2200, y=110 I don't like that syntax (e.g., commas between expressions instead of the usual semicolons after expressions). Perhaps John Chambers et all didn't either. -Bill On Fri, Jan 13, 2023 at 2:28 AM Valentin Petzel <valentin at petzel.at> wrote: > Hello Akshay, > > R is quite inspired by LISP, where this is a common thing. It is not in > fact that {...} returned something, rather any expression evalulates to > some value, and for a compound statement that is the last evaluated &gt...
2023 Jan 12
4
return value of {....}
...we can do y <- f(10) Now, you suggested way would look like this: f <- function(n) { x <- runif(n) y <- x**2 } And we'd need to do something like: f(10) y <- somehow_get_last_env_of_f$y So having a compound statement evaluate to a value clearly has a benefit. Best Regards, Valentin 09.01.2023 18:05:58 akshay kulkarni <akshay_e4 at hotmail.com>: > Dear Valentin, > ? ? ? ? ? ? ? ? ? ? ? ? ? But why should {....} "return" a value? It could just as well evaluate all the expressions and store the resulting objects in whatever environment the interpreter cho...
2011 Feb 21
1
R upgrade from 2.7.1
...org lenny/main Packages 100 /var/lib/dpkg/status I gusss my problem is similar with the one in this thread, but I dont understand what was the resolution here: https://stat.ethz.ch/pipermail/r-sig-debian/2010-May/001199.html. Only a full remove and reinstall will fix the issue? Thanks -- Valentin Constantinescu (+47) 90 594 749 [[alternative HTML version deleted]]
2008 Feb 25
4
Highlighting different series with colors
Hello, I have a data frame with 3 vectors $x, $y, and $type. I would like to plot $x~$y and having different colors for the corresponding points, one for each level of $type. Would someone know how to do that? Is it possible to then generate a legend automatically? Valentin
2006 Jul 07
6
parametric proportional hazard regression
...or "exponential". But what if I need a parametric proportional hazard model with the other "usual" distributions like '"gaussian"', '"logistic"', '"lognormal"'and '"loglogistic"? Thanks a lot for your support! Valentin Dimitrov Statistics and Econometrics University of Saarland
2018 Mar 20
2
MIR YAML deserialisation failure
Valentin, in terms of limitations as Sean pointed out, an important one is that .mir doesn't have MachineFunctionInfo which may result in failure on accesses to global variables due to use of register X2. The verifier considers it an undefined register. Also, it's probably easier to reduce test case...
2023 Jan 09
3
return value of {....}
Dear Valentin, But why should {....} "return" a value? It could just as well evaluate all the expressions and store the resulting objects in whatever environment the interpreter chooses, and then it would be left to the user to manipulate any object he chooses. Don't you t...
2012 Sep 06
2
No room for labels in barplot
All, I have: sales <- c(2300,900,155,102,42,10) names(sales) <- c("Christmas","Valentine's Day", "Mother's Day","Father's Day", "Thanksgiving","New Year's Day") barplot(sales,ylim=c(0,2500)) But it doesn't place all of the name labels on the plot. So I tried: sales <- c(2300,900,155,102,42,10)...
2023 Jan 15
3
return value of {....}
...nd local variables in R. > x <- 0 > g <- function () { + n <- 10 + r <- numeric(n) + for (i in 1:n) { + if (i == 6) x <- 100 + r[i] <- x + i + } + r + } > g() [1] 1 2 3 4 5 106 107 108 109 110 On Fri, 13 Jan 2023 at 23:28, Valentin Petzel <valentin at petzel.at> wrote: > Hello Akshay, > > R is quite inspired by LISP, where this is a common thing. It is not in > fact that {...} returned something, rather any expression evalulates to > some value, and for a compound statement that is the last evaluated &gt...
2018 Mar 20
0
MIR YAML deserialisation failure
...res and I hadn't managed yet to find the right point in the Julia pass pipeline to insert the module to reproduce the issue reliably from llc and that's why I started looking at using the MIR. I will go back at looking at the pass pipeline and the IR and get a reproducer that way! Thanks, Valentin On Tue, 20 Mar 2018 at 07:51 Nemanja Ivanovic <nemanja.i.ibm at gmail.com> wrote: > Valentin, > in terms of limitations as Sean pointed out, an important one is that .mir > doesn't have MachineFunctionInfo which may result in failure on accesses to > global variables due to...
2018 Mar 20
2
MIR YAML deserialisation failure
...failure behaviour as it is reducing the test case. Hope that helps, Nemanja P.S. It is not that I am specifically interested in that assert - just that that's how the original test case was failing so that's what I wanted to preserve as an illustration. On Tue, Mar 20, 2018 at 11:14 AM, Valentin Churavy <v.churavy at gmail.com> wrote: > Thank you both! > > I was running into the issue that bugpoint was reducing my test-case into > other failures and I hadn't managed yet to find the right point in the > Julia pass pipeline to insert the module to reproduce the issu...
2023 Jan 09
1
return value of {....}
...er, if you don't use return, R just returns the value from evaluating the function body, and if your function body starts with {, it will return the last expression from the function body, as desired. On Mon, Jan 9, 2023, 12:15 akshay kulkarni <akshay_e4 at hotmail.com> wrote: > Dear Valentin, > But why should {....} "return" a value? It could > just as well evaluate all the expressions and store the resulting objects > in whatever environment the interpreter chooses, and then it would be left > to the user to manipulate any object he choo...
2023 Jan 10
1
return value of {....}
...+ 2*x -3 > z <- .Last.value/2 > z [1] 10.5 Yes, you could have used "y" ... -----Original Message----- From: R-help <r-help-bounces at r-project.org <mailto:r-help-bounces at r-project.org> > On Behalf Of akshay kulkarni Sent: Monday, January 9, 2023 12:06 PM To: Valentin Petzel <valentin at petzel.at <mailto:valentin at petzel.at> > Cc: R help Mailing list <r-help at r-project.org <mailto:r-help at r-project.org> > Subject: Re: [R] return value of {....} Dear Valentin, But why should {....} "return" a val...
2023 Jan 09
1
return value of {....}
...want to reuse in another context: > y = x*2 + 2*x -3 > z <- .Last.value/2 > z [1] 10.5 Yes, you could have used "y" ... -----Original Message----- From: R-help <r-help-bounces at r-project.org> On Behalf Of akshay kulkarni Sent: Monday, January 9, 2023 12:06 PM To: Valentin Petzel <valentin at petzel.at> Cc: R help Mailing list <r-help at r-project.org> Subject: Re: [R] return value of {....} Dear Valentin, But why should {....} "return" a value? It could just as well evaluate all the expressions and store the resulting...
2023 Jan 10
1
return value of {....}
...want to reuse in another context: > y = x*2 + 2*x -3 > z <- .Last.value/2 > z [1] 10.5 Yes, you could have used "y" ... -----Original Message----- From: R-help <r-help-bounces at r-project.org> On Behalf Of akshay kulkarni Sent: Monday, January 9, 2023 12:06 PM To: Valentin Petzel <valentin at petzel.at> Cc: R help Mailing list <r-help at r-project.org> Subject: Re: [R] return value of {....} Dear Valentin, But why should {....} "return" a value? It could just as well evaluate all the expressions and store the resulting...
2010 Nov 02
1
R install in Ubuntu maverick issues
...recommended (= 2.12.0-1maverick0) but it is not going to be installed Recommends: r-base-html but it is not going to be installed The following packages have unmet dependencies: r-base-core: Depends: liblzma2 (>= 4.999.9beta+20091116) but it is not installable E: Broken packages -- Valentin Constantinescu (+47) 90 594 749 [[alternative HTML version deleted]]
2011 Feb 11
0
Valentine's Day special
Hello, What do you have plan to celebrate Valentine's Day with wine? Brand?
2017 Jul 06
3
NFS Ganesha
...[root at glustertest1 ~]# gluster nfs-ganesha enable unrecognized word: nfs-ganesha (position 0) Has this command changed? If so, what is the new command? If not, why would I be getting this error? Is there a more recent guide that I should be following? Thank you in advance! Anthony Valentine -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.gluster.org/pipermail/gluster-users/attachments/20170706/babd13ca/attachment.html>
2017 Mar 16
2
unable to execute QEMU command 'migrate': this feature or command is not currently supported
...kvm-ev-2.6.0-28.el7_3.6.1.x86_64 qemu-kvm-tools-ev-2.6.0-28.el7_3.6.1.x86_64 My command is: virsh migrate --live --copy-storage-all --persistent --undefinesource --tunnelled --p2p --verbose --xml server.xml server qemu+ssh://xxx at a.b.c.d/system Any help would be greatly appreciated. Thanks, Valentin