This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Apache Maven 3.5.2 (138edd61fd100ec658bfa2d307c43b76940a5d7d; 2017-10-18T02:58:13-05:00) | |
| Maven home: /users/mithuns/apache-maven-3.5.2 | |
| Java version: 10.0.1, vendor: Oracle Corporation | |
| Java home: /Library/Java/JavaVirtualMachines/jdk-10.0.1.jdk/Contents/Home | |
| Default locale: en_US, platform encoding: UTF-8 | |
| OS name: "mac os x", version: "10.13.5", arch: "x86_64", family: "mac" | |
| [DEBUG] Created new class realm maven.api | |
| [DEBUG] Importing foreign packages into class realm maven.api | |
| [DEBUG] Imported: javax.annotation.* < plexus.core | |
| [DEBUG] Imported: javax.enterprise.inject.* < plexus.core |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [][(![]+[])[+[]]+([![]]+[][[]])[+!![]+[+[]]]+(![]+[])[!![]+!![]]+(!![]+[])[+[]]+(!![]+[])[!![]+!![]+!![]]+(!![]+[])[+!![]]][(+(+!![]+[+([][(![]+[])[+[]]+([![]]+[][[]])[+!![]+[+[]]]+(![]+[])[!![]+!![]]+(!![]+[])[+[]]+(!![]+[])[!![]+!![]+!![]]+(!![]+[])[+!![]]]+[])[+[]]])+[!![]]+[][(![]+[])[+[]]+([![]]+[][[]])[+!![]+[+[]]]+(![]+[])[!![]+!![]]+(!![]+[])[+[]]+(!![]+[])[!![]+!![]+!![]]+(!![]+[])[+!![]]])[+!![]+[+[]]]+(!!(+([][(![]+[])[+[]]+([![]]+[][[]])[+!![]+[+[]]]+(![]+[])[!![]+!![]]+(!![]+[])[+[]]+(!![]+[])[!![]+!![]+!![]]+(!![]+[])[+!![]]]+[])[+[]]+!![])+[][(![]+[])[+[]]+([![]]+[][[]])[+!![]+[+[]]]+(![]+[])[!![]+!![]]+(!![]+[])[+[]]+(!![]+[])[!![]+!![]+!![]]+(!![]+[])[+!![]]])[+!![]+[+!![]]]+([][[]]+[])[+!![]]+(![]+[])[!![]+!![]+!![]]+(!![]+[])[+[]]+(!![]+[])[+!![]]+([][[]]+[])[+[]]+(+(+!![]+[+([][(![]+[])[+[]]+([![]]+[][[]])[+!![]+[+[]]]+(![]+[])[!![]+!![]]+(!![]+[])[+[]]+(!![]+[])[!![]+!![]+!![]]+(!![]+[])[+!![]]]+[])[+[]]])+[!![]]+[][(![]+[])[+[]]+([![]]+[][[]])[+!![]+[+[]]]+(![]+[])[!![]+!![]]+(!![]+[])[+ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| int counter = 0; | |
| AtomicInteger counter = new AtomicInteger(0); | |
| fileMap.forEach((k, v) -> { | |
| counter++ //this wont compile | |
| counter.addAndGet(1); | |
| //do something with i | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| java.lang.NoClassDefFoundError: io/appium/java_client/FindsByAccessibilityId | |
| at java.lang.ClassLoader.defineClass1(Native Method) | |
| at java.lang.ClassLoader.defineClass(ClassLoader.java:763) | |
| at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142) | |
| at java.net.URLClassLoader.defineClass(URLClassLoader.java:467) | |
| at java.net.URLClassLoader.access$100(URLClassLoader.java:73) | |
| at java.net.URLClassLoader$1.run(URLClassLoader.java:368) | |
| at java.net.URLClassLoader$1.run(URLClassLoader.java:362) | |
| at java.security.AccessController.doPrivileged(Native Method) | |
| at java.net.URLClassLoader.findClass(URLClassLoader.java:361) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| This is what AcceptanceTests.java looks like | |
| package com.my_private.service.test.bdd; | |
| import com.my_private.serenity.utils.PrivateProvidedEnterpriseLoggedInTestDecorator; | |
| import com.Private.Private.serenity.utils.PrivateSerenityReportingRunner; | |
| import com.Private.Private.serenity.utils.PrivateSerenityReportingRunner.PrivateDecoratorClasses; | |
| import org.junit.runner.RunWith; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // This is the text editor interface. | |
| // Anything you type or change here will be seen by the other person in real time. | |
| //phones sending locations- sent every n seconds, package may get drop or arrive out of order, given a timestamp, find out the last location of that driver. | |
| // <x,y> 3 <x1,y1> 5 | |
| // 4 -> <x,y> | |
| // 5,4,3,2,1 | |
| //3:30 pm | |
| class Location{ | |
| double latitude; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com; | |
| import java.io.*; | |
| import java.util.*; | |
| import java.text.*; | |
| import java.math.*; | |
| import java.util.regex.*; | |
| public class DownToZero { | |
| static int counter =0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mport java.io.*; | |
| import java.util.*; | |
| import java.text.*; | |
| import java.math.*; | |
| import java.util.regex.*; | |
| public class MinPQ { | |
| int N; | |
| int capacity; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.io.*; | |
| import java.util.*; | |
| import java.text.*; | |
| import java.math.*; | |
| import java.util.regex.*; | |
| public class Solution { | |
| static class Node<TYPEA, TYPEB> | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.io.*; | |
| import java.util.*; | |
| import java.text.*; | |
| import java.math.*; | |
| import java.util.regex.*; | |
| public class Solution { | |
| static class Node<TYPEA, TYPEB> | |
| { |
NewerOlder