Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 82 for proxyTest (0.21 sec)

  1. 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)
  2. pkg/registry/core/pod/storage/storage.go

    	LegacyBinding       *LegacyBindingREST
    	Eviction            *EvictionREST
    	Status              *StatusREST
    	EphemeralContainers *EphemeralContainersREST
    	Log                 *podrest.LogREST
    	Proxy               *podrest.ProxyREST
    	Exec                *podrest.ExecREST
    	Attach              *podrest.AttachREST
    	PortForward         *podrest.PortForwardREST
    }
    
    // REST implements a RESTStorage for pods
    type REST struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware_test.go

    			ServerFunc: func(h http.Handler) *httptest.Server {
    				cert, err := tls.X509KeyPair(exampleCert, exampleKey)
    				if err != nil {
    					t.Errorf("https (invalid hostname): proxy_test: %v", err)
    				}
    				ts := httptest.NewUnstartedServer(h)
    				ts.TLS = &tls.Config{
    					Certificates: []tls.Certificate{cert},
    					NextProtos:   []string{"http2", "http/1.1"},
    				}
    				ts.StartTLS()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 39.4K bytes
    - Viewed (0)
  7. 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)
  8. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper_test.go

    func httpsServerInvalidHostname(t *testing.T) serverFunc {
    	return func(h http.Handler) *httptest.Server {
    		cert, err := tls.X509KeyPair(exampleCert, exampleKey)
    		if err != nil {
    			t.Errorf("https (invalid hostname): proxy_test: %v", err)
    		}
    		ts := httptest.NewUnstartedServer(h)
    		ts.TLS = &tls.Config{
    			Certificates: []tls.Certificate{cert},
    		}
    		ts.StartTLS()
    		return ts
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 32.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/proxy.go

    	// the request will only be attempted on the next proxy if the error is
    	// equivalent to os.ErrNotFound, which is true for 404 and 410 responses.
    	fallBackOnError bool
    }
    
    func proxyList() ([]proxySpec, error) {
    	proxyOnce.Do(func() {
    		if cfg.GONOPROXY != "" && cfg.GOPROXY != "direct" {
    			proxyOnce.list = append(proxyOnce.list, proxySpec{url: "noproxy"})
    		}
    
    		goproxy := cfg.GOPROXY
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 15:21:05 UTC 2023
    - 13K bytes
    - Viewed (0)
  10. 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)
Back to top