Displaying 20 results from an estimated 1000 matches similar to: "improving barplot output"
2020 Jan 13
2
Adding SNI support to SSH
Hey Jochen,
Jochen Bern <Jochen.Bern at binect.de> writes:
> On 01/13/2020 11:10 AM, Nico Schottelius wrote:
>> The problem I am trying to solve is: there are thousands of users on
>> IPv4 only networks who I cannot all communicate with. And they need to
>> access resources on IPv6 only systems.
>>
>> The typical jump host / proxy command approach surely
2009 Mar 23
1
incoherent treatment of NULL
somewhat related to a previous discussion [1] on how 'names<-' would
sometimes modify its argument in place, and sometimes produce a modified
copy without changing the original, here's another example of how it
becomes visible to the user when r makes or doesn't make a copy of an
object:
x = NULL
dput(x)
# NULL
class(x) = 'integer'
# error: invalid
2009 Feb 23
1
are arithmetic comparison operators binary?
the man page for relational operators (see, e.g., ?'<') says:
"
Binary operators which allow the comparison of values in atomic vectors.
Arguments:
x, y: atomic vectors, symbols, calls, or other objects for which
methods have been written.
"
it is somewhat surprizing that the following works:
'<'(1)
# logical(0)
'<'()
#
2009 Feb 23
1
are arithmetic comparison operators binary?
the man page for relational operators (see, e.g., ?'<') says:
"
Binary operators which allow the comparison of values in atomic vectors.
Arguments:
x, y: atomic vectors, symbols, calls, or other objects for which
methods have been written.
"
it is somewhat surprizing that the following works:
'<'(1)
# logical(0)
'<'()
#
2009 Mar 18
2
incoherent conversions from/to raw
i wonder about the following examples showing incoherence in how type
conversions are done in r:
x = TRUE
x[2] = as.raw(1)
# Error in x[2] = as.raw(1) :
# incompatible types (from raw to logical) in subassignment type fix
it seems that there is an attempt to coerce the raw value to logical
here, which fails, even though
as.logical(as.raw(1))
# TRUE
likewise,
x[2]
2009 Mar 18
2
incoherent conversions from/to raw
i wonder about the following examples showing incoherence in how type
conversions are done in r:
x = TRUE
x[2] = as.raw(1)
# Error in x[2] = as.raw(1) :
# incompatible types (from raw to logical) in subassignment type fix
it seems that there is an attempt to coerce the raw value to logical
here, which fails, even though
as.logical(as.raw(1))
# TRUE
likewise,
x[2]
2019 Mar 29
2
Test failure due to file path
Hi all,
The following tests fail because my username (csabaraduly) contains "bar" :
********************
FAIL: LLVM :: tools/llvm-objcopy/ELF/regex.test (47099 of 50832)
******************** TEST 'LLVM :: tools/llvm-objcopy/ELF/regex.test'
FAILED ********************
Script:
--
: 'RUN: at line 1';
/home/csabaraduly/wk/LLVM-git/__build_release_99/bin/yaml2obj
2019 Mar 29
2
Test failure due to file path
For ignore-undefined-symbols.s, the simplest fix ought to be to have the llvm-mc RUN line take the source from <stdin>:
# RUN: llvm-mc –filetype=obj –triple=x86_64-pc-linux %s –o %t.o –g
becomes
# RUN: llvm-mc –filetype=obj –triple=x86_64-pc-linux < %s –o %t.o –g
But in this case, llvm-symbolizer still prints the file as $CWD/<stdin> which seems like its own separate bug.
--paulr
2017 Nov 27
2
Go Tsan check failure
Hi all,
I'm trying to build clang on Ubuntu 17.10 - the build succeeds, but
testing fails:
~/wk/LLVM/build_release$ svn info ../llvm/
Path: /home/csabaraduly/wk/LLVM/llvm
Working Copy Root Path: /home/csabaraduly/wk/LLVM/llvm
URL: https://llvm.org/svn/llvm-project/llvm/trunk
Relative URL: ^/llvm/trunk
Repository Root: https://llvm.org/svn/llvm-project
Repository UUID:
2018 Apr 16
2
tools/llvm-dwarfdump/X86/debug-names-find.s spurious failure
********************
FAIL: LLVM :: tools/llvm-dwarfdump/X86/debug-names-find.s (38881 of 41794)
******************** TEST 'LLVM ::
tools/llvm-dwarfdump/X86/debug-names-find.s' FAILED
********************
Script:
--
/home/csabaraduly/wk/LLVM/build_release/bin/llvm-mc -triple
x86_64-pc-linux
/home/csabaraduly/wk/LLVM/llvm/test/tools/llvm-dwarfdump/X86/debug-names-find.s
-filetype=obj -o
2017 Nov 28
2
Go Tsan check failure
On Tue, Nov 28, 2017 at 12:16 AM, Kostya Serebryany <kcc at google.com> wrote:
> +dvyukov
>
> On Mon, Nov 27, 2017 at 4:56 AM, Csaba Raduly via llvm-dev
> <llvm-dev at lists.llvm.org> wrote:
>>
>> Hi all,
>>
>> I'm trying to build clang on Ubuntu 17.10 - the build succeeds, but
>> testing fails:
>>
>> ~/wk/LLVM/build_release$
2003 Oct 27
3
How to disable XFree86 and wdm listening ports
Hello,
what is the right way to disable XFree86 and wdm listening
ports tcp 6000 and tcp 1024.
I read in man XFree86 about the -nolisten tcp option
and tried to set in /usr/X11R6/lib/X11/xdm
:0 local /usr/X11R6/bin/X -nolisten tcp
but it was not successful.
What is the right way to close the ports without use of IPFW?
Your help would be appreciated.
Thank?s
Wolfgang
2018 Apr 16
0
tools/llvm-dwarfdump/X86/debug-names-find.s spurious failure
Hello Csaba,
Thanks for the heads up. I am the one who wrote that test. I'll look into
that shortly. Sorry about the trouble.
pl
On Mon, 16 Apr 2018 at 11:56, Csaba Raduly via llvm-dev <
llvm-dev at lists.llvm.org> wrote:
> ********************
> FAIL: LLVM :: tools/llvm-dwarfdump/X86/debug-names-find.s (38881 of 41794)
> ******************** TEST 'LLVM ::
>
2018 Apr 16
1
tools/llvm-dwarfdump/X86/debug-names-find.s spurious failure
r330121 should fix that. Let me know if you still run into any issues.
cheers,
pl
On Mon, 16 Apr 2018 at 12:07, Pavel Labath <labath at google.com> wrote:
> Hello Csaba,
> Thanks for the heads up. I am the one who wrote that test. I'll look into
> that shortly. Sorry about the trouble.
> pl
> On Mon, 16 Apr 2018 at 11:56, Csaba Raduly via llvm-dev <
> llvm-dev at
1999 Jul 28
1
skewness, kurtosis
Dear R-Users and Developpers,
Currently R does not include functions to compute the skewness and
kurtosis. I programmed it myself in the following way, but probably
*real* programmers/statisticians can do that better:
mykurtosis <- function(x) {
m4 <- mean((x-mean(x))^4)
kurt <- m4/(sd(x)^4)-3
kurt
}
myskewness <- function(x) {
m3 <- mean((x-mean(x))^3)
skew <-
2017 Nov 28
1
Go Tsan check failure
I guess there is lots of stuff that you don't care about besides
tsan/go that is built and tested during llvm build, and there is no
way to selectively disable each one of that. By design.
In the long run we need to fix all failures (please file a proper
bug). If you are looking for a temporal workaround, then comment it
out. I don't what else to suggest.
On Tue, Nov 28, 2017 at 9:47 AM,
2008 Jun 06
3
R loop
I all
I am just trying to get the idea of a loop if statement for another
purpose. I was going to label a new variable based on date ie first week
1, second week 2 etc. My code in bold is wrong but seems logical to me,
could someone help.
x <-
rep(c(2660156,2663703,2658165,2659303,2661531,2660914),c(2,2,2,2,1,1))
y <-
rep(c(6476767,6475013,6475487,6479659,6477004,6476388),c(2,2,2,2,1,1))
2007 Nov 27
2
exporting a split list
Using wk <- with(d, split(word, kind)), I get the following class table:
wk$`1`
[1] "a" "bra" ... # (*)
wk$`10`
"ca" "dabra" ...
Now I need to export it in the following format:
class num_members examples
1 23 a bra ...
10 4 ca dabra
For each class C such as `1`, I need to print the
2010 Jul 21
1
post hoc test for lme using glht ?
Hi,
I have a fairly simple repeated measures-type data set I've been attempting
to analyze using the lme function in the nlme package. Repeated searches
here and other places lead me to believe I have specified my model
correctly.
However, I am having trouble with post-hoc tests. From what I gather, other
people are successfully using the glht function from the multcomp package to
2000 Sep 22
2
arima.sim
Hi,
Before I re-invent the wheel, is there a function in R similar to S+'s
arima.sim, i.e., a function that simulates arima processes.
ts and tseries packages don't seem to have such function, but I may have
overlooked it.
Thank you for your time,
Alvaro Novo
R Version 1.1.1
SuSE 6.4 Linux
KDE 2.0 Beta 5
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-