Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 642 for tproxy (0.26 sec)

  1. internal/handlers/proxy.go

    Harshavardhana <******@****.***> 1703206615 -0800
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 22 00:56:55 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/proxy-override-args-native.yaml.injected

            prometheus.io/path: /stats/prometheus
            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
            proxy.istio.io/overrides: '{"initContainers":[{"name":"istio-proxy","command":["envoy"],"args":["-c","my-config.yaml"],"resources":{}}]}'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_list_issue61423.txt

    ! stdout '"Ref":'
    ! stdout '"TagSum":'
    ! stdout '"Reuse":'
    
    
    # With GOPROXY=direct, the -reuse flag has an effect, but
    # the Origin data from the proxy should not be sufficient
    # for the proxy response to be reused.
    
    env GOPROXY=direct
    
    go list -reuse=proxy-latest.json -m -json vcs-test.golang.org/git/issue61415.git@latest
    stdout '"Version": "v0.0.0-20231114180001-f213069baa68"'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 22:43:50 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. pilot/pkg/autoregistration/connections.go

    	if len(connections) == 0 {
    		delete(m.byProxy, k)
    		return false
    	}
    
    	return true
    }
    
    // keys required to uniquely ID a single proxy
    type proxyKey struct {
    	Network   string
    	IP        string
    	GroupName string
    	Namespace string
    }
    
    func makeProxyKey(proxy *model.Proxy) proxyKey {
    	return proxyKey{
    		Network:   string(proxy.Metadata.Network),
    		IP:        proxy.IPAddresses[0],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 19 20:41:55 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. platforms/software/resources-s3/src/test/groovy/org/gradle/internal/resource/transport/aws/s3/S3ConnectionPropertiesTest.groovy

            then:
            properties.getProxy().get() == secureProxy
        }
    
        def "should get non-secure http proxy for override host"() {
            String endpoint = "http://someproxy"
            HttpProxySettings.HttpProxy proxy = Mock()
            HttpProxySettings httpProxySettings = Mock()
    
            1 * httpProxySettings.getProxy() >> proxy
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/actor/internal/DefaultActorFactorySpec.groovy

                }
            } as TargetObject
    
            def actor = factory.createBlockingActor(target)
            def proxy = actor.getProxy(TargetObject)
    
            when:
            start {
                proxy.doStuff('param')
            }
            async {
                thread.blockUntil.param1Start
                proxy.doStuff('param2')
            }
    
            then:
            instant.param2Start > instant.param1End
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/internal/aether/LegacyRepositorySystemSessionExtender.java

                    org.apache.maven.repository.Proxy p = new org.apache.maven.repository.Proxy();
                    p.setHost(proxy.getHost());
                    p.setProtocol(proxy.getType());
                    p.setPort(proxy.getPort());
                    if (proxy.getAuthentication() != null) {
                        repo = new RemoteRepository.Builder(repo).setProxy(proxy).build();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/JavaSystemPropertiesProxySettingsTest.groovy

            settings("proxyHost", prop).getProxy().port == value
    
            where:
            prop     | value
            null     | 80
            ""       | 80
            "notInt" | 80
            "0"      | 0
            "111"    | 111
        }
    
        def "uses specified proxy user and password"() {
            expect:
            def proxy = new TestSystemProperties("proxyHost", null, user, password).getProxy()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inputs/proxy-override-runas.yaml.34.values.gen.yaml

        },
        "namespace": "istio-system",
        "network": "",
        "omitSidecarInjectorConfigMap": false,
        "operatorManageWebhooks": false,
        "pilotCertProvider": "istiod",
        "priorityClassName": "",
        "proxy": {
          "autoInject": "enabled",
          "clusterDomain": "cluster.local",
          "componentLogLevel": "misc:error",
          "enableCoreDump": false,
          "excludeIPRanges": "",
          "excludeInboundPorts": "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. pilot/pkg/xds/statusgen.go

    // isSidecar ad-hoc method to see if connection represents a sidecar
    func isProxy(con *Connection) bool {
    	return con != nil &&
    		con.proxy != nil &&
    		con.proxy.Metadata != nil &&
    		con.proxy.Metadata.ProxyConfig != nil
    }
    
    func isZtunnel(con *Connection) bool {
    	return con != nil &&
    		con.proxy != nil &&
    		con.proxy.Metadata != nil &&
    		con.proxy.Type == model.Ztunnel
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 23:30:28 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top