Missing invalid name clock_get_time (): (ipc / rcv) invalid name in Java

Writing a java 1.7 streaming program on OSX, and I see that this error message appears and spam my console when it creates an object with selenium inside. I use java.util.Random in another class, but I'm not sure if this has anything to do with it.

I tried to search for this error on Google, but did not get anything like this.

Console:

Posting To SAASAPP Entered postToSAASAPP Starting SAAS APP Library clock_get_time() failed: (ipc/rcv) invalid name clock_get_time() failed: (ipc/rcv) invalid name clock_get_time() failed: (ipc/rcv) invalid name clock_get_time() failed: (ipc/rcv) invalid name 

? Relevant? The code

 System.out.println("Entered postToSAASAPP"); Random generator = new Random(); int postIndex = generator.nextInt() % PostDictionary.size(); System.out.println("Starting SAAS APP Library"); SAASAPPLibrary SP = new SAASAPPLibrary(); SP.setup(); SP.login(" email@someaddress.com ", "somepassword"); SP.changeGroup("Soak"); SP.post(PostDictionary.get(postIndex)); System.out.println("Posted to SAASAPP: " + PostDictionary.get(postIndex)); 

I did some exception process in SP.setup (); and found that the following code causing the clock_get_time () error failed: (ipc / rcv). Invalid problem name.

 driver = new FirefoxDriver(profile); 
+4
source share

Source: https://habr.com/ru/post/1500813/


All Articles