search for: findit

Displaying 9 results from an estimated 9 matches for "findit".

Did you mean: findity
2006 Feb 10
0
OLE error
Hello, I managed to install a crystallographic datbase program called FindIt but it crashes with the following message: wine c:\\Program\ Files\\NIST\\FindIt\\FindIt > ole.txt fixme:ole:CoRegisterMessageFilter stub err:ole:CoGetClassObject class {00000100-0000-0010-8000-00aa006d2ea4} not registered err:ole:create_server class {00000100-0000-0010-8000-00aa006d2ea4} not...
1997 Nov 07
0
Perl script to locate F0 0F C7 C8 bombs
...s in # for instances of the F0 0F C7 C8 sequence # This script will search for programs with this sequence, which will # help sysadmins take appropriate action against those running such # programs # This script is written (but has not been tested) in Perl4, to # insure maximum compatibility sub findit { local($dir,$file,@files,$data) = @_; undef $/; if(!opendir(DIR,$dir)) { print STDERR "Can not open $dir: $!\n"; return 0; } @files=readdir(DIR); foreach $file (@files) { if($file ne ''.'' && $file ne ''..'') {...
2015 Aug 21
2
Bug#763102: xen-utils-common: xen-init-list fails to parse xm output -> cannot shutdown domains with service xendomains
Control: tag -1 +moreinfo Hello, It seems this was incorrectly closed as xend only since this code can be used on upgrade (as part of rebooting from xend into a new system). I don't have any systems to test but I think the fix is trivially the following: @@ -51,7 +51,7 @@ class DataJSON(Data): class DataSXP(Data): def __init__(self, p): - s = SXPParser()(p) + s =
2015 Aug 22
2
Bug#763102: Bug#763102: xen-utils-common: xen-init-list fails to parse xm output -> cannot shutdown domains with service xendomains
...ue is to s/self/cls/ in the body rather than s/cls/self/ in the declaration. I've updated the feature/bug763102 with the following extra patch: @@ -14,7 +14,7 @@ class SXPParser(object): def loads(cls, input): data = [] stack = [] - for match in self.tokenizer_re.finditer(input): + for match in cls.tokenizer_re.finditer(input): if match.group('open'): stack.append([]) elif match.group('close'): Ian.
2004 Oct 31
2
ISDN CARD
Im looking for a ISDN card that works under asterisk and supports BRI line. And I just can`t findit. Momently im using card INTERNAL, but Im having problems, asterisk on startup when loading modem fails (i4l driver). Can you please help me, or point to a www address where culd I find some help. Best regards, Bostjan Repnik -------------- next part -------------- An HTML attachment was scrub...
2014 Apr 22
9
[Bug 916] New: Build failure on Slackware 14.1 (./configure rejects libreadline.so)
https://bugzilla.netfilter.org/show_bug.cgi?id=916 Summary: Build failure on Slackware 14.1 (./configure rejects libreadline.so) Product: nftables Version: unspecified Platform: i386 OS/Version: other Status: NEW Severity: major Priority: P5 Component: nft AssignedTo: pablo at
2009 Jan 07
13
HTTP parse error due to an extra percent sign
If you append an extra percent sign to a URL that gets passed to mongrel, it will return a Bad Request error. Kind of odd that "http://localhost/%" causes a "Bad Request" instead of a "Not Found" error. Here is the error from the mongrel log: HTTP parse error, malformed request (127.0.0.1): #<Mongrel::HttpParserError: Invalid HTTP format, parsing fails.>
2014 Sep 27
5
Bug#763102: xen-utils-common: xen-init-list fails to parse xm output -> cannot shutdown domains with service xendomains
...ib/xen-common/bin/xen-init-list 2014-09-27 19:55:20.244357777 +0200 @@ -11,7 +11,7 @@ tokenizer_re = re.compile(tokenizer_rules, re.X) @classmethod - def loads(cls, input): + def loads(self, input): data = [] stack = [] for match in self.tokenizer_re.finditer(input): @@ -49,7 +49,7 @@ class DataSXP(Data): def __init__(self, p): - s = SXPParser()(p) + s = SXPParser().loads(p) self.data = d = {} for i in s: if i and i[0] == 'domain': The problem also exists in sid's version 4.4.1-2. Cheer...
2015 Oct 09
3
Python version for scripts in LLVM?
...print('Extracted LLC cmd: llc ' + llc_args, file=sys.stderr) + print('Extracted FileCheck prefixes: ' + str(prefixes), file=sys.stderr) raw_asm = llc(args, llc_args, test) # Build up a dictionary of all the function bodies. for m in asm_function_re.finditer(raw_asm): @@ -129,14 +129,14 @@ # We only use the last line of the asm for stress tests. f_asm = '\n'.join(f_asm.splitlines()[-1:]) if args.verbose: - print >>sys.stderr, 'Processing asm for function: ' + f + print('Proces...