I hereby claim:
- I am bonifaido on github.
- I am bonifaido (https://keybase.io/bonifaido) on keybase.
- I have a public key whose fingerprint is ACAF F068 22B1 1BAD 7B9C 3271 02F8 89AD 8E38 8232
To claim this, I am signing this object:
&main.Something{} | |
(*interface {})(0xc42000e1e0) |
package main | |
import ( | |
"os" | |
"k8s.io/api/core/v1" | |
"k8s.io/client-go/kubernetes" | |
"k8s.io/client-go/kubernetes/scheme" | |
"k8s.io/client-go/tools/clientcmd" | |
"k8s.io/client-go/tools/remotecommand" |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# Latest Mercurial, OS X Command Line Tools, JDK 8 and libffi are needed | |
# Tested with OSX 10.10.3 and Apple LLVM version 6.1.0 (clang-602.0.49) (based on LLVM 3.6.0svn) | |
brew install mercurial | |
brew install libffi | |
brew link libffi --force | |
# only needed if you build the zeroshark variant | |
# brew install llvm | |
# brew link llvm --force | |
hg clone http://hg.openjdk.java.net/jdk9/jdk9 |
diff --git a/src/share/classes/com/sun/tools/javac/jvm/Pool.java b/src/share/classes/com/sun/tools/javac/jvm/Pool.java | |
--- a/src/share/classes/com/sun/tools/javac/jvm/Pool.java | |
+++ b/src/share/classes/com/sun/tools/javac/jvm/Pool.java | |
@@ -28,6 +28,7 @@ | |
import java.util.*; | |
import com.sun.tools.javac.code.Symbol.*; | |
+import com.sun.tools.javac.code.Type.ClassType; | |
/** An internal structure that corresponds to the constant pool of a classfile. |
import java.beans.Introspector; | |
import java.beans.PropertyDescriptor; | |
import java.lang.annotation.ElementType; | |
import java.lang.annotation.Retention; | |
import java.lang.annotation.RetentionPolicy; | |
import java.lang.annotation.Target; | |
import java.lang.reflect.Constructor; | |
import java.lang.reflect.Method; | |
import java.lang.reflect.Modifier; | |
import java.math.BigDecimal; |
package me.nandork.exchangertest; | |
import java.util.ArrayList; | |
import java.util.List; | |
import java.util.concurrent.Exchanger; | |
import java.util.concurrent.ExecutorService; | |
import java.util.concurrent.Executors; | |
import java.util.concurrent.TimeUnit; | |
import java.util.concurrent.TimeoutException; |
import java.io.File; | |
import java.net.MalformedURLException; | |
import java.net.URL; | |
import java.net.URLClassLoader; | |
import java.util.ArrayList; | |
import java.util.List; | |
public class IsolatedClassLoader extends URLClassLoader { | |
private static URL[] classPathAsURLArray() { |
import java.awt.event.ActionEvent; | |
import java.awt.event.ActionListener; | |
import javax.swing.Timer; | |
import javax.swing.event.DocumentEvent; | |
import javax.swing.event.DocumentListener; | |
public class DelayedDocumentListener implements DocumentListener { | |
private final Timer timer; | |
private DocumentEvent lastEvent; |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>com.mycompany.app</groupId> | |
<artifactId>app</artifactId> | |
<version>0.1</version> | |
<properties> | |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
<project.resources.sourceEncoding>UTF-8</project.resources.sourceEncoding> | |
</properties> | |
<dependencies> |