Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,303 for tproxy (0.31 sec)

  1. pkg/kube/inject/testdata/inject/hello-proxy-override.yaml.injected

            prometheus.io/scrape: "true"
            sidecar.istio.io/proxyImage: docker.io/istio/proxy2_debug:unittest
            sidecar.istio.io/status: '{"initContainers":["istio-init"],"containers":["istio-proxy"],"volumes":["workload-socket","credential-socket","workload-certs","istio-envoy","istio-data","istio-podinfo","istio-token","istiod-ca-cert"],"imagePullSecrets":null,"revision":"default"}'
          creationTimestamp: null
          labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. releasenotes/notes/envoy-stats-proxy-admin-port.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue: []
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 05 09:33:19 UTC 2024
    - 198 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    sysctl -w kernel.core_pattern=/var/lib/istio/data/core.proxy && ulimit -c unlimited securityContext: runAsUser: 0 runAsGroup: 0 runAsNonRoot: false privileged: true {{- end }} containers: - name: istio-proxy {{- if contains "/" .Values.global.proxy.image }} image: "{{ .Values.global.proxy.image }}" {{- else }} image: "{{ .Values.global.hub }}/{{ .Values.global.proxy.image | default "proxyv2" }}:{{ .Values.global.tag }}{{with (.Values.global.proxy.variant | default .Values.global.variant)}}-{{.}}{end}}"...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. maven-core/src/main/java/org/apache/maven/RepositoryUtils.java

        }
    
        private static Proxy toProxy(org.apache.maven.repository.Proxy proxy) {
            Proxy result = null;
            if (proxy != null) {
                AuthenticationBuilder authBuilder = new AuthenticationBuilder();
                authBuilder.addUsername(proxy.getUserName()).addPassword(proxy.getPassword());
                result = new Proxy(proxy.getProtocol(), proxy.getHost(), proxy.getPort(), authBuilder.build());
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top