search for: workarea

Displaying 20 results from an estimated 45 matches for "workarea".

2006 Dec 08
4
Patch to wobbly snap for outputs
Here's a patch to wobbly.c to handle edge snapping with multiple outputs... Also, I tweaked the window edge snapping to include dock window types, to support the case where dock windows may be on the inner edges of multiple monitors (and thus currently ignored as struts in the output workarea setup). I personally think we should include these "inner" struts when calculating the workarea for each output (which also helps window maximizing), and only ignore them in the screen workarea case (for the _NET_WORKAREA hint). Any reason that wouldn't make sense? ...MC ----------...
2006 Nov 07
1
Set workarea per output (instead of screen)?
Hey, I'm thinking about the addition of the getWorkareaForOutput method, and I'm wondering if it wouldn't make sense to define the workarea as part of the CompOutput struct and set it up as part of (or replacing?) the updateWorkareaForScreen call. Either that or make the call to getWorkareaForOutput redo the extents calculation on the windows w...
2008 May 14
0
NFS subdirectory on client is out of sync
...but it was just as if I was working on a local disk. Other users did not experience any problem on this machine so it was only one sub-directory (and everything below). I checked the syslog both on the client and on the server, but no messages of interest. [root at arend ~]# stat /home/stbo/workarea/toekan/design/dig/vhdl/fpga/fpga_top.vhd File: `/home/stbo/workarea/toekan/design/dig/vhdl/fpga/fpga_top.vhd' Size: 53214 Blocks: 112 IO Block: 4096 regular file Device: fd01h/64769d Inode: 6614395 Links: 1 Access: (0664/-rw-rw-r--) Uid: ( 635/ stbo) Gid: (...
2009 May 14
2
Problem booting Xen DomU images under Ubuntu Jaunty (Dom0 working nicely)
...2.6.26-15_i386.deb. The DomU kernel is one I compiled myself a while ago (sometime last year and has always worked on Gentoo and I think even Centos) Unfortunately, there seems to be a problem with the DomU not recognizing the virtual disk image. /etc/xen/ubuntu looks like this: kernel = "/workarea/xen/kernels/vmlinuz" memory = 1024 name = "ubuntu" vif = [ '''' ] dhcp = "dhcp" disk = [''tap:aio:/workarea/xen/images/ubuntu.img,sda1,w'', ''tap:aio:/workarea/xen/images/swapubuntu.img,sda2,w''] root = "/dev/sda1...
2004 Aug 11
0
pam_mount issue
...having a local account, authentication being handled by PDC and this works successfully. ?If I login as an ordinary user, (one who is just a member of the users group), and access a shell prompt, I can mount my NT share with the command :- /usr/bin/smbmount //SERVER2/martin /home/RMNETNT/martin/WORKAREA -o "username=martin" I am prompted for my password, which I enter, and I can then see the files that live on the NT file server. ?I cannot get this mount to happen automatically with pam_mount however. ?I have debug enabled in /etc/security/pam_mount.conf and the two other "inte...
2012 Jan 26
2
[LLVMdev] HELP - tblgen -gen-asm-matcher restrictions on .td content
...n-dag-isel) tablegen(LLVM MipsGenCallingConv.inc -gen-callingconv) tablegen(LLVM MipsGenSubtargetInfo.inc -gen-subtarget) add_public_tablegen_target(MipsCommonTableGen) When I started trying to generate MipsGenAsmMatcher.inc for the assembler I started getting errors. tblgen -gen-asm-matcher -I ~/workarea/asm/llvm/include/ Mips.tdIncluded from Mips.td:24: MipsInstrInfo.td:833:14: error: Instruction 'LWL' has no tokens defm LWL : LoadUnAlign32<0x22>; How does it get a token? Commenting out this code I got farther and found that a register that didn't have a formal def in Mips...
2008 Feb 28
0
Sortable scroll offset
I am experiencing a problem with scroll when dragging items to my drop area. I tried using the scroll option, looked through other forum disscussions but I have not been able to find a solution. I have a side by side layout where i drag elements from myTable into dropZone. The workArea div has overflow: scroll enabled. My problem is when the list becomes long and I have to scroll down to get to a dropZone. Everything is fine until it gets to a dropZone and then the element I am dragging shifts up to the top. <div id="workArea"> <div id="dropZone"&g...
2017 Dec 19
4
A code layout related side-effect introduced by rL318299
...Z1fv() unreachable return: ; preds = %while.body ret i8* %p3 } The only difference between a.ll and b.ll is the basicblock cleanup.cont. -------------------------- a.ll after loop rotate, same as a.ll before loop rotate ---------------------------- ~/workarea/llvm-r318298/dbuild/bin/opt -loop-rotate -S < a.ll ; ModuleID = '<stdin>' source_filename = "<stdin>" @i = global i8 0, align 1 declare void @_Z1fv() local_unnamed_addr define i8* @_Z1gPcS_S_(i8* nocapture readonly %d, i8* %h, i8* readnone returned %p3) local_un...
2017 Dec 19
2
A code layout related side-effect introduced by rL318299
...; preds = %while.body >> ret i8* %p3 >> } >> >> The only difference between a.ll and b.ll is the basicblock cleanup.cont. >> >> -------------------------- a.ll after loop rotate, same as a.ll before >> loop rotate ---------------------------- >> ~/workarea/llvm-r318298/dbuild/bin/opt -loop-rotate -S < a.ll >> >> ; ModuleID = '<stdin>' >> source_filename = "<stdin>" >> >> @i = global i8 0, align 1 >> >> declare void @_Z1fv() local_unnamed_addr >> >> define i8* @_Z1g...
2009 Nov 16
5
how to mount domU images on dom0
how to mount the domU images on dom0 to chroot them mount it on the dom0 and chroot to it. I am getting an error xen console mydomU _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2011 Sep 13
4
[LLVMdev] git Status Update?
...on of "branches of patches" ;-). > > I manage my patches with "git rebase -i", which allows me to edit, > combine, reorder, discard my local commits relatively easily. See for > example: But none of this explains how to prevent false conflicts when updating your git workarea from the svn git mirror. The problem is that dcommit changes the hash from what's in your local repository to something different. When you then update from the git mirror, you get a conflict because two commits with different hashes have the same file contents....
2012 Feb 03
0
[LLVMdev] HELP - tblgen -gen-asm-matcher restrictions on .td content
...GenCallingConv.inc -gen-callingconv) > tablegen(LLVM MipsGenSubtargetInfo.inc -gen-subtarget) > add_public_tablegen_target(MipsCommonTableGen) > > When I started trying to generate MipsGenAsmMatcher.inc for the assembler I started getting errors. > > tblgen -gen-asm-matcher -I ~/workarea/asm/llvm/include/ Mips.tdIncluded from Mips.td:24: > MipsInstrInfo.td:833:14: error: Instruction 'LWL' has no tokens > defm LWL : LoadUnAlign32<0x22>; > > How does it get a token? > >From the assembly string used by the instruction printer. That's saying...
2007 Mar 03
1
My current directory is lost in a bash shell
...vink layout]$ nc script/xw_functions.ample NEdit: getcwd() fails: No such file or directory NEdit: getcwd() fails: No such file or directory [thba at vink layout]$ ll script/xw_functions.ample -rw-rw-r-- 1 thba thba 16829 Oct 25 16:59 script/xw_functions.ample [thba at vink layout]$ pwd /home/thba/workarea/colibri/design/ana/layout [thba at vink layout]$ /bin/pwd /bin/pwd: cannot get current directory: No such file or directory This error occurs in a bash shell on a regular basis. The funny thing is that I can just access the file by cat: cat script/xw_functions.ample works fine (I get the conten...
2017 Aug 02
3
[InstCombine] Simplification sometimes only transforms but doesn't simplify instruction, causing side effect in other pass
...te extra mov in TwoAddressInstruction pass for it. After instcombine, %conv.i's live range is extended, both %and7.i and %conv.i are alive after the "and" instruction, so TwoAddressInstruction pass will generate an extra mov for %and7.i = and i32 %conv.i. *** After instcombine: *** ~/workarea/llvm-r309240/rbuild1/bin/opt -instcombine -S < a.ll > b.ll; cat b.ll @a = global i64 0, align 8 @b = global i32 0, align 8 define i32 @_Z25InternalUncompressAllTagsv(i16* %arrayidx) local_unnamed_addr { entry: %t1 = load i16, i16* %arrayidx, align 2 %conv.i = zext i16 %t1 to i32 %and.i...
2017 Aug 02
3
[InstCombine] Simplification sometimes only transforms but doesn't simplify instruction, causing side effect in other pass
...ter instcombine, %conv.i's live >> range is extended, both %and7.i and %conv.i are alive after the "and" >> instruction, so TwoAddressInstruction pass will generate an extra mov >> for %and7.i = and i32 %conv.i. >> >> *** After instcombine: *** >> ~/workarea/llvm-r309240/rbuild1/bin/opt -instcombine -S < a.ll > b.ll; cat b.ll >> @a = global i64 0, align 8 >> @b = global i32 0, align 8 >> >> define i32 @_Z25InternalUncompressAllTagsv(i16* %arrayidx) local_unnamed_addr { >> entry: >> %t1 = load i16, i16* %arrayi...
2011 Sep 13
0
[LLVMdev] git Status Update?
> But none of this explains how to prevent false conflicts when updating > your git workarea from the svn git mirror. The problem is that dcommit > changes the hash from what's in your local repository to something > different. When you then update from the git mirror, you get a conflict > because two commits with different hashes have the same file contents. git svn set-tr...
1998 May 22
0
Netlogon in Win95 ?
...\%L\profiles\%U log file = /emb/var/samba/var/log/log.%U max log size = 256 load printers = no printcap name = /etc/printcap security = user unix password sync = yes socket options = TCP_NODELAY dns proxy = no [homes] browseable = no writable = yes short preserve case = yes [workarea] comment = Work Area path = /home create mode = 0750 directory mode = 0750 [netlogon] comment = Network Logon Service path = /emb/var/samba/var/netlogon guest ok = no writable = no [profiles] path = /emb/var/samba/var/profiles writeable = yes browseable = yes root preexec...
2003 Sep 02
0
Accessing files on Interwoven TeamSite SMB share causing modification
...ux machines all mount the share with smbfs. Under Linux, accessing (using cat, cp, etc) any files on share cause TeamSite to think the file has been modified. TeamSite keeps a "production" version of all files in an area called "staging", and developers make changes in a "workarea". A file has been "modified" if it is somehow different than the file in staging. Somehow, when I cat (or cp, or anything that reads the file) a file in the mounted workarea, TeamSite thinks it has been modified. Under Windows, files on the share can be read freely without TeamSit...
2006 Dec 13
1
Quick patches for no-detection and constrain y
...couple quick patches to resolve some minor issues related to multiple outputs that I bumped into today. nodetectfix.patch: Enables reading outputs config (instead of 640x480 default) when using "--no-detection" switch but config says detect. constrainyoutput.patch: Allows full vertical workarea to be used in the case of multiple vertical outputs. Currently it won't allow moving a window above the current output. Also, I think I almost have a solution ready for handling the "inner" struts issue... I'm sure someone out there besides myself cares. ;) Cheers! ...MC ---...
2006 Mar 13
2
FW: RE: .First functin
...e different to the library address. .First <- function() { options(prompt="$ ", continue="+\t") # $ is the prompt options(digits=5, length=999) # custom numbers and printout x11() # for graphics par(pch = "+") # plotting character source(file.path("U:\WORKAREA\R\Library\Bayesian_inf_Marketing")) # my personal functions library(bayesm) library(MASS) # attach a package } Many thanks. Graciela This e-mail and any attachments are confidential and intende...{{dropped}}