Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for proxyTest (0.18 sec)

  1. pkg/kube/inject/inject_test.go

    				"values.global.network=network1",
    			},
    		},
    		{
    			in:   "hello.yaml",
    			want: "hello.yaml.proxyImageName.injected",
    			setFlags: []string{
    				"values.global.proxy.image=proxyTest",
    			},
    		},
    		{
    			in:   "hello.yaml",
    			want: "hello-tproxy.yaml.injected",
    			mesh: func(m *meshapi.MeshConfig) {
    				m.DefaultConfig.InterceptionMode = meshapi.ProxyConfig_TPROXY
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

            }
    
            // proxy
            final String proxyHost = getInitParameter(PROXY_HOST_PROPERTY, this.proxyHost, String.class);
            final Integer proxyPort = getInitParameter(PROXY_PORT_PROPERTY, this.proxyPort, Integer.class);
            if (proxyHost != null && proxyPort != null) {
                final HttpHost proxy = new HttpHost(proxyHost, proxyPort);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 09 09:28:25 UTC 2024
    - 41K bytes
    - Viewed (0)
  3. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpIntegrationTest.groovy

            prepareWrapper(server.uri.toString())
            server.expect(server.get("/$TEST_DISTRIBUTION_URL").sendFile(distribution.binDistribution))
    
            file("gradle.properties") << """
        systemProp.http.proxyHost=localhost
        systemProp.http.proxyPort=${proxyServer.port}
        systemProp.http.nonProxyHosts=
    """
            when:
            def result = wrapperExecuter.withTasks('hello').run()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java

            }
    
            // proxy credentials
            final String proxyHost = paramMap.get(CRAWLER_WEB_PREFIX + "proxyHost");
            final String proxyPort = paramMap.get(CRAWLER_WEB_PREFIX + "proxyPort");
            if (StringUtil.isNotBlank(proxyHost) && StringUtil.isNotBlank(proxyPort)) {
                factoryParamMap.put(HcHttpClient.PROXY_HOST_PROPERTY, proxyHost);
                factoryParamMap.put(HcHttpClient.PROXY_PORT_PROPERTY, proxyPort);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/exentity/WebConfig.java

                    rhList.toArray(new org.codelibs.fess.crawler.client.http.RequestHeader[rhList.size()]));
    
            final String proxyHost = (String) paramMap.get(Param.Client.PROXY_HOST);
            final String proxyPort = (String) paramMap.get(Param.Client.PROXY_PORT);
            if (StringUtil.isNotBlank(proxyHost) && StringUtil.isNotBlank(proxyPort)) {
                // proxy credentials
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. pkg/test/framework/resource/flags.go

    		"Skips deploying and using workloads of the given comma-separated classes (e.g. vm, proxyless, etc.)")
    
    	flag.Var(&settingsFromCommandLine.OnlyWorkloadClasses, "istio.test.onlyWorkloads",
    		"Skips deploying and using workloads not included in the given comma-separated classes (e.g. vm, proxyless, etc.)")
    
    	flag.IntVar(&settingsFromCommandLine.Retries, "istio.test.retries", settingsFromCommandLine.Retries,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. pilot/pkg/networking/grpcgen/grpcgen_test.go

    // Avoid using "istiod" as it is implicitly considered clusterLocal
    var testSvcHost = "test.istio-system.svc.cluster.local"
    
    // Local integration tests for proxyless gRPC.
    // The tests will start an in-process Istiod, using the memory store, and use
    // proxyless grpc servers and clients to validate the config generation.
    // GRPC project has more extensive tests for each language, we mainly verify that Istiod
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:04:02 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. pkg/registry/core/service/storage/storage.go

    	ipAllocs map[api.IPFamily]ipallocator.Interface,
    	portAlloc portallocator.Interface,
    	endpoints EndpointsStorage,
    	pods PodStorage,
    	proxyTransport http.RoundTripper) (*REST, *StatusREST, *svcreg.ProxyREST, error) {
    
    	store := &genericregistry.Store{
    		NewFunc:                   func() runtime.Object { return &api.Service{} },
    		NewListFunc:               func() runtime.Object { return &api.ServiceList{} },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/kube/deployment.go

    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/test/util/file"
    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/pkg/test/util/tmpl"
    	"istio.io/istio/pkg/util/protomarshal"
    )
    
    const (
    	// for proxyless we add a special gRPC server that doesn't get configured with xDS for test-runner use
    	grpcMagicPort = 17171
    	// for non-Go implementations of gRPC echo, this is the port used to forward non-gRPC requests to the Go server
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  10. pkg/istio-agent/agent.go

    	}
    
    	a.secretCache, err = a.newSecretManager()
    	if err != nil {
    		return fmt.Errorf("failed to start workload secret manager %v", err)
    	}
    
    	if a.cfg.DisableEnvoy {
    		// For proxyless we don't need an SDS server, but still need the keys and
    		// we need them refreshed periodically.
    		//
    		// This is based on the code from newSDSService, but customized to have explicit rotation.
    		go func() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
Back to top