Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 115 for Funnels (0.11 sec)

  1. architecture/ambient/ztunnel.md

    | `Traceparent` | (Experimental) This maintains tracing information. Note this is tracing of *connections*, and is not correlated to tracing of user's own HTTP requests. However, this is useful to follow a connection across ztunnels.                                 |
    
    ## Traffic routing
    
    Based on the three [redirection](#redirection) paths, the ztunnel has three primary types of traffic it handles.
    
    ### Outbound
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. buildscripts/minio-upgrade.sh

    __init__() {
    	sudo apt install curl -y
    	export GOPATH=/tmp/gopath
    	export PATH=${PATH}:${GOPATH}/bin
    
    	go install github.com/minio/mc@latest
    
    	## this is needed because github actions don't have
    	## docker-compose on all runners
    	go install github.com/docker/compose/v2/cmd@latest
    	mv -v /tmp/gopath/bin/cmd /tmp/gopath/bin/docker-compose
    
    	cleanup
    
    	TAG=minio/minio:dev make docker
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r88/TestDisplayNameJUnit4CrossVersionSpec.groovy

        def "reports display names of parameterized tests"() {
            file("src/test/java/org/example/ParameterizedTests.java") << """package org.example;
    
    import org.junit.Test;
    import org.junit.runner.RunWith;
    import org.junit.runners.Parameterized;
    
    import java.util.Arrays;
    import java.util.Collection;
    
    @RunWith(Parameterized.class)
    public class ParameterizedTests {
    
        private final int value;
        private final String name;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/MavenHttpPluginRepository.groovy

    import org.gradle.test.fixtures.maven.MavenFileRepository
    import org.gradle.util.internal.ConfigureUtil
    import org.junit.rules.TestRule
    import org.junit.runner.Description
    import org.junit.runners.model.Statement
    
    import javax.servlet.http.HttpServletRequest
    import javax.servlet.http.HttpServletResponse
    
    import static org.gradle.test.fixtures.plugin.PluginBuilder.PLUGIN_MARKER_SUFFIX
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/enduser/GradleRunnerConsoleInputEndUserIntegrationTest.groovy

                                all {
                                    testTask.configure {
                                        if (JavaVersion.current().isJava9Compatible()) {
                                            // Normally, test runners are not inheriting the JVM arguments from the Gradle daemon.
                                            // This case though, we need it, as we are executing a compilation task inside the nested build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/jvm/JDWPUtil.groovy

    import org.gradle.util.ports.DefaultPortDetector
    import org.gradle.util.ports.FixedAvailablePortAllocator
    import org.junit.Assume
    import org.junit.rules.TestRule
    import org.junit.runner.Description
    import org.junit.runners.model.Statement
    
    /**
     * A utility for communicating with a VM in debug mode using JDWP.
     */
    class JDWPUtil implements TestRule {
        String host
        Integer port
        def vm
        def connection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/Sample.java

    import org.gradle.test.fixtures.file.TestDirectoryProvider;
    import org.gradle.test.fixtures.file.TestFile;
    import org.junit.rules.TestRule;
    import org.junit.runner.Description;
    import org.junit.runners.model.Statement;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import javax.annotation.Nullable;
    
    /**
     * A Junit rule which copies a sample into the test directory before the test executes. Looks for a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/BazelFileContentGenerator.groovy

    # Assumes junit4 is already added to deps by the user.
    
    # See https://github.com/bazelbuild/bazel/issues/1017 for background.
    
    load("@rules_java//java:defs.bzl", "java_test")
    
    _OUTPUT = """ import org.junit.runners.Suite;
            import org.junit.runner.RunWith;
            @RunWith(Suite.class)
            @Suite.SuiteClasses({ %s })
            public class %s {}
            """
    
    _PREFIXES = ("org", "com", "edu")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/waypoint.go

    const (
    	// ConnectTerminate is the name for the resources associated with the termination of HTTP CONNECT.
    	ConnectTerminate = "connect_terminate"
    
    	// MainInternalName is the name for the resources associated with the main (non-tunnel) internal listener.
    	MainInternalName = "main_internal"
    
    	// ConnectOriginate is the name for the resources associated with the origination of HTTP CONNECT.
    	ConnectOriginate = "connect_originate"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. regression-test/src/androidTest/java/okhttp/regression/compare/AndroidHttpEngineTest.kt

    import android.net.http.UrlRequest
    import android.net.http.UrlRequest.Callback
    import android.net.http.UrlRequest.REQUEST_PRIORITY_MEDIUM
    import android.net.http.UrlResponseInfo
    import androidx.test.ext.junit.runners.AndroidJUnit4
    import androidx.test.filters.SdkSuppress
    import androidx.test.platform.app.InstrumentationRegistry
    import java.net.HttpURLConnection
    import java.net.URL
    import java.nio.ByteBuffer
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 24 13:19:43 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top