Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for proxyTest (0.17 sec)

  1. pkg/test/framework/components/echo/workloadclass.go

    // limitations under the License.
    
    package echo
    
    // WorkloadClass is the class of workload in the echo instance
    type WorkloadClass = string
    
    const (
    	Proxyless   WorkloadClass = "proxyless"
    	VM          WorkloadClass = "vm"
    	Sotw        WorkloadClass = "sotw"
    	TProxy      WorkloadClass = "tproxy"
    	Naked       WorkloadClass = "naked"
    	External    WorkloadClass = "external"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. releasenotes/notes/35333.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 28 18:44:27 UTC 2021
    - 207 bytes
    - Viewed (0)
  3. samples/grpc-echo/README.md

    # grpc-echo
    
    This sample demonstrates Istio's Proxyless gRPC support with a special injection template `grpc-agent`.
    The template injects the `istio-proxy` sidecar, but the sidecar will only run `pilot-agent` and not envoy.
    
    See the [gRPC xDS feature status](https://github.com/grpc/grpc/blob/master/doc/grpc_xds_features.md) for more
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 20:15:35 UTC 2021
    - 348 bytes
    - Viewed (0)
  4. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/maven/MavenS3ProxiedRepoIntegrationTest.groovy

            module.pom.expectDownload()
            module.artifact.expectDownload()
    
            when:
            executer.withArguments(
                    "-Dorg.gradle.s3.endpoint=${server.uri}",
                    "-Dhttp.proxyHost=localhost",
                    "-Dhttp.proxyPort=${proxyServer.port}",
                    "-Dhttp.nonProxyHosts=foo",
                    "-Dhttp.proxyUser=proxyUser",
                    "-Dhttp.proxyPassword=proxyPassword"
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpsIntegrationTest.groovy

            given:
            proxyServer.start()
    
            // Note that the HTTPS protocol handler uses the same nonProxyHosts property as the HTTP protocol.
            file("gradle.properties") << """
        systemProp.https.proxyHost=localhost
        systemProp.https.proxyPort=${proxyServer.port}
        systemProp.http.nonProxyHosts=
    """
            server.expect(server.head("/$TEST_DISTRIBUTION_URL"))
            prepareWrapper(getAuthenticatedBaseUrl())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/TestProxyServer.groovy

            }
        }
    
        void configureProxyHost(GradleExecuter executer, String proxyScheme) {
            assert port > 0
            executer.withArgument("-D${proxyScheme}.proxyHost=localhost")
            executer.withArgument("-D${proxyScheme}.proxyPort=${port}")
            // use proxy even when accessing localhost
            executer.withArgument("-Dhttp.nonProxyHosts=")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/grpcgen/grpcgen.go

    // using the generic structures. "Classical" CDS/LDS/RDS/EDS use separate logic -
    // this is used for the API-based LDS and generic messages.
    
    var log = istiolog.RegisterScope("grpcgen", "xDS Generator for Proxyless gRPC")
    
    type GrpcConfigGenerator struct{}
    
    func clusterKey(hostname string, port int) string {
    	return subsetClusterKey("", hostname, port)
    }
    
    func subsetClusterKey(subset, hostname string, port int) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/common/deployment/namespace.go

    	CSvc             = "c"
    	DSvc             = "d"
    	ESvc             = "e"
    	TproxySvc        = "tproxy"
    	VMSvc            = "vm"
    	HeadlessSvc      = "headless"
    	StatefulSetSvc   = "statefulset"
    	ProxylessGRPCSvc = "proxyless-grpc"
    	NakedSvc         = "naked"
    	SotwSvc          = "sotw"
    	WaypointSvc      = "waypoint"
    	CapturedSvc      = "captured"
    )
    
    // EchoNamespace contains the echo instances for a single namespace.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. tools/bug-report/pkg/kubectlcmd/kubectlcmd.go

    func (r *Runner) EnvoyGet(namespace, pod, url string, dryRun bool) (string, error) {
    	if dryRun {
    		return fmt.Sprintf("Dry run: would be running client.EnvoyDo(%s, %s, %s)", pod, namespace, url), nil
    	}
    	task := fmt.Sprintf("ProxyGet %s/%s:%s", namespace, pod, url)
    	r.addRunningTask(task)
    	defer r.removeRunningTask(task)
    	out, err := r.Client.EnvoyDo(context.TODO(), pod, namespace, "GET", url)
    	return string(out), err
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 01:18:03 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top