search for: andrzej

Displaying 20 results from an estimated 284 matches for "andrzej".

2017 Apr 25
3
Problems with S4 methods dispatching on `...` (aka dotsMethods)
I attempted to fix it, and that example seems to work for me. It's also a (passing) regression test in R. Are you sure you're using a new enough R-devel? On Tue, Apr 25, 2017 at 2:34 AM, Andrzej Ole? <andrzej.oles at gmail.com> wrote: > Hi Michael, > > thanks again for your patch! I've tested it and I'm happy to confirm that > `callNextMethod()` works with methods dispatching on `...`. > > However, the second issue I reported still seems to be unresolved. Co...
2017 Aug 07
1
Problems with S4 methods dispatching on `...` (aka dotsMethods)
I ported that over. On Tue, Aug 1, 2017 at 5:50 AM, Andrzej Ole? <andrzej.oles at gmail.com> wrote: > Thank you Michael for updating the 3.4 branch, the `callNextMethod()` now > works for `...` methods as expected. However, I'm still missing your other > patch fixing the handling of arguments in `...` methods. It would be really > gre...
2017 Apr 21
2
Problems with S4 methods dispatching on `...` (aka dotsMethods)
Great, thanks Michael for you quick response! I started off with a question on SO because I was not sure whether this was an actual bug or I was just missing something obvious. I'm looking forward to the patch. Cheers, Andrzej On Thu, Apr 20, 2017 at 10:28 PM, Michael Lawrence < lawrence.michael at gene.com> wrote: > Thanks for pointing out these issues. I have a fix that I will commit soon. > > Btw, I would never have seen the post on Stack Overflow. It's best to > report bugs on the bugzilla. &...
2017 Aug 01
0
Problems with S4 methods dispatching on `...` (aka dotsMethods)
...now works for `...` methods as expected. However, I'm still missing your other patch fixing the handling of arguments in `...` methods. It would be really great if this bugfix could be integrated into the 3.4 branch as well, such that the following code doesn't result in an error. Cheers, Andrzej f = function(x, ..., a = b) { b = "missing 'a'" print(a) } f() ## [1] missing 'a' f(a = 1) ## [1] 1 setGeneric("f", signature = "x") # works as the non-generic version f() ## [1] missing 'a...
2019 Jan 11
2
IMAP copy stopped copying flags
Op 11-1-2019 om 10:53 schreef Marc Weustink: > Hi all, > > Andrzej A. Filip wrote: >> Timo Sirainen <tss at iki.fi> wrote: >>> On 9 Jul 2018, at 16.49, Andrzej A. Filip <andrzej.filip at gmail.com> >>> wrote: >>>> >>>> Is it intended behavior? >>> >>> No. >>> >>>> I...
2018 Jul 26
2
Fwd: Fwd: Problem connecting to DC from windows 10. Failed to create user record ... acl: unable to get access to ...
...om: Rowland Penny via samba <samba at lists.samba.org> Date: śr., 25 lip 2018 o 18:36 Subject: Re: [Samba] Fwd: Problem connecting to DC from windows 10. Failed to create user record ... acl: unable to get access to ... To: <samba at lists.samba.org> On Wed, 25 Jul 2018 08:55:01 +0200 Andrzej Gryko via samba <samba at lists.samba.org> wrote: > Avahi is not running. > My smb.conf: > # Global parameters > [global] > netbios name = SAMBA > realm = GRYKO.LOCAL > server services = s3fs, rpc, nbt, wrepl, ldap, cldap, kdc, > drepl, winbind...
2018 Jul 10
2
IMAP copy stopped copying flags
Timo Sirainen <tss at iki.fi> wrote: > On 9 Jul 2018, at 16.49, Andrzej A. Filip <andrzej.filip at gmail.com> wrote: >> >> Is it intended behavior? > > No. > >> It seems to be caused by upgrade to 1:2.3.2-2 on Debian/Testing. > > What was the old version? What's your doveconf -n? How are you testing > that it's not wor...
2017 Apr 20
2
Problems with S4 methods dispatching on `...` (aka dotsMethods)
...methods TL;DR: `callNextMethod()` doesn't work in methods dispatching on `...`, and arguments of such methods are resolved differently than the arguments of methods dispatching on formal arguments. Could this indicate a potential problem with the implementation of the `...` dispatch? Cheers, Andrzej [[alternative HTML version deleted]]
2005 Oct 17
1
Call transfer - atxfer
...7 15:52:23 DEBUG[20916]: rtp.c:190 send_dtmf: Sending dtmf: 42 (*), at 10.2.20.65 Oct 17 15:52:23 DEBUG[20916]: channel.c:2762 ast_channel_bridge: Got AST_BRIDGE_DTMF_CHANNEL_1 on c1 (SIP/rafal-89b1) Oct 17 15:52:23 DEBUG[20916]: channel.c:2798 ast_channel_bridge: Bridge stops bridging channels SIP/andrzej-0265 and SIP/rafal-89b1 Oct 17 15:52:23 DEBUG[20916]: res_features.c:600 ast_bridge_call: Read from SIP/rafal-89b1 (1,42) -- Attempting native bridge of SIP/andrzej-0265 and SIP/rafal-89b1 Oct 17 15:52:23 DEBUG[20916]: rtp.c:190 send_dtmf: Sending dtmf: 50 (2), at 10.2.20.65 Oct 17 15:52:23 DEB...
2018 Aug 11
3
samba 4.5.12 DC and XP
I did, what you say, but xp still doesn't attach disks while logging in. Unfortunetelly I must make xp to work with Samba, because some customers still using xp. Regards Andrzej sob., 11 sie 2018 o 16:57 Rowland Penny via samba <samba at lists.samba.org> napisał(a): > On Sat, 11 Aug 2018 16:08:39 +0200 > Andrzej Gryko via samba <samba at lists.samba.org> wrote: > > > Hi, > > > > Sorry for my english. > > I configured Samba as...
2018 Aug 11
2
samba 4.5.12 DC and XP
In "domain group policy" I made same mappings of samba shares. On xp I only logged into domain. On win 10 shares are attached while logging in, but not on xp. Andrzej sob., 11 sie 2018 o 18:56 Rowland Penny via samba <samba at lists.samba.org> napisał(a): > On Sat, 11 Aug 2018 18:24:27 +0200 > Andrzej Gryko <andrzej.gryko at gmail.com> wrote: > > > I did, what you say, but xp still doesn't attach disks while logging > > in....
2017 Apr 25
0
Problems with S4 methods dispatching on `...` (aka dotsMethods)
...ot;x") # works as the non-generic version f() ## [1] missing 'a' setGeneric("f", signature = "...") # unexpectedly fails to find 'b' f() ## Error in print(a) : object 'b' not found Any chances of fixing this? Cheers, Andrzej On Fri, Apr 21, 2017 at 11:40 AM, Andrzej Ole? <andrzej.oles at gmail.com> wrote: > Great, thanks Michael for you quick response! > > I started off with a question on SO because I was not sure whether this > was an actual bug or I was just missing something obvious. I'm loo...
2018 Jul 27
2
Fwd: Fwd: Problem connecting to DC from windows 10. Failed to create user record ... acl: unable to get access to ...
There is no selinux, appamore in running processes, and I didn't touch linux firewall, so it is turned off. Andrzej pt., 27 lip 2018 o 10:14 Rowland Penny <rpenny at samba.org> napisał(a): > On Thu, 26 Jul 2018 23:03:19 +0200 > Andrzej Gryko via samba <samba at lists.samba.org> wrote: > > > I found the problem. I can login as administrator, but not as > > different user - I add...
2019 Sep 18
2
How to debug passes
Iulia, You need to check the contents of the hello.ll (or hello.bc) file rather than the input *.c file - ultimately that's what opt consumes. Try compiling without any optimisations: clang -O0 -emit-llvm -S hello.c -c -o hello.ll -Andrzej On 18/09/2019 11:34, iulia_s24 wrote: > Hi, > > Actually I copy-pasted step 5 from the article in which I found the > solution, in the text of the mail so that is why dummypass appears > instead of hello. I used hello instead of dummypass in my tries, but it > still doesn't d...
2020 Jun 12
2
[flang-dev] [cfe-dev] [RFC] Refactor Clang: move frontend/driver/diagnostics code to LLVM
...sharing and explain what existing code they would replace in flang (if any) and what benefits we gain by sharing them. In particular, these were mentioned previously: DiagnosticsEngine, SourceManager, SourceLocation, FileManager, VFS Thanks, Tim On 6/12/20, 3:25 AM, "flang-dev on behalf of Andrzej Warzynski via flang-dev" <flang-dev-bounces at lists.llvm.org on behalf of flang-dev at lists.llvm.org> wrote: External email: Use caution opening links or attachments FYI: this RFC will be discussed in the next Flang Technical Community call: http://lists.llvm.org/piperma...
2009 Feb 22
3
Which email clients support SMTP/IMAP via STDIN&STDOUT of proxy command?
Which email clients support SMTP/IMAP via STDIN&STDOUT of proxy command? I would like to be able to use local and remove dovecot to access maildir *without* running dovecot daemons. -- [pl>en: Andrew] Andrzej Adam Filip : anfi at onet.eu If the future navigation system [for interactive networked services on the NII] looks like something from Microsoft, it will never work. -- Chairman of Walt Disney Television & Telecommunications
2018 Jul 26
2
Fwd: Fwd: Problem connecting to DC from windows 10. Failed to create user record ... acl: unable to get access to ...
...the problem. I can login as administrator, but not as different user - I add different users by "samba-tool user add" or smapasswd and it's the same. Regards czw., 26 lip 2018 o 21:56 Rowland Penny <rpenny at samba.org> napisał(a): > On Thu, 26 Jul 2018 21:22:23 +0200 > Andrzej Gryko via samba <samba at lists.samba.org> wrote: > > > ---------- Forwarded message --------- > > From: Rowland Penny via samba <samba at lists.samba.org> > > Date: śr., 25 lip 2018 o 18:36 > > Subject: Re: [Samba] Fwd: Problem connecting to DC from windows 1...
2015 Aug 12
3
multiple messages per second to a single mailbox
On Aug 12, 2015, at 11:04 AM, Andrzej A. Filip <andrzej.filip at gmail.com> wrote: > > <..snip..> > Could you provide the following info: > a) mailbox type (maildir/mbox/dbox/...) maildir > [mail_location in dovecot's config] /srv/mail/<domain>/<user-mailbox>/ > b) file system type...
2018 Jul 28
2
Fwd: Fwd: Problem connecting to DC from windows 10. Failed to create user record ... acl: unable to get access to ...
...oin a domain, so thats why I coudn't do it as different user. If I join the domain and restert windows 10, I can login as differnet user. So it was my fault, I didn't know about it. Everything works ok. Now I must add some users to administrators group and create some scripts. Best regards Andrzej sob., 28 lip 2018 o 14:35 Rowland Penny via samba <samba at lists.samba.org> napisał(a): > On Sat, 28 Jul 2018 13:08:55 +0200 > Andrzej Gryko <andrzej.gryko at gmail.com> wrote: > > > I installed: > > Linux samba 4.9.0-6-amd64 #1 SMP Debian 4.9.88-1+deb9u1 (2018-...
2018 Dec 04
2
[PATCH 1/4] drm/edid: Pass connector to AVI inforframe functions
On Tue, Dec 04, 2018 at 08:03:53AM +0100, Andrzej Hajda wrote: > On 03.12.2018 22:48, Ville Syrjälä wrote: > > On Thu, Nov 29, 2018 at 09:46:16AM +0100, Andrzej Hajda wrote: > >> Quite late, hopefully not too late. > >> > >> > >> On 21.11.2018 12:51, Ville Syrjälä wrote: > >>> On Wed, Nov 21...