Displaying 20 results from an estimated 4000 matches similar to: "doveadm import with subfolder oddity"
2014 May 12
1
ntlm_auth Access Denied
Hi
I am having problem with ntlm_auth with 2012 AD. Following are my samba
version and the smb.conf file.
I have been testing this all day and always get this. however kinit -V
username can authenticate and verified. anyone has similar issue please
right me in right direction ?
ntlm_auth --request-nt-key --domain=TEST --username=testuser
password:
NT_STATUS_ACCESS_DENIED: Access denied
2010 Oct 25
2
[LLVMdev] Prevent instruction elimination
Devang Patel wrote:
>
>
> What are you going to do if "optimized LLVM code" is hoisted above or
> sinked below LLVM_dummy_inst by the optimizer ? It seems you are looking
> for a way communicate some info for a block of instructions. If that is
> the case then one solution is to extract interesting block of instructions
> in a separate function and make sure that
2010 Oct 25
0
[LLVMdev] Prevent instruction elimination
On Oct 25, 2010, at 12:09 PM, Xinfinity wrote:
>
>
> Devang Patel wrote:
>>
>>
>> What are you going to do if "optimized LLVM code" is hoisted above or
>> sinked below LLVM_dummy_inst by the optimizer ? It seems you are looking
>> for a way communicate some info for a block of instructions. If that is
>> the case then one solution is to
2010 Oct 26
2
[LLVMdev] Prevent instruction elimination
Hello,
Devang Patel wrote:
>
>
> On Oct 25, 2010, at 12:09 PM, Xinfinity wrote:
>
>> #pragma my_pragma{
>> code
>> }
>
>> I use a map
>> (source_location, pragma) and I insert the dummy instruction when this
>> location is reached in the code generator. It seems difficult to attach
>> the
>> metadata to the first and the last
2010 Feb 02
2
Subset and plot
Here is a runable program. When I plot Day and Wgt, it graphs all the data
points. All I need is daily.sub1 plotted. I also need each "Tanks" to have
its own col or pch. When I run it with the line with pch, it gives me
nothing.
rm(list=ls())
Trial<-rep(c(1,2),each=12)
Tanks=rep(c("a3","a4","c4","h4"),each=3,2)
Day=rep(c(1:12),2)
2013 Nov 16
16
[PATCH] BTRFS-PROG: recursively subvolume snapshot and delete
Hi All,
the following patches implement the recursively snapshotting and
deleting of a subvolume.
To snapshot recursively you must pass the -R switch:
# btrfs subvolume create sub1
Create subvolume ''./sub1''
# btrfs subvolume create sub1/sub2
Create subvolume ''sub1/sub2''
# btrfs subvolume snapshot -R sub1 sub1-snap
Create a snapshot of
2013 Aug 05
2
Fileoperations in Maildir – problematic or okay?
Hi,
I'm wondering: Is it a problem to move and delete files inside a dovecot-managed maildir?
For example:
I have a folder ~/.maildir/.Sub1.Start/cur and a folder ~/.maildir/.Sub1.Start.old/cur
and like to regularly move old mails from the first to the second one.
Can you create a cron job saying something like:
find ~/.maildir/.Sub1.Start/cur -mtime +5 -exec mv {}
2020 Nov 19
1
Problems with undef subranges in identity copies
Hi,
I'm stuck trying to fix a variety of problems that occur with undef
subregisters when the register coalescer eliminates identity
copies. The fundamental problem is complexity from the fact that undef
values are a special case since they don't have an associated
VNInfo/Segment unless the value is used across blocks.
For example, in this case, %0 has 2 subregisters sub0 and sub1:
2018 Oct 02
3
outlook idiocy - IMAP folders with /
On 2018-10-01 04:07, Timo Sirainen wrote:
>
> https://wiki2.dovecot.org/Plugins/Listescape?maybe?
It should be mentioned somehow that one can't just change the hierarchy
separator on the fly (without manual changes to the fs).
If you used . as the separator, it would look this in the filesystem:
.testfolder.sub1
Now you change the separator to $.
Your mail client will see the existing
2017 May 16
2
Bug in TableGen RegisterBankEmitter
On 05/16/2017 11:57 AM, Daniel Sanders wrote:
>> If that's right, one possible fix would be to rename some of the subregister indices but that's likely to be quite painful. I'll have a think and see if I can come up with something nicer.
>
> I haven't been able to come up with a better answer for this, just an alternate choice as to where the complexity is. If we were
2015 Jul 27
2
doveadm import - strange warning
Am 27.07.2015 um 10:51 schrieb Ralf Hildebrandt:
> Anybody seen this before?
> Seems easy to reproduce...
>
> * Ralf Hildebrandt <r at sys4.de>:
>> I'm using the doveadm import command to extract mails from my backup:
>>
>> % doveadm import -u restore at backup.invalid mdbox:/home/copymail/mdbox "" \
>> mailbox INBOX header Delivered-To
2006 Mar 23
1
comparative density estimates
I have two series of events over time and I want to construct a graph of the
relative frequency/density of these events that allows their
distributions to
be sensibly compared. The events are the milestones items in my project on
milestones in the history of data visualization [1], and I want to
compare trends
in Europe vs. North America.
I decided to use a graph of two overlaid density
2016 Mar 18
2
LLVM IR temporary variable reuse
For eg:
c=a-b is represented using the following statements in IR:
%tmp = load i32, i32* %a, align 4
%tmp1 = load i32, i32* %b, align 4
%sub = sub nsw i32 %tmp, %tmp1
store i32 %sub, i32* %c, align 4
whenever there is a redundant computation of the same, say k=a-b (if the
value of *a* and *b* are not changed) the code will be like this:
%tmp2 = load i32, i32* %a, align 4
%tmp3 =
2008 Jul 09
2
sorting a data frame by rownames
Hi there,
I'm sure there's an easy answer to this, and I can't wait to see it.
The question: is there an easy way to sort a data frame by it's row names?
My dilemma:
I've had to pull apart a data frame, run it through a loop to do some
calculations and generate new variables, and then re-construct the chunks
back into a data frame at the end.
Doing this preserves the row
2010 May 13
5
mdbox: Cannot create subfolder called "dbox-Mails" (2.0beta5)
I am trying out "mdbox" under Dovecot 2.0beta5.
Looking in the "mailboxes" directory under the mdbox storage root
("~/dbox" in my case), I can see that the mail folders are mapped into
filesystem directories.
But Dovecot seems to put all the message list information
("dovecot.index.cache", "dovecot.index.log") for any given mail folder
into a
2006 Aug 08
9
Handling userland char ** pointers
I''ve been trying to get access to a userland string that''s behind a
second level pointer using DTrace, but I can''t seem to get it to work.
I started with the example on the Team DTrace Tips and Tricks slides:
trace(copyinstr(*(uintptr_t *)copyin(arg0, curpsinfo->pr_dmodel ==
PR_MODEL_ILP32 ? 4 : 8)));
And when I couldn''t get it to work, I started
2019 Sep 02
2
virtual subregister liveness?
On Fri, 2019-08-30 at 10:03 -0700, Quentin Colombet wrote:
> > On Aug 30, 2019, at 8:31 AM, Jesper Antonsson via llvm-dev <
> > llvm-dev at lists.llvm.org> wrote:
> >
> > Hi,
> >
> > After dead-mi-elimination I'm experiencing a machine verifier
> > failure
> > at this virtual subregister write:
> >
> > %5.sub1 = COPY undef
2018 Jan 30
3
Disable spilling sub-registers in LLVM
Hi Quentin,
Let me clarify if I understood this correctly.
If the accesses (writes and reads) to sub-registers are expressed always
as sub-registers of the super-register register class (e.g.,
SuperReg.sub1;), then the spilling decision is for the super register.
But, if the accesses are in terms of the register class of the
sub-registers directly (SubReg;), then the spilling decision will
2016 Aug 23
2
How to describe the RegisterInfo?
Yes, the arch is just as you said, something like AMD GPU, but Intel GPU
don't have separate register file for 'scalar/vector'.
In fact my idea of defining the register tuples was borrowed from
SIRegisterInfo.td in AMD GPU.
But seems that AMD GPU mainly support i32/i64 register type, while Intel
GPU also support byte/short register type.
So I have to start defining the registers from
2019 Aug 15
2
2.3.7 + stats
Is there any additional documentation/information around the new stats
module.
Have added some metrics just to see what they produce
##
## Metrics
###
metric imap {
??? event_name = imap_command_finished
??? #source_location = example.c:123
??? #categories =
??? fields = name args running_usecs bytes_in bytes_out
??? #filter {
??? #??? field_key = wildcard
??? #}
}
metric sql {
???