search for: store1

Displaying 18 results from an estimated 18 matches for "store1".

Did you mean: store
2013 Nov 08
1
Problem with master user
Hello. I have problem as below: Nov 8 10:41:52 store1 dovecot: auth: Debug: auth(master at example.com,::1,master,</qEuMafqyAAAAAAAAAAAAAAAAAAAAAAB>): Master user lookup for login: jkrzyz at example.com Nov 8 10:41:52 store1 dovecot: auth: Debug: passwd-file(master at example.com,::1,master,</qEuMafqyAAAAAAAAAAAAAAAAAAAAAAB>): lookup:...
2006 Dec 06
3
File size differences
...ID controller is 3ware escalade and each disk member in the RAID 5 array are 400Gb IDE. Now the wierd part is, after syncing the failover with the master and comparing the size of each dir and file I find some files where the size mismatches.. [root at storage-master repositories]# du --si "/store1/SystemAdministration-OldVideos/SysAd Training/Technology Basics/000_READ_ME_FIRST_FOR_INDEX_OF_VIDEOS.txt" 8.2k /store1/SystemAdministration-OldVideos/SysAd Training/Technology Basics/000_READ_ME_FIRST_FOR_INDEX_OF_VIDEOS.txt root at storage-slave compare]# du --si "/store1/SystemAdmi...
2003 Apr 02
1
FW: ipDialog Ethernet SIP Phone $199
...e I haven't seen before. Does anyone have any experience with this one? -----Original Message----- From: George Richardson [mailto:georger@netxusa.com] Sent: Wednesday, April 02, 2003 4:56 PM To: clay@ctitec.com Subject: ipDialog Ethernet SIP Phone $199 pad <http://us.st1.yimg.com/store1.yimg.com/Img/trans_1x1.gif> <http://store1.yimg.com/I/sysconfig_1733_51893> <http://store1.yimg.com/I/sysconfig_1733_14909> Click to enlarge$199.00 ipDialog SipTone Ethernet Phone <http://store1.yimg.com/I/sysconfig_1733_0> The ipDialog SipToneT Ethernet phone is a c...
2011 Jul 29
1
Can't see shares...
I can't figure out what's wrong with my config, I can see the share \\beata\anders, but not store0 or store1; # smb.conf is the main Samba configuration file. You find a full commented # version at /usr/share/doc/packages/samba/examples/smb.conf.SUSE if the # samba-doc package is installed. # Date: 2011-03-01 [global] workgroup = NORRBRING passdb backend = tdbsam # printing = cup...
2016 Nov 17
2
Possible MemCpyOpt bug?
...yOpt (MCO) into an incorrect transform, but I would like to confirm the validity of my counterexample before working on the fix. Suppose the following IR: %T = type { i32, i32 } define void @f(%T* %a, %T* %b, %T* %c, %T* %d) { %val = load %T, %T* %a, !alias.scope !{!10} ; store1 ; Aliases the load store %T { i32 22, i32 22 }, %T* %b, !alias.scope !{!11} ; store2 ; Aliases the store below and the load. No-alias with above store store %T { i32 44, i32 44 }, %T* %c, !alias.scope !{!12}, !noalias !{!11} ; store3...
2013 Dec 16
2
[LLVMdev] Question about Pre-RA-schedule in LLVM3.3
...dependence will disappear, this sequence instructions would be executed with less stalls and cycles. However, in the latest version of LLVM, the Pre-RA-sched builds a scheduling graph(original graph) which is shown following. //original graph ----> data flow ====> control flow load1 ----> store1 ====> load2 ----> store2 ====> load3 ----> store3 //end original graph So, Pre-RA-sched is unable to schedule apart load/store instruction pair. Due to LiveRange in the Register Allocation stage, all load/store instruction pair are allocated the same register. If we change the control...
2013 Dec 15
3
[LLVMdev] Question about Pre-RA-schedule in LLVM3.3
...oint in BuildSchedGraph function in ScheduleDAGSNodes.cpp to debug the source code. Then I get schedule graph of this basic block: Like the above graph, Pre-RA-sched(ScheduleRRList.cpp) is unable to insert the 3th SDNode(load2 instruction) between the first SDNode(load1 Instruction) and the second store1 SDNode. Then in the register allocation step, the pair instruction are allocated same register. However, if we build a schedule graph like the following: I think that Pre-RA-sched has change to schedule apart load1 and store1, the same to load2 and store2. Have someone considered building such a...
2013 Dec 21
0
[LLVMdev] Question about Pre-RA-schedule in LLVM3.3
...t; this sequence instructions would be executed with less stalls and cycles. > However, in the latest version of LLVM, the Pre-RA-sched builds a scheduling graph(original graph) which is shown following. > //original graph > ----> data flow > ====> control flow > load1 ----> store1 ====> load2 ----> store2 ====> load3 ----> store3 > //end original graph > So, Pre-RA-sched is unable to schedule apart load/store instruction pair. > Due to LiveRange in the Register Allocation stage, all load/store instruction pair are allocated the same register. > >...
2013 Dec 15
0
[LLVMdev] Question about Pre-RA-schedule in LLVM3.3
> From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] > On Behalf Of Haishan > Subject: [LLVMdev] Question about Pre-RA-schedule in LLVM3.3 > My clang version is 3.3 and debug build. > //test.c > int a[6] = {1, 2, 3, 4, 5, 6} > int main() { >  a[0] = a[5]; >  a[1] = a[4]; >  a[2] = a[5]; > } > //end test.c > Then test.dump is
2008 Apr 21
2
Dovecot timeout over NFS
Hi, I'm using postfix with Dovecot 1.0.5 and getting the following errors when a user moves a massive folders contents to trash (65000 or so messages): Apr 21 15:31:01 mink dovecot: IMAP(dev2 at aluminati.net): Timeout while waiting for lock for transaction log file /virtual/store1/mail/d/dev2_aluminati.net/Maildir/.Deleted Items/dovecot.index.log Is there anything I can do to compensate for situations like this? Thanks Guy -- Don't just do something...sit there!
2012 Apr 04
2
Using rsync to synchronize
...-BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello, I have been using rsync to backup our primary data stores. It works fine. Here are the options I use for doing that: rsync --recursive --links --times --dirs --stats --delete \ --itemize-changes --quiet --exclude-from=exclude-filename \ /data-store1/ /data-store2/ Recently I have had the need to actually synchronize the files between two data stores. That is, whichever data store has the newest timestamp updates the other data store. What are some recommended ways for using rsync to synchronize two data stores? - -- James Moe moe dot ja...
2013 May 10
2
Self-heal and high load
...pervisor. All our systems are CentOS 5 Gluster 3.3.1 (I've also tried 3.3.2) gluster02 ~ gluster volume info rmfs Volume Name: volume1 Type: Replicate Volume ID: 3fef44e1-e840-452e-b16b-a9fc698e7dfd Status: Started Number of Bricks: 1 x 2 = 2 Transport-type: tcp Bricks: Brick1: gluster01:/mnt/store1 Brick2: gluster02:/mnt/store1 Options Reconfigured: nfs.disable: off auth.allow: 172.30.98.* network.ping-timeout: 5 Any help or suggestions would be greatly appreciated. If you need anything else from me, just ask. Thanks, Darren -------------- next part -------------- An HTML attachment was sc...
2006 Apr 20
0
Tvs Plasma notebboks E-gold apy
...;<a href="http://www.importbrasil.net/detalhe/tv3.html"><img style="border: 0px solid ; width: 120px; height: 86px;" alt="Panasonic 65" HD Plasma Display TH-65PHD8UK" title="Panasonic 65" HD Plasma Display TH-65PHD8UK" src="http://store1.yimg.com/I/yhst-98920216337151_1891_175751"></a><br> <br> &nbsp; <a href="http://www.importbrasil.net/detalhe/tv1.html">&nbsp;Panasonic 37" Plasma</a> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &am...
2008 Aug 05
1
Corrupted transaction logs
Hi, I'm getting a lot of the following messages in my mail.err log. Jul 12 11:25:51 mink dovecot: IMAP(user1 at domain1.net): Corrupted transaction log file /virtual/store1/mail/u/user1_domain1.net/Maildir/.Sent/dovecot.index.log: Append with UID 925, but next_uid = 926 Jul 12 12:44:56 mink dovecot: IMAP(user2 at domain1.net): Corrupted transaction log file /virtual/store2/mail/u/user2_domain1.net/Maildir/.Trash/dovecot.index.log: Append with UID 4927, but next_uid =...
2011 Jan 12
1
Question about lda & auth_socket_path
...5:49 /var/run/dovecot/auth-userdb Using dovecot-lda for mail delivery or doveadm for user inquirement fails: via debug_log_path: ------------------- Jan 12 16:04:14 auth: Debug: Loading modules from directory: /dovecot/code/dovecot-2.0.8/lib/dovecot/auth Jan 12 16:04:14 auth: Debug: passwd-file /store1/db/masterusers.passwd: Read 1 users Jan 12 16:04:14 auth: Debug: master in: USER 1 djahnke service=lda Jan 12 16:04:14 auth: Debug: password(djahnke): passdb doesn't support credential lookups Jan 12 16:04:14 auth: Debug: master out: FAIL 1 Jan 12 16:04:14 lda: Debug: auth input: vi...
2009 May 21
0
[LLVMdev] [PATCH] Add new phase to legalization to handle vector operations
On Wed, May 20, 2009 at 4:55 PM, Dan Gohman <gohman at apple.com> wrote: > Can you explain why you chose the approach of using a new pass? > I pictured removing LegalizeDAG's type legalization code would > mostly consist of finding all the places that use TLI.getTypeAction > and just deleting code for handling its Expand and Promote. Are you > anticipating something more
2009 May 20
2
[LLVMdev] [PATCH] Add new phase to legalization to handle vector operations
On May 20, 2009, at 1:34 PM, Eli Friedman wrote: > On Wed, May 20, 2009 at 1:19 PM, Eli Friedman > <eli.friedman at gmail.com> wrote: > >> Per subject, this patch adding an additional pass to handle vector >> >> operations; the idea is that this allows removing the code from >> >> LegalizeDAG that handles illegal types, which should be a significant
2009 May 21
2
[LLVMdev] [PATCH] Add new phase to legalization to handle vector operations
...ake a 64-bit buffer, and use it to build an FILD. + SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64); + SDValue WordOff = DAG.getConstant(4, getPointerTy()); + SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl, + getPointerTy(), StackSlot, WordOff); + SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op, StackSlot, NULL, 0); + SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32), + OffsetSlot, NULL, 0); + return BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG); } std::pair<SDValue,SDValue> X86Targ...