Displaying 20 results from an estimated 100 matches similar to: "No subject"
2019 May 16
0
ALTREP: Bug reports
Hi Jiefei,
Thanks for tryingout the ALTREP stuff and letting us know how it is going.
That said I don't think either of these are bugs, per se, but rather a
misunderstanding of the API. Details inline.
On Thu, May 16, 2019 at 11:57 AM ??? <szwjf08 at gmail.com> wrote:
> Hello,
>
> I have encountered two bugs when using ALTREP APIs.
>
> 1. STDVEC_DATAPTR
>
> From
2019 May 16
0
ALTREP: Bug reports
Jiefei,
Inline.
On Thu, May 16, 2019 at 2:30 PM ??? <szwjf08 at gmail.com> wrote:
> Hello Luke and Gabriel,
>
> Thank you very much for your quick responses. The explanation of STDVEC is
> very helpful and I appreciate it! For the wrapper, I have a few new
> questions.
>
>
> 1. Like Luke said a mutable object is not possible. However, I noticed
> that there is
2019 May 16
3
ALTREP: Bug reports
Hello,
I have encountered two bugs when using ALTREP APIs.
1. STDVEC_DATAPTR
>From RInternal.h file it has a comment:
/* ALTREP support */
> void *(STDVEC_DATAPTR)(SEXP x);
However, this comment might not be true, the easiest way to verify it is to
define a C++ function:
void C_testFunc(SEXP a)
> {
> STDVEC_DATAPTR(a);
> }
and call it in R via
> a=1:10
> >
2019 May 16
3
ALTREP: Bug reports
Hello Luke and Gabriel,
Thank you very much for your quick responses. The explanation of STDVEC is
very helpful and I appreciate it! For the wrapper, I have a few new
questions.
1. Like Luke said a mutable object is not possible. However, I noticed that
there is one extra argument *deep* in the function duplicate. I've googled
all the available documentation for ALTREP but I did not find
2004 Nov 17
1
frailty and time-dependent covariate
Hello,
I'm trying to estimate a cox model with a frailty variable and time-dependent covariate (below there is the statement I use and the error message). It's seems to be impossible, because every time I add the time-dependent covariate the model doesn't converge. Instead, if I estimate the same model without the time-dependent covariate it's converge. I'd like knowing if
2015 Jun 29
3
resolve errors with Samba 4 dns [RESOLVED]
and 'host google.com 8.8.8.8' also gives the expected output?
Like this:
> root at pf:~# host google.com 8.8.8.8
> Using domain server:
> Name: 8.8.8.8
> Address: 8.8.8.8#53
> Aliases:
>
> google.com has address 74.125.136.100
> google.com has address 74.125.136.113
> google.com has address 74.125.136.101
> google.com has address 74.125.136.138
>
2016 Aug 26
0
[PATCH v8 11/18] ARM: DT: STiH407: Add i2s_in pinctrl configuration
This patch adds the pinctrl config for the i2s_in pins
used by the uniperif reader IP.
Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen at st.com>
Signed-off-by: Peter Griffin <peter.griffin at linaro.org>
---
arch/arm/boot/dts/stih407-pinctrl.dtsi | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/arch/arm/boot/dts/stih407-pinctrl.dtsi
2016 Aug 26
0
[PATCH v8 10/18] ARM: DT: STiH407: Add i2s_out pinctrl configuration
This patch adds the pinctrl config for the i2s_out pins
used by the uniperif player IP.
Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen at st.com>
Signed-off-by: Peter Griffin <peter.griffin at linaro.org>
---
arch/arm/boot/dts/stih407-pinctrl.dtsi | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/arch/arm/boot/dts/stih407-pinctrl.dtsi
2012 Apr 17
2
packaging: src.rpm not a rpm
Hi all,
I have installed the recommended installs from here:
http://wiki.centos.org/HowTos/RebuildSRPM
I want to build a "ipfm" RPM on a CentOS 6.2, for legacy purpose.
I cant immediately get rid of that piece of software, but we're on the
move...
So:
$ wget
http://rpm.pbone.net/index.php3/stat/3/srodzaj/2/search/ipfm-0.11.5-alt1.src.rpm
$ rpm -i --nomd5
2012 Oct 16
3
setting up postfix
This should be an easy one. I'm trying to get postfix going. I've
never done this before. I followed the directions at
http://wiki.centos.org/HowTos/postfix. I opened port 25:
iptables -I INPUT -p tcp -m tcp --dport 25 -j ACCEPT
Here's an attempt to send mail:
[motor at localhost motor]# mail -v larry.martell at gmail.com
Subject: test
test
.
EOT
larry.martell at gmail.com...
2019 Apr 23
1
Wine Gecko 32-bit packages
With reference to the email thread: https://lists.centos.org/pipermail/centos/2017-October/166709.html <https://lists.centos.org/pipermail/centos/2017-October/166709.html>
Can we have the 32-bit Wine Gecko package(s) built and published to the repository: https://harbottle.gitlab.io/wine32/7/i386/ <https://harbottle.gitlab.io/wine32/7/i386/>
Seems like someone has already built
2013 Mar 15
1
Postfix/Amavisd/Clamd - Mail send failing
Dear All
With help from you all I am now at better stage. Special thanks to Robert.
Atleast I am able to run all the required services (postfix, amavisd, clamd
etc).
I sent a mail from my gmail, I received at my newly setup domain/mailbox.
I am facing issue while sending the mail outside.
>From maillog I realized, two issues are there.
*1. Virus scan failed. The error log is as below *
2004 Nov 12
4
Mode in case of discrete or categorial data
Thanking John for his suggestion I build this function
which get the mode of both categorial and discrete
data.
Mode<-function(x){t<-table(x)
if (is.numeric(x)) as.numeric(names(t)[t == max(t)])
else (names(t)[t == max(t)])
}
Any other improvement and suggestion will welcome.
Best
Vito
> s
[1] 1 1 6 1 1 7 6 5 6 2 1 4 5 6 6 7 3 5 4 1 7 3 7 3 3
7 7 2 1 4 4 2 7 7 6 6 1 2
[39] 5 1 7 7
2006 May 03
1
BUG: opens all interfaces.
Summary: the newish fourth forwarding argument does not correctly
specify the interface on the remote machine for a tunnel in -R
On OpenSSH_4.3p2 OpenSSL 0.9.7g 11 Apr 2005,
on Kanotix 2.9 kernel 2.6.16.2
and Cygwin 1.5.19(0.150/4/2)
and (old) FreeBSD 4.6-RELEASE
sshd_config file:
AllowTcpForwarding yes
GatewayPorts yes
Set up a forwarding tunnel:
From a Kanotix box inside my firewall:
2008 May 07
3
predict lmer
Hi,
I am using lmer to analyze habitat selection in wolverines using the
following model:
(me.fit.of <-
lmer(USED~1+STEP+ALT+ALT2+relM+relM:ALT+(1|ID)+(1|ID:TRKPT2),data=vdata,
control=list(usePQL=TRUE),family=poisson,method="Laplace"))
Here, the habitat selection is calaculated using a so-called discrete
choice model where each used location has a certain number of
alternatives
2009 Jan 17
0
Megatec driver FR: repeat shutdown
Hello.
In continuation to
http://lists.alioth.debian.org/pipermail/nut-upsuser/2007-June/002880.html
Inelt Monolith II 1000 (don't know about LT) actually requires
sending shutdown command twice, with delay of 5 to 8 seconds,
according to my experiments.
The attached patch enables the megatec driver to repeat shutdown
command with configurable delay (cmdrepeat, in milliseconds).
Default
2007 Nov 07
3
Blacklist questions ...
This mail goes mainly to Tom, as he sent some Laptop configurations files
to the list.
I checked the files you had sent to the list as answer to
[Shorewall-users] Shorewall on a laptop
Now - Is there a specific reason why you actually lock/blacklist the
following ports ?
- udp 1024:1033,1434
- tcp 57,1433,1434,2401,2745,3127,3306,3410,4899,5554,6101,8081,9898
These should IMHO be blocked by
2016 Aug 26
0
[PATCH v8 12/18] ARM: DT: STiH407: Add spdif_out pinctrl config
This patch adds the pinctrl config for the spidf out
pins used by the sasg codec IP.
Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen at st.com>
Signed-off-by: Peter Griffin <peter.griffin at linaro.org>
---
arch/arm/boot/dts/stih407-pinctrl.dtsi | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/arch/arm/boot/dts/stih407-pinctrl.dtsi
2023 Jul 14
1
dsdb audit in JSON to journald
Hi,
I want see all dsdb events write to systemd (json format).
My global section
...
logging = systemd
log level = 1 passdb:5 auth:5 winbind:1 auth_json_audit:3 dsdb_json_audit:5 dsdb_password_json_audit:5 dsdb_group_audit:5 dsdb_group_json_audit:5 dsdb_transaction_json_audit:5
...
systemctl restart samba
journalctl -f
Then,
[root at dc ~]# samba-tool group add testgroup1
2006 Jul 27
1
response from ajax request
Hi, newbie here.
I am trying to implement a filtering interface using observe_field.
Using firebug I can see that I am getting the properly rendered html
blob back in the response, but when it get inserted into the dom element
that I am targeting, the plain html elements from the partial template
have been stripped, leaving only the elements inserted via the <%=
statements. I would