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
| // | |
| // ======================================================================== | |
| // Copyright (c) 1995-2017 Mort Bay Consulting Pty. Ltd. | |
| // ------------------------------------------------------------------------ | |
| // All rights reserved. This program and the accompanying materials | |
| // are made available under the terms of the Eclipse Public License v1.0 | |
| // and Apache License v2.0 which accompanies this distribution. | |
| // | |
| // The Eclipse Public License is available at | |
| // http://www.eclipse.org/legal/epl-v10.html |
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
| [2010] git log --all --graph --decorate --pretty='format:%C(yellow)%h%d %Cblue[%an]%Creset %s' | head -200 | |
| * 8921e3e (origin/master, origin/HEAD) [Simone Bordet] Merged branch 'jetty-9.4.x' into 'master'. | |
| |\ | |
| | * df08f7f (origin/jetty-9.4.x) [Simone Bordet] Merged branch 'jetty-9.3.x' into 'jetty-9.4.x'. | |
| | |\ | |
| | | * 2a416bb (HEAD -> jetty-9.3.x, origin/jetty-9.3.x) [Simone Bordet] Issue #1073 - JDK9 support in Jetty 9.3.x. | |
| * | | f96939a [Simone Bordet] Fixed merge issues. | |
| * | | b7b3dfd [Simone Bordet] Merged branch 'jetty-9.4.x' into 'master'. | |
| |\ \ \ | |
| | |/ / |
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
| // | |
| // ======================================================================== | |
| // Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. | |
| // ------------------------------------------------------------------------ | |
| // All rights reserved. This program and the accompanying materials | |
| // are made available under the terms of the Eclipse Public License v1.0 | |
| // and Apache License v2.0 which accompanies this distribution. | |
| // | |
| // The Eclipse Public License is available at | |
| // http://www.eclipse.org/legal/epl-v10.html |
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
| diff --git a/jetty-io/src/main/java/org/eclipse/jetty/io/ssl/SslConnection.java b/jetty-io/src/main/java/org/eclipse/jetty/io/ssl/SslConnection.java | |
| index 20e6c2b..3ef3994 100644 | |
| --- a/jetty-io/src/main/java/org/eclipse/jetty/io/ssl/SslConnection.java | |
| +++ b/jetty-io/src/main/java/org/eclipse/jetty/io/ssl/SslConnection.java | |
| @@ -944,11 +944,41 @@ public class SslConnection extends AbstractConnection | |
| getEndPoint().close(); | |
| } | |
| } | |
| + | |
| + Callback _nonBlockingReadCallback = new Callback.NonBlocking() |
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
| LoadGeneratorProfile sample = | |
| new LoadGeneratorProfile.Builder() | |
| .resource("/index.html") | |
| .then() | |
| .resourceGroup(new ResourceGroup.Builder() | |
| .resourceGroup(new ResourceGroup.Builder() | |
| .resource( "/style.css" ) | |
| .then() | |
| .resourceGroup(new ResourceGroup.Builder() | |
| .resource( "/logo.gif" ) |
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 org.eclipse.jetty.jmx; | |
| import java.lang.management.ManagementFactory; | |
| import java.util.concurrent.CountDownLatch; | |
| import org.eclipse.jetty.util.annotation.ManagedAttribute; | |
| import org.eclipse.jetty.util.annotation.ManagedObject; | |
| import org.eclipse.jetty.util.annotation.ManagedOperation; | |
| import org.eclipse.jetty.util.component.ContainerLifeCycle; | |
| import org.eclipse.jetty.util.component.LifeCycle; |
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 org.eclipse.jetty.jmx; | |
| import java.lang.management.ManagementFactory; | |
| import java.util.concurrent.CountDownLatch; | |
| import org.eclipse.jetty.util.annotation.ManagedAttribute; | |
| import org.eclipse.jetty.util.annotation.ManagedObject; | |
| import org.eclipse.jetty.util.annotation.ManagedOperation; | |
| import org.eclipse.jetty.util.component.ContainerLifeCycle; | |
| import org.eclipse.jetty.util.component.LifeCycle; |
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
| gregw@Tile440: /tmp | |
| [2092] mkdir test | |
| gregw@Tile440: /tmp | |
| [2093] cd test | |
| gregw@Tile440: /tmp/test | |
| [2094] export JETTY_HOME=~/src/jetty-9.3.x/jetty-distribution/target/distribution | |
| gregw@Tile440: /tmp/test |
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
| diff --git a/appengine-managed-runtime/src/main/java/com/google/apphosting/vmruntime/VmApiProxyEnvironment.java b/appengine-managed-runtime/src/main/java/com/google/apphosting/vmruntime/VmApiProxyEnvironment.java | |
| index 2a0f347..9c776b8 100644 | |
| --- a/appengine-managed-runtime/src/main/java/com/google/apphosting/vmruntime/VmApiProxyEnvironment.java | |
| +++ b/appengine-managed-runtime/src/main/java/com/google/apphosting/vmruntime/VmApiProxyEnvironment.java | |
| @@ -329,6 +329,7 @@ public class VmApiProxyEnvironment implements ApiProxy.Environment { | |
| server, | |
| ticket, | |
| longAppId, | |
| + null, | |
| partition, |
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 org.eclipse.jetty.embedded; | |
| import java.io.IOException; | |
| import java.net.Socket; | |
| import javax.servlet.ServletException; | |
| import javax.servlet.ServletOutputStream; | |
| import javax.servlet.http.HttpServletRequest; | |
| import javax.servlet.http.HttpServletResponse; |