Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for proxyTest (0.19 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. src/cmd/go/proxy_test.go

    		if err != nil {
    			if testing.Verbose() && encPath != "example.com/invalidpath/v1" {
    				fmt.Fprintf(os.Stderr, "go proxy_test: %v\n", err)
    			}
    			continue
    		}
    		encVers := name[i+1:]
    		vers, err := module.UnescapeVersion(encVers)
    		if err != nil {
    			fmt.Fprintf(os.Stderr, "go proxy_test: %v\n", err)
    			continue
    		}
    		modList = append(modList, module.Version{Path: path, Version: vers})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 03 09:56:24 UTC 2023
    - 12K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. platforms/software/resources-s3/src/test/groovy/org/gradle/internal/resource/transport/aws/s3/S3ClientTest.groovy

            s3Properties.getMaxErrorRetryCount() >> Optional.absent()
            when:
            S3Client s3Client = new S3Client(credentials(), s3Properties)
    
            then:
            s3Client.amazonS3Client.clientConfiguration.proxyHost == 'localhost'
            s3Client.amazonS3Client.clientConfiguration.proxyPort == 8080
            s3Client.amazonS3Client.clientConfiguration.proxyPassword == 'password'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top