search for: au

Displaying 20 results from an estimated 20695 matches for "au".

Did you mean: aug
2023 Feb 28
1
"sh: doveadm: command not found" with doveadm -Dv backup -R
I?m moving from an old mail server to a new one. On the new one, trying to transfer mailboxes from the old machine using doveadm. It fails saying it can?f find doveadm: % sudo doveadm -Dv backup -R -u myuser at bordo.com.au remote:mail.bordo.com.au Password: Debug: Loading modules from directory: /usr/local/lib/dovecot/doveadm Debug: Skipping module doveadm_acl_plugin, because dlopen() failed: dlopen(/usr/local/lib/dovecot/doveadm/lib10_doveadm_acl_plugin.so, 0x000A): symbol not found in flat namespace '_acl_backe...
2005 Jul 24
2
ssl_cipher_list
Hi, I have noticed the 'ssl_cipher_list' directive in the 1.0-test snapshots which is not in 0.99. It's default value seems to be "all:!low". However, this would not be compatible with openssl's cipher listing format. Thus, I would vote to change it's format to be openssl compatible. To be compatible, it has to be changed to "ALL:!LOW" (just upercased in this case). IMO, this wo...
2014 Sep 10
1
Unable to join new domain controller to Samba4 domain
...s the join. Replication to the currently joined servers is working fine, as reported by "samba-tool drs showrepl" In the past, I extended the Samba4 schema to allow for our groupware SOGo server to load calendar resources from AD (http://wiki.sogo.nu/ResourceConfiguration). This did not cause me any grief at the time, but the object that is generating the errors is one of the calendar resources that I have created. Below is the output from the attempted domain join # samba-tool domain join hq.domain.com.au DC -Uadministrator --realm=hq.achievecorp.com.au --dns-backend=BIND9_DLZ Find...
2006 May 03
1
[LLVMdev] Patch for transform dependencies
...include "llvm/Instructions.h" @@ -32,7 +33,15 @@ namespace { /// modifies the CFG! class LowerSwitch : public FunctionPass { public: - bool runOnFunction(Function &F); + virtual bool runOnFunction(Function &F); + + virtual void getAnalysisUsage(AnalysisUsage &AU) const { + // This is a cluster of orthogonal Transforms + AU.addPreserved<UnifyFunctionExitNodes>(); + AU.addPreservedID(PromoteMemoryToRegisterID); + AU.addPreservedID(LowerSelectID); + } + typedef std::pair<Constant*, BasicBlock*> Case; typedef std::v...
2009 Apr 29
1
etch AMD64 debs missing
Thanks Piet & Johannes for the backports. There seems to be a problem with the files for the amd64 architecture getting out. Here is my apt-get update Get:1 http://cran.ms.unimelb.edu.au etch-cran/ Release.gpg [189B] Hit http://cran.ms.unimelb.edu.au etch-cran/ Release Ign http://cran.ms.unimelb.edu.au etch-cran/ Packages/DiffIndex Ign http://cran.ms.unimelb.edu.au etch-cran/ Packages Get:2 http://ftp.au.debian.org etch Release.gpg [394B] Get:3 http://ftp.au.debian.org testing Rele...
2005 Sep 05
2
[LLVMdev] Pass is not automatically registered
...;Dependence Analysis"); I traced into struct RegisterAnalysis ctor, but my pass doesn't appear. I put it in an anonymous namespace, it doesn't work too. The class definitions: class DependenceAnalyzer : public MachineFunctionPass { virtual void getAnalysisUsage(AnalysisUsage &AU) const { AU.setPreservesAll(); AU.addRequired<LiveIntervals>(); AU.addRequired<LiveVariables>(); MachineFunctionPass::getAnalysisUsage(AU); } class RegAllocMultibank : public MachineFunctionPass { virtual void getAnalysisUsage(AnalysisUsage &AU) const {...
2020 Nov 08
4
Can't join domain (LDAP error)
Hi, I'm trying to set up an AD DC in an iocage jail on FreeBSD (to avoid the issues of having the DC a file server) but I'm running into some trouble. I've setup Kerberos and can kinit OK: root at samba-addc:/ # kinit administrator administrator at BEGER.COM.AU's Password: root at samba-addc:/ # klist Credentials cache: FILE:/tmp/krb5cc_0 Principal: administrator at BEGER.COM.AU Issued Expires Principal Nov 8 15:51:22 2020 Nov 9 01:51:22 2020 krbtgt/BEGER.COM.AU at BEGER.COM.AU However when I try and join t...
2008 Feb 20
3
change in AD authentication behaviour since 3.0.24
We have noticed a change in the way AD authentication behaves starting with 3.0.25. Ive been hoping it was a bug and someone would notice and fix it. But since its still there as of 3.0.28, I guess its a feature :-). Anyway, our users on XP machines used to be able to authenticate against AD with just a username/password eg u1234567. But...
2000 Nov 01
5
Performance note: Preallocating helps? and two questions
hi- in r 1.1 on windows 2000 with length(AU) of 35833 AUcap30<-0 for(i in 1:length(AU))AUcap30[i]<-min(30,AU[i]) took over an hour on pentium II 300 mhertz (I esc'ed before it finished) but AUcap30<-AU for(i in 1:length(AU))AUcap30[i]<-min(30,AU[i]) is very quick (a few seconds) Is this performance difference common in...
2000 Nov 01
5
Performance note: Preallocating helps? and two questions
hi- in r 1.1 on windows 2000 with length(AU) of 35833 AUcap30<-0 for(i in 1:length(AU))AUcap30[i]<-min(30,AU[i]) took over an hour on pentium II 300 mhertz (I esc'ed before it finished) but AUcap30<-AU for(i in 1:length(AU))AUcap30[i]<-min(30,AU[i]) is very quick (a few seconds) Is this performance difference common in...
2008 Sep 24
1
FW: My Contact Details in B'lore
Srinivas sastry contact details ________________________________ From: Srinivas_Manda at sta.nsw.gov.au [mailto:Srinivas_Manda at sta.nsw.gov.au] Sent: Wednesday, 24 September 2008 11:44 AM To: Harry Sukumar Subject: My Contact Details in B'lore Home: +90-80-26681118 Mob: +91-9986032562 Regards, Srinivas Manda Graduate Engineer Fleet Systems State Transit Authority Lvl 1, 219-241 Cleve...
2012 Mar 23
3
[LLVMdev] Function Pass Manager
Hi, I'm writing a function pass which is dynamically loaded by opt and I need some analysis and passes to be run before my pass: virtual void getAnalysisUsage(AnalysisUsage &AU) const { AU.addRequired<LoopInfo>(); AU.addPreserved<LoopInfo>(); AU.addRequiredID(LoopSimplifyID); AU.addPreservedID(LoopSimplifyID); AU.addRequiredID(LCSSAID); AU.addPreservedID(LCSSAID); AU.addRequired<ScalarEvolution>();...
2002 Dec 01
1
[LLVMdev] PassManager error message hard to decipher
...m to be legal dependencies. Here is the situation. We have 5 passes, RegisterAllocator, FunctionLiveVarInfo, CoalesceCopies, DominanceForest, and UnionSSAVars, with dependencies as follows: class RegisterAllocator : public FunctionPass { . . . virtual void getAnalysisUsage(AnalysisUsage &AU) const { AU.addRequired<FunctionLiveVarInfo>(); AU.addRequired<CoalesceCopies>(); } . . . }; class FunctionLiveVarInfo : public FunctionPass { . . . virtual void getAnalysisUsage(AnalysisUsage &AU) const { AU.setPreservesAll(); } . . . }; class CoalesceCopies : publ...
2010 Oct 18
1
questions on unstack()
Folks, I have the following dataframe: > x <- structure(list(name = c("EU B", "EU B", "EU B", "EU B", "EU B", "EU B", "AU A", "AU A", "AU A", "AU A", "AU A", "AU A"), date = c("2010-10-11", "2010-10-12", "2010-10-13", "2010-10-14", "2010-10-15", "2010-10-18", "2010-10-11", "2010-10-12&quo...
2015 Jul 29
1
[LLVMdev] Loop Dependence Analysis(getDistance())
...am trying to use the DependenceAnalysis pass to get the Distance vector for the innermost loop. I am in LLVM learing process. I have used the following code inside my original code to get the distance vector. It is not giving any syntax error but it is has some logical but and giving segmentation fault. void getAnalysisUsage(AnalysisUsage &AU) const { AU.setPreservesAll(); AU.addRequired<PostDominatorTree>(); AU.addRequired<LoopInfo>(); AU.addRequired<DependenceAnalysis>(); AU.addPreserved<DependenceAnalysis>(); AU.addRequire...
2016 Jan 22
4
LLVM - getAnalysisUsage()
Hi, I am using llvm-3.8 for my project. Following is my getAnalysisUsage() method: virtual void getAnalysisUsage(AnalysisUsage &AU) const override { AU.setPreservesAll(); AU.addRequired<X>(); AU.addRequired<Y>(); AU.addRequired<Z>(); } Now, if I call getAnalysis<X>(*F), instead of invoking just the X pass, all the passes, i.e., X, Y and Z are being invoked. Could anyone help me in this rega...
2014 Feb 14
1
Cached message size larger than expected
Hi guys, I recently turned on IMAP zlib compression for Maildir and noticed that I've started getting these errors in the maillog. Error: Cached message size larger than expected (1627 > 1548) Error: Maildir filename has wrong S value, renamed the file from /home/crc.id.au/netwiz/.System Generated.Cron Jobs/cur/1392224150.M52270P1073.mail.crc.id.au,S=1627:2,S,Z to /home/crc. id.au/netwiz/.System Generated.Cron Jobs/cur/1392224150.M52270P1073.mail.crc.id.au,S=1627:2,S,Z Error: Corrupted index cache file /home/crc.id.au/netwiz/.System Generated.Cron Jobs/dovecot.index....
2008 May 31
2
tolstoi.newcastle dead?
Anyone know what's up w/ tolstoi.newcast.edu.au (home of the threaded R-help archives)? I've got a "can't connect" for several days now. Carl
2004 Jul 07
0
Permission denied (if57@student.qut.edu.au)
You have attempted to send a message to a list to which you are not authorised. Your message has been discarded. QUT Help Desk (Postmaster) helpdesk@qut.edu.au Ph: +61 7 3864 4000 --- Original Message --- Received: from mail-router01.qut.edu.au (IDENT:mirapoint@mail-router01.qut.edu.au [131.181.254.7]) by copperhead.qut.edu.au (8.11.6/8.11.6) with ESMTP id i678hKJ...
2012 Aug 06
3
[LLVMdev] How to call some transformation passes (LoopRotate and LoopUnroll) from my own pass
...erfectly. However, what I really want is to produce the **same behavior** but from my own pass (i.e., I don't want to use opt). I wrote a Module pass which already calls other analysis and transformation passes in its getAnalysisUsage method: void MyPass::getAnalysisUsage(AnalysisUsage& AU) const { AU.addRequired<LoopInfo>(); AU.addPreserved<LoopInfo>(); AU.addRequiredID(LoopSimplifyID); AU.addPreservedID(LoopSimplifyID); AU.addRequiredID(LCSSAID); AU.addPreservedID(LCSSAID); } However, I couldn't figure out how to call the LoopRotate and LoopUnroll p...