search for: getmessage

Displaying 20 results from an estimated 43 matches for "getmessage".

Did you mean: get_message
2009 Jan 13
1
[LLVMdev] ParseError::getMessage() API.
Hi, The method ParseError::getMessage() seems to have got deleted from lib/AsmParser/Parser.cpp during the parser rewrite. Right now it's there in the header (include/llvm/Assembly/Parser.h) but not in lib/AsmParser/Parser.cpp. Is this API still valid? Or is it PrintError() that's meant to be used? Thanks & Regards, -Maha...
2004 Aug 06
0
Lost ogg sync using jspeex
...dBuffer.addElement(frame); //byte[] buffer=(byte[]) recordBuffer.elementAt(0); //toClient.write(buffer); //toClient.flush(); //recordBuffer.removeElementAt(0); } } catch(LineUnavailableException e) { System.out.println("LineUnavailableException...."+e.getMessage()); } catch(IOException e) { System.out.println("IOException ....."+e.getMessage()); } } } class SpeexPlayer extends Thread { PipedOutputStream pout; PipedInputStream pin; AudioFormat audioFormat; int bufferlength; DataLine.Info outputDataLineInfo; SourceDataLine sour...
2004 Aug 06
0
Lost ogg sync using jspeex
...dBuffer.addElement(frame); //byte[] buffer=(byte[]) recordBuffer.elementAt(0); //toClient.write(buffer); //toClient.flush(); //recordBuffer.removeElementAt(0); } } catch(LineUnavailableException e) { System.out.println("LineUnavailableException...."+e.getMessage()); } catch(IOException e) { System.out.println("IOException ....."+e.getMessage()); } } } class SpeexPlayer extends Thread { PipedOutputStream pout; PipedInputStream pin; AudioFormat audioFormat; int bufferlength; DataLine.Info outputDataLineInfo; SourceDataLine sour...
2005 Aug 22
1
Fetching Warning Messages
...] System.out.println(c.eval("z").asDouble()); System.out.println(c.eval("lastWarning").asString()); c.close(); System.out.println("DONE"); } catch(RSrvException e) { System.out.println("Error : " + e.getMessage()); e.printStackTrace(); } } } ---------------------------End Of RWarning.java----------------------- Output of above program is (as expected) : 2.0 simpleWarning in sqrt(-9): NaNs produced simpleWarning: data length [9] is not a sub-multiple or multiple of the number of columns...
2004 Aug 06
0
Please Help, Lost ogg sync using jspeex
...t; //toClient.write(buffer);<BR> //toClient.flush();<BR> //recordBuffer.removeElementAt(0); <BR> <BR> }<BR> <BR> }<BR> catch(LineUnavailableException e)<BR> {<BR> System.out.println("LineUnavailableException...."+e.getMessage());<BR> }<BR> catch(IOException e)<BR> {<BR> System.out.println("IOException ....."+e.getMessage());<BR> }<BR> }<BR>}</FONT></DIV> <DIV><FONT face=Arial size=2>class SpeexPlayer extends Thread{<BR> PipedOutpu...
2008 Jan 19
1
Set Return Type XML in Prototype
...ActiveXObject) { xmlDoc = new ActiveXObject("MSXML2.DOMDocument"); xmlDoc.loadXML(xmlHttpRequest.responseText); //xmlDoc=new ActiveXObject("Microsoft.XMLDOM"); //xmlDoc.async=false; //xmlDoc.load(xmlHttpRequest.responseText); alert(xmlHttpRequest.responseText); getmessage(); } // code for Mozilla, Firefox, Opera, etc. else if (document.implementation && document.implementation.createDocument) { alert(xmlHttpRequest.responseText); //xmlDoc = new ActiveXObject("MSXML2.DOMDocument"); //xmlDoc.loadXML(xmlHttpRequest.responseText); try {...
2005 Jul 05
2
Java and R help
...va. I have the following instructions: Runtime r = Runtime.getRuntime(); try { System.out.println ("Llamada a R..."); p = r.exec(sRutaR); } catch (IOException e) { System.out.println ("Error lanzando R: " + e.getMessage()); e.printStackTrace(); } catch (Exception ex) { System.out.println ("Error lanzando R!!!! " + ex.toString()); ex.printStackTrace(); } } and after that i wait for a file that R must to make called terminado.dat. But wh...
2013 May 08
2
[Bug 2099] New: SshClient.connect() failure on port 22
...tocol(Unknown Source) at com.sshtools.j2ssh.transport.TransportProtocolCommon.run(Unknown Source) at java.lang.Thread.run(Thread.java:662) com.sshtools.j2ssh.transport.MessageStoreEOFException: The message store has reached EOF at com.sshtools.j2ssh.transport.SshMessageStore.getMessage(Unknown Source) at com.sshtools.j2ssh.transport.SshMessageStore.getMessage(Unknown Source) at com.sshtools.j2ssh.transport.SshMessageStore.getMessage(Unknown Source) at com.sshtools.j2ssh.transport.TransportProtocolClient.requestService(Unknown Source) at com.sshtool...
2001 Apr 10
2
Stars! kills X-Server
...ds=039f Call USER.40: ENDPAINT(0x07f8,039f:a3a8) ret=029f:01f2 ds=039f Ret USER.40: ENDPAINT() retval=0x0001 ret=029f:01f2 ds=039f CallTo16() ss:sp=039f:a3f6 AX=0000 BX=0000 CX=0000 DX=0000 BP=a420 SP=a3f6 Ret USER.114: DISPATCHMESSAGE() retval=0x00000000 ret=028f:03d1 ds=039f Call USER.108: GETMESSAGE(0x039fa42e,0x0000,0x0000,0x0000) ret=028f:03e0 ds=039f Ret USER.108: GETMESSAGE() retval=0x0001 ret=028f:03e0 ds=039f Call USER.31: ISICONIC(0x0138) ret=028f:0363 ds=039f Ret USER.31: ISICONIC() retval=0x0000 ret=028f:0363 ds=039f Call USER.178: TRANSLATEACCELERATOR(0x0138,0x0797,039f:a42e) ret=0...
2003 Nov 12
1
Talk with from Java
...ut.write(c); out.flush(); } catch(Exception e) { System.out.println(e.toString()); System.out.println("Cause : " + e.getCause()); System.out.println("Message : " + e.getMessage()); } } } catch (Exception e) { System.out.println(e.toString()); System.out.println("Cause : " + e.getCause()); System.out.println("Message : " + e.getMessage()); } } } Thanks ev...
2009 Aug 04
2
php-pdo
...1.10 Now when I try connect to the PostgeSQL db with this code: <?php print "PDO test<br />"; try { $db = new PDO("pgsql:host=192.168.0.180;port=5432;dbname=mydb;user=test;password=test"); } catch(PDOException $e) { print "Error : " . $e->getMessage() . "<br/>"; die(); } ?> I get no output in the browser, but I see this error in Apache log: PHP Fatal error: Class 'PDO' not found in /var/www/html/pdotest.php on line 4 Well, it appears the PDO class is not provided by the php-pdo package: # rpm -ql php-pdo...
2006 Sep 05
1
Reserve and biobase
...); c.eval(" postscript('foo2.ps')"); c.eval(" library(Biobase)"); c.eval("graphics.off()"); System.out.println(" load library Biobase"); } catch (RSrvException ex1) { System.out.println(ex1.getMessage()); } } catch (Exception e) { System.out.print("cannot run rserve"); } //end of testing } } --------------------------------- [[alternative HTML version deleted]]
2006 Jul 20
1
Invalid sideband mode encountered
...); byte[] decoded = new byte[FRAME_SIZE*2]; decodedNbBytes = speexDecoder.getProcessedData(decoded, 0); System.arraycopy(decoded, 0, completebuffer, packetCount*decodedNbBytes, decodedNbBytes); } catch(StreamCorruptedException s) { System.out.println("Error ---> "+s.getMessage()); } } return completebuffer; } encodedNbBytes is a function that returns the encoded packet size. help. Regards --------------------------------- Yahoo! Music Unlimited - Access over 1 million songs.Try it free. -------------- next part -------------- An HTML...
2018 Dec 09
2
Parse LLVM IR
...upport/SourceMgr.h> #include <iostream> #include <llvm/Support/raw_ostream.h> using namespace llvm; int main() { LLVMContext context; SMDiagnostic error; Module *m = parseIRFile("t.ll", error, context).get(); if(!m) { return 0; } std::cout << error.getMessage().str() << std::endl; std::cout << sizeof(m->getFunctionList()) << std::endl; auto iter1 = m->getFunctionList().begin(); std::cout << " Function: " << (*iter1).getName().str() << std::endl; for (auto iter1 = m->getFunctionList().begin(...
2008 Jun 11
1
xen migrate never ends
...quot;, line 146, in shouldRollover msg = "%s\n" % self.format(record) File "/usr/lib/python2.5/logging/__init__.py", line 630, in format return fmt.format(record) File "/usr/lib/python2.5/logging/__init__.py", line 418, in format record.message = record.getMessage() File "/usr/lib/python2.5/logging/__init__.py", line 288, in getMessage msg = msg % self.args TypeError: int argument required Traceback (most recent call last): File "/usr/lib/python2.5/SocketServer.py", line 464, in process_request_thread self.finish_request(reque...
2006 Jul 18
1
SpeexEncoder requires 320 samples to process a Frame, not 160
...cessedData(decoded, 0); System.arraycopy(decoded, 0, completebuffer, packetCount*bodybytes, decsize); packetCount++; System.out.println("Decoding packet size: "+decsize+"\n"); } catch(StreamCorruptedException s) { System.out.println("Error ---> "+s.getMessage()); } } return completebuffer; } } Any help will greatly be appreciated. --------------------------------- Do you Yahoo!? Everyone is raving about the all-new Yahoo! Mail Beta. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists...
2011 Feb 04
1
[LLVMdev] PareAssemblyFile returning "expected top-level entity" error message
...ode analysis) Module *topModule; SMDiagnostic error; topModule = ParseAssemblyFile("code.s", error, getGlobalContext()); displayErrorInfo(error); void displayErrorInfo(SMDiagnostic& err) { std::string errFileName = err.getFilename(); std::string errMsg = err.getMessage(); std::string errLineContents = err.getLineContents(); int errLineNo = err.getLineNo(), errColNo = err.getColumnNo(); std::cout << "Error File Name: "<< errFileName << std::endl; std::cout << "Error Message: " << errMsg << std...
2008 Jan 07
0
JSpeex - Unsupported conversion
...ile(args[0]); File outFile = new File(args[1]); AudioInputStream audioInputStream = null; try { audioInputStream = AudioSystem.getAudioInputStream(srcFile); } catch (Exception e) { System.out.println("Exception: " + e.getMessage()); e.printStackTrace(); return; } AudioFormat srcFormat = audioInputStream.getFormat(); AudioFormat targetFormat = new AudioFormat(SpeexEncoding.SPEEX_Q3, srcFormat.getSampleRate(),...
2008 Jan 08
0
JSpeex - Unsupported conversion
...outFile = new File(args[1]); > > AudioInputStream audioInputStream = null; > try { > audioInputStream = AudioSystem.getAudioInputStream > (srcFile); > } > catch (Exception e) { > System.out.println("Exception: " + e.getMessage()); > e.printStackTrace (); > return; > } > AudioFormat srcFormat = audioInputStream.getFormat(); > > AudioFormat targetFormat = > new AudioFormat(SpeexEncoding.SPEEX_Q3 , > srcFormat.getSampleR...
2006 May 19
2
Icecast2 Status Page Parser
Does anyone have a Perl or PHP Icecast2 Status Page Parser? Thanks. -greg. __________________________________________________________________________ Greg J. Ogonowski VP Product Development ORBAN / CRL, Inc. 1525 Alvarado St. San Leandro, CA 94577 USA TEL +1 510 351-3500 FAX +1 510 351-0500 greg@orban.com http://www.orban.com