search for: offhand

Displaying 20 results from an estimated 484 matches for "offhand".

2003 Oct 28
1
print job complete messages
I know I've read something about this in the distant past, but i can't seem to find any info on it now. I'm hoping someone knows offhand... I'm using samba 2.2.8a and cups 1.1.17 to serve printing to some windows 2000 workstations. Cups is set up with raw queues and I'm using the windows drivers available from HP. When the clients print from the windows print server, they get a winpopup message that tells them when the...
2009 Aug 27
2
[LLVMdev] andersen's alias analysis
...at 6:40 PM, Max Stonebraker wrote: > Hello, > > Does the LLVM Andersens alias analysis handle function pointers > precisely? I ran it and it looks like it says every function points > points to the universal set. Is this what I should expect? Hi Max, I don't know the answer offhand but please keep in mind that the current andersen's pass has many known problems and bugs. Consider it "research quality". -Chris
2014 Nov 25
4
[LLVMdev] RFC: How to represent SEH (__try / __except) in LLVM IR
...nt. > His suggestion to break the ordering dependence was to lock down the frame offset of the capture block to always be some fixed offset known by the target (ie ebp - 4 on x86, if we like that). Chandler probably has a better feel for this sort of thing than I do. I can’t think of a reason offhand why that wouldn’t work, but it makes me a little nervous. What would that look like in the IR? Would we use the same intrinsics and just lower them to use the known location? I’ll think about this, but for now I’m happy to just proceed with the belief that it’s a solvable problem either way. &g...
2013 Oct 23
1
Scripting call to R-Studio compile PDF
...ful if the script could automatcially make a call to whatever is called when a user opens up one of these files and manually clicks "Compile PDF". Basically, this would allow me to refresh all of the reports before assimilating their pdf's into a composite document. Does anyone know offhand how to do this, or if I'm offbase in even trying? Thanks [[alternative HTML version deleted]]
2003 Jul 08
3
line battery check
...My burglar alarm knew right away there was no line battery and started beeping. Data T1 down was a no-brainer for the monitoring software to detect. Now I am looking for a way to detect loop loss on the voice lines - any ideas how to accomplish with asterisk ? I have a zhone bank - anyone know offhand if I can program loop loss on a port to put it into an alarm state ? At least then I would have a contact closure I could monitor easily.
2013 Jan 09
2
[LLVMdev] attributes
I need to add two function attributes to clang that I can subsequently process in llvm. void __attribute__((mips16)) foo16 (); void __attribute__((nomips16)) foo32 (); int main() { foo16(); foo32(); } Does anyone know offhand where this gets added to clang and where the hook for processing in llc is? I think that this code has changed recently. These options mimick those of gcc. Tia. Reed
2013 Jan 09
2
[LLVMdev] attributes
On 01/09/2013 01:19 PM, Sean Silva wrote: > On Wed, Jan 9, 2013 at 4:14 PM, reed kotler <rkotler at mips.com> wrote: >> Does anyone know offhand where this gets added to clang and where the hook >> for processing >> in llc is? >> >> I think that this code has changed recently. > There's <http://clang.llvm.org/docs/InternalsManual.html#how-to-add-an-attribute>. > If that's not up to date please let...
2013 Jul 22
0
[LLVMdev] Inst field in MSP430InstrFormats.td
The Inst field is used to specify instruction encodings, which are then used to generate assemblers and disassemblers. I'm not sure offhand, but it's possible that the MSP430 backend doesn't make use of an auto-generated assembler. --Owen On Jul 21, 2013, at 4:19 PM, David Wiberg <dwiberg at gmail.com> wrote: > Hello, > > Within the file "MSP430InstrFormats.td" there is a class called > "MSP...
2009 Aug 27
3
[LLVMdev] alias analysis
Hello, Does the LLVM Andersens alias analysis handle function pointers precisely? I ran it and it looks like it says every function points points to the universal set. Is this what I should expect? Max -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090826/ff8d6c78/attachment.html>
2004 Sep 10
5
[st.n@gmx.net: Bug#200435: xmms-flac: doesn't properly support long files]
severity 200435 normal thanks I received this bug report from a Debian user. I can't think of any reason offhand why the command line tool would work while the xmms plugin would fail. ----- Forwarded message from Stephan Niemz <st.n@gmx.net> ----- Date: Tue, 8 Jul 2003 10:24:57 +0200 From: Stephan Niemz <st.n@gmx.net> Resent-From: Stephan Niemz <st.n@gmx.net> To: Debian Bug Tracking System...
2010 Nov 17
1
[LLVMdev] Optimization of calls to functions without side effects (from Kaleidoscope example)
Hi Dan, >Did the code in the tutorial work at some point? Offhand, I wouldn't expect >any of my recent changes to have affected this. I'm reluctant to fix this >without understanding how the original code was intended to work. The code works, but not as shown in the tutorial. In the tutorial, it shows that multiple calls to pure functions (sin, cos...
2005 May 18
3
known_hosts vulnerability?
...ogize if this issue has already been addressed, but the mailing list archives didn't turn up anything when i tried searching for something relevant. So; not to knee-jerk or anything, but is anyone currently looking into this? Does this need to be addressed, or has it already been taken care of? Offhand, on a scale of 0 - 11, this would seem to rate kinda high, ~7. Am i off-base? >From the article: "a known_hosts hashing scheme proposed by MIT has been implemented in OpenSSH 4.0 and in a patch for earlier versions of SSH". Looking at my own ~/.ssh/known_hosts file, the entries appear...
2010 Nov 16
0
[LLVMdev] Optimization of calls to functions without side effects (from Kaleidoscope example)
...course, this is probably not the right way to achieve this in real life with a real programming language / environment, but within the scope of the kaleidoscope, this should be sufficient. This patch updates both the source code & documentation. Did the code in the tutorial work at some point? Offhand, I wouldn't expect any of my recent changes to have affected this. I'm reluctant to fix this without understanding how the original code was intended to work. Dan
2011 Mar 15
1
Using stride on non-RAID
Hello, I understand the need for a proper stride setting when formatting a filesystem on a RAID device. However, is there any problem in using a stride setting when formatting a filesystem on a regular non-RAID, non-SSD, just plain-vanilla-single-disk block device? I'm sure there isn't any benefit to it, but I'm curious if there is any harm. The reason I ask is I'm looking at
2009 May 13
4
[LLVMdev] DataStructure Analysis ds-aa can not stop when passing mysqld
...= 1 && >> "We only work with nodes with zero or one result so far!"); >> >> So my question is now how much work it would be to remove this >> restriction in tablegen. What do I have to take into consideration? >> > > I don't know offhand, but this would be a very welcome improvement! > > -Chris
2013 Jul 21
3
[LLVMdev] Inst field in MSP430InstrFormats.td
Hello, Within the file "MSP430InstrFormats.td" there is a class called "MSP430Inst" which has "Instruction" as superclass. Within this class there is a field called "Inst" (field bits<16> Inst;) which gets assigned in classes which specifies a specific instruction format, e.g. IForm contains: let Inst{12-15} = opcode; let Inst{7} = ad.Value; let
2009 Dec 29
2
Retrieve Physical Message Filename
...ETCH_UIDL_FILE_NAME,? &fname);...I can retrieve part of the filename, but without the ":2" and the flags part.Is there a method I can use to get the whole filename (without having to reassemble it myself).? I've looked around, and I'm guessing it exists, but I don't see it offhand.Thanks,...Tony RutherfordSoftware EngineerBlueTie Inc.arutherford at bluetie.com(585) 586-2000 x1040 This message is intended solely for the individual(s) to whom it is addressed. If you are not the intended recipient, any dissemination or copying is strictly prohibited. If you believe you rece...
2019 Jun 08
2
Does CentOS support aspell?
...entOS on a machine of my own for several years; but my domain (NOT the address I post from) is hosted on a machine running CentOS. The list for the mailer I run recommends using aspell, which is not installed (according to rpm -q) on the remote host, as a spellchecker. Does anybody here know offhand if CentOS supports it? Or how do I check? -- Beartooth Staffwright, Not Quite Clueless Power User Remember I know little (precious little!) of where up is.
2009 Apr 13
0
[LLVMdev] Porting LLVM backend is no fun yet
...n the wiki yet. Your observations are accurate; LLVM's CodeGen is comparatively less mature in this area. There are numerous examples of these symptoms. There certainly are wishlist items for TableGen and TableGen-based instruction descriptions, though I don't know of an official list. Offhand, a few things that come to mind are the ability to handle nodes with multiple results, something analogous to GCC's multi-alternative constraints, the ability to generate more of the Legalize tables automatically, and the ability to generate more of the TargetInstrInfo hooks automatically. The...
2019 Feb 12
2
[admin] [Xen-devel] [BUG] task jbd2/xvda4-8:174 blocked for more than 120 seconds.
...12 grant references available >>> (32-31=1 frame available). I do not think the I/O hang can be affected by the >>> lack of grant entry. >> >> I suspect that 31 measurement was taken when the domU was not hanging yet. > > Indeed, I didn't have the hanging VM offhand. I have looked again, it's > now at 33. We'll have to monitor to check that it doesn't continue just > increasing. If the max used to be 32 and the current is already 33, this indicates the grant entries might be used up in the past before the max_nr_frames is tuned. Dongli ZHa...