search for: matthij

Displaying 20 results from an estimated 378 matches for "matthij".

Did you mean: matthijs
2016 Oct 04
8
[Bug 2621] New: ControlMaster started by scp (non-ssh?) doesn't forward agent
https://bugzilla.mindrot.org/show_bug.cgi?id=2621 Bug ID: 2621 Summary: ControlMaster started by scp (non-ssh?) doesn't forward agent Product: Portable OpenSSH Version: 7.3p1 Hardware: All OS: All Status: NEW Severity: normal Priority: P5 Component: Miscellaneous
2009 Jan 22
3
[LLVMdev] Leaving LLVM
...t it seems unlikely. I'll still keep track of LLVM from a personal interest (mostly watching the IRC channel), but I won't have the time to track any mailing lists. Thanks to all involved for the great product and community that LLVM is and for the experiences gained during my work! Gr. Matthijs -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: Digital signature URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090122/d37abac8/attachment.sig>
2013 Jan 04
3
How to plot multiple time series with different time base in same plot?
...81.98 NA 2011-02-06 77.30 NA 2011-02-07 81.38 NA 2011-02-08 139.95 17.60278 2011-02-09 124.40 NA etc. I can imagine that the data frame can be obtained using (nested) loops, but that does not seem very efficient with a large dataset. Any ideas? Thanks a lot. Matthijs Daelman [[alternative HTML version deleted]]
2012 Dec 22
4
Does R have an equivalent for Matlab's cell array?
...sible to create a similar data structure in in R? I was thinking of a data frame, similar to the Matlab's cell array, but it doesn't look like data frames can contain vectors. Something like a two dimensional list would do the trick, I believe, but does that exist? Thanks Kind regards Matthijs Daelman
2007 Apr 11
12
redirection doesn''t get detected well?
I''m doing a redirect in one of my controller actions and somehow I can''t spec it, see this pastie: http://pastie.caboo.se/53120. When following the link from a browser I''m being redirected to the right page. -------------- next part -------------- An HTML attachment was scrubbed... URL:
2013 Mar 01
1
NSD compressing RP content
Hello, while investigating a report from Jan-Piet Mens (resulting in http://wiki.powerdns.com/trac/changeset/3109), we discovered that NSD (both 3.2.15 and 4.0.0b4) compresses labels in RP content. As far as I can see, this is not allowed by RFC3597 section 4 paragraph 1/2. PowerDNS Recursor, like Unbound and BIND, now deals with this as 3597 section 4 paragraph 4 says we SHOULD. Nevertheless,
2008 May 08
3
[LLVMdev] Vector code
...t; using extract/insert. Maybe I have to try an array of floats... Did you turn off the link-time optimization flag (or something like that)? If not, the compiler will optimize things like small structs away (though a struct of more than 3 elements should not be scalarized directly AFAIK...). Gr. Matthijs -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: Digital signature URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20080508/5ea62e4e/attachment.sig>
2009 May 06
2
"Broken mailbox list" with virtual plugin
Hi, I'm using the virtual plugin for a virtual inbox (with dovecot 1.2, r8980), whose dovecot-virtual file looks as follows: INBOX INBOX/Lists INBOX/Bulk INBOX/MaybeSpam Folders/TODO all Everything seems to work fine, but I get the following error in my logfiles: IMAP(matthijs): virtual /home/matthijs/Mail/virtual/INBOX: Broken mailbox list Some investigation of the source code tells me that this error means that there was corrupt data in the index. In particular, the ext_data read from the index was not long enough to contain all mailbox names. Adding some debug code...
2017 Sep 27
3
mail-storage.c:2473 assertion failed: (!ctx->unfinished) (related to antispam?)
Op 9/27/2017 om 2:36 PM schreef Matthijs Kooijman: > Hey folks, > > apologies for the useless subject on my original mail, forgot to update > it. > > Two more bits of info. Here's the log output related to this crash: > > dovecot: imap-login: Login: user=<2014>, method=PLAIN, rip=217.122.126.195, lip=10....
2000 May 24
3
Almost ...
...55.0 gateway 10.2.0.154 tap0 device on gateway machine 10.2.0.155 from network A I can ping 10.2.0.154 but not the other machines behind it from network B the same (ping 10.0.0.30) both networks are in the routing table (with the gateways 10.0.0.31 and 10.2.0.155). Maybe someone can help. Thx, Matthijs Hoosemans - Tinc: Discussion list about the tinc VPN daemon Archive: http://mail.nl.linux.org/lists/ Tinc site: http://ftp.nl.linux.org/pub/linux/tinc/
2008 May 06
2
[LLVMdev] [PATCH] Split LoopUnroll pass into mechanism and policy
...lready. Currently, there is only the SimpleLoopUnroll subclass, so there is no direct gain. However, this opens up the way for other policies and in particular I need to implement a platform specific policy so I require this change. Comments are welcome, I hope this change can be committed. Gr. Matthijs -------------- next part -------------- A non-text attachment was scrubbed... Name: split-unroll.diff Type: text/x-diff Size: 14632 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20080506/a747bafc/attachment.diff> -------------- next part --------------...
2008 May 08
0
[LLVMdev] Vector code
Hi Matthijs, Yes, I've turned off the link-time optimizations (otherwise it just propagates my constant vectors and immediate prints the result). :-) Here's essentially what I try to generate: void add(float z[4], float x[4], float y[4]) { z[0] = x[0] + y[0]; z[1] = x[1] + y[1]; z[2] = x[2...
2008 Jun 05
4
[LLVMdev] Adding DenseMap::FindAndConstruct with a default value
...for the default value. So, it would do the same thing as the original (return a reference to the value from the map, adding it if it's not already in), but instead of using ValueT() as a default value, it would use an argument. Any objections to adding this? Suggestions for alternatives? Gr. Matthijs -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: Digital signature URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20080605/d8bfe66a/attachment.sig>
2008 Jul 08
3
[LLVMdev] Inreg firstclass structs
...there is no support anywhere for that currently (transformation passes and backends?), it might be better to disallow the inreg attribute for struct parameters and return values for now. AFAICS, this would require modification to ParamAttr::typeIncompatible and the langref. Any objections? Gr. Matthijs -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: Digital signature URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20080708/e455956e/attachment.sig>
2008 Aug 05
0
[LLVMdev] Anderson's analysis, getresult instruction on x86_64
...the essence of the problem here. For aggregates in memory, the pointer to the part of the aggregate can simply be used, but no such thing for first class values. I'm not really into how Andersen's works, so I won't be able to help you along with this any further, I'm afraid. Gr. Matthijs [1]: http://llvm.org/bugs/show_bug.cgi?id=2557 [2]: http://llvm.org/bugs/show_bug.cgi?id=2451 -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: Digital signature URL: <http://lists.llvm.org/pi...
2008 Aug 05
2
[LLVMdev] Anderson's analysis, getresult instruction on x86_64
Thanks for the replies, Daniel and Matthijs. I added some code to generate the copy constraint, which I think (in the present form) is wrong (or at best not field sensitive): +void Andersens::visitGetResultInst(GetResultInst &GR) { + if (isa<PointerType>(GR.getType())) + { + // P1 = getresult P2 --> &...
2008 May 08
2
[LLVMdev] Vector code
llvm does not automatically vectorize your scalar code (as least for now). You have to write gcc generic vector code or use vector builtins. Evan On May 8, 2008, at 1:46 PM, Nicolas Capens wrote: > Hi Matthijs, > > Yes, I've turned off the link-time optimizations (otherwise it just > propagates my constant vectors and immediate prints the result). :-) > > Here's essentially what I try to generate: > > void add(float z[4], float x[4], float y[4]) > { > z[0] = x[0] + y...
2006 Jan 09
6
drag and drop problem
...d. I wonder if it is the nesting of the divs that can make it work ? A drop on the waste bin does update the shopping cart, also, so there should be simple trick to get the products box to be updated also (maybe reflecting new stock levels ??) Any hints or pointers are more then welcome, Thanks, Matthijs -- Posted via http://www.ruby-forum.com/.
2009 Apr 28
3
Virtual mailbox plugin, 4 days of struggling
Hello, I finally got an INBOX to work, but is virtual mailbox plugin only meant to create a virtual inbox, or should I be able to have an Allmails virtual folder that is viewable in my imap client? if ~/virtual/ is my location, would I create an Allmails directory in the virtual/ or virtual/INBOX/Allmails. Im fairly confused on how this is suppose to work. I was trying to duplicate the gmail-like
2008 May 07
4
[LLVMdev] Missing passes
...motionPass() createStripDeadPrototypesPass() createJumpThreadingPass() createMemCpyOptPass() createLoopDeletionPass() createCodeGenPreparePass() From what I saw in Passes.html, the passes documentation is not generated automatically? What's the policy on updating this documentation? Gr. Matthijs -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: Digital signature URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20080507/ae0f631d/attachment.sig>