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
public class Java9 { | |
public static void main(String[] args) throws Exception { | |
hello("foo", () -> doSomething("bad Java9", "test")); | |
} | |
public static <E extends Exception> void hello(String text, Foo<E> foo) throws Exception { | |
foo.run(); | |
} |
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
--------------------------------------------------- | |
constituent[0]: file:/usr/local/apache-maven-3.5.0/conf/logging/ | |
constituent[1]: file:/usr/local/apache-maven-3.5.0/lib/jansi-1.13.jar | |
constituent[2]: file:/usr/local/apache-maven-3.5.0/lib/maven-slf4j-provider-3.5.0.jar | |
constituent[3]: file:/usr/local/apache-maven-3.5.0/lib/maven-resolver-spi-1.0.3.jar | |
constituent[4]: file:/usr/local/apache-maven-3.5.0/lib/slf4j-api-1.7.22.jar | |
constituent[5]: file:/usr/local/apache-maven-3.5.0/lib/maven-artifact-3.5.0.jar | |
constituent[6]: file:/usr/local/apache-maven-3.5.0/lib/aopalliance-1.0.jar | |
constituent[7]: file:/usr/local/apache-maven-3.5.0/lib/maven-resolver-provider-3.5.0.jar | |
constituent[8]: file:/usr/local/apache-maven-3.5.0/lib/plexus-interpolation-1.24.jar |
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
var observer = window.MutationObserver || window.WebKitMutationObserver; | |
if (observer) { | |
new MutationObserver(function(mutations) { | |
mutations.forEach(function(mutation) { | |
mutation.addedNodes.forEach(processNode); | |
}); | |
}).observe(document, { childList: true, subtree: true }); | |
} | |
var processNode = function(node) { |
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
<%@ page language="java" import="java.security.AccessController, | |
java.io.FileWriter, | |
com.sun.identity.security.AdminTokenAction, | |
com.iplanet.sso.SSOToken, | |
com.sun.identity.sm.ServiceManager, | |
com.sun.identity.sm.ServiceSchemaManager, | |
org.apache.commons.io.IOUtils" | |
%> | |
<html> |
OlderNewer