Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for HttpExchange (0.28 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ChainingHttpHandler.java

            }
        }
    
        private RequestOutcome requestStarted(HttpExchange httpExchange) {
            lock.lock();
            RequestOutcome outcome;
            try {
                outcome = new RequestOutcome(lock, httpExchange.getRequestMethod(), httpExchange.getRequestURI().getPath());
                outcomes.add(outcome);
            } finally {
                lock.unlock();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/BlockingHttpServer.java

                }
            };
    
            RuntimeException getFailure();
        }
    
        private static class SendEmptyResponse extends ErroringAction<HttpExchange> {
            @Override
            protected void doExecute(HttpExchange httpExchange) throws Exception {
                httpExchange.sendResponseHeaders(200, 0);
            }
        }
    
        private class MustBeRunning implements WaitPrecondition {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ExpectMaxNConcurrentRequests.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.server.http;
    
    import com.sun.net.httpserver.HttpExchange;
    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.time.Clock;
    import org.gradle.internal.time.Time;
    
    import javax.annotation.Nullable;
    import java.io.IOException;
    import java.time.Duration;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top