Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 866 for tproxy (0.23 sec)

  1. 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)
  2. src/cmd/go/internal/modfetch/sumdb.go

    		// with a good error message.
    
    		// Exception #1: using GOPROXY=file:// to test a distpack.
    		if strings.HasPrefix(cfg.GOPROXY, "file://") && !strings.ContainsAny(cfg.GOPROXY, ",|") {
    			must = false
    		}
    		// Exception #2: the Go proxy+checksum database cannot check itself
    		// while doing the initial download.
    		if strings.Contains(os.Getenv("GIT_HTTP_USER_AGENT"), "proxy.golang.org") {
    			must = false
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 15:02:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_sumdb_file_path.txt

    [!GOOS:windows] env GOPROXY=file://$WORK/emptyproxy,https://proxy.golang.org
    go get golang.org/x/text@v0.3.2
    
    # After a successful sumdb lookup, the lookup can be repeated
    # using the download cache as a proxy.
    cp supported $GOPATH/pkg/mod/cache/download/sumdb/sum.golang.org/supported
    [GOOS:windows] env GOPROXY=file:///$WORK/gopath1/pkg/mod/cache/download,file:///$WORK/sumproxy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 17 18:25:37 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_gonoproxy.txt

    env GOPROXY=','
    ! go get golang.org/x/text
    stderr '^go: golang.org/x/text: GOPROXY list is not the empty string, but contains no entries$'
    
    # When GOPROXY=off, fetching modules not matched by GONOPROXY fails.
    env GONOPROXY=*/fortune
    env GOPROXY=off
    ! go get golang.org/x/text
    stderr '^go: golang.org/x/text: module lookup disabled by GOPROXY=off$'
    
    # GONOPROXY bypasses proxy
    [!net:rsc.io] skip
    [!git] skip
    env GOPRIVATE=none
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/go/testdata/script/mod_sumdb_golang.txt

    # Test default GOPROXY and GOSUMDB
    [go-builder] env GOPROXY=
    [go-builder] env GOSUMDB=
    [go-builder] go env GOPROXY
    [go-builder] stdout '^https://proxy.golang.org,direct$'
    [go-builder] go env GOSUMDB
    [go-builder] stdout '^sum.golang.org$'
    [go-builder] env GOPROXY=https://proxy.golang.org
    [go-builder] go env GOSUMDB
    [go-builder] stdout '^sum.golang.org$'
    
    # Download direct from github.
    
    [!net:proxy.golang.org] skip
    [!net:sum.golang.org] skip
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 17 18:25:37 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_proxy_https.txt

    env GO111MODULE=on
    
    # GOPROXY file paths must provide the "file://" prefix explicitly.
    env GOPROXY=$WORK/proxydir
    ! go list -versions -m golang.org/x/text
    stderr 'invalid proxy URL.*proxydir'
    
    [!net:proxy.golang.org] stop
    
    # GOPROXY HTTPS paths may elide the "https://" prefix.
    # (See golang.org/issue/32191.)
    env GOPROXY=proxy.golang.org
    env GOSUMDB=
    go list -versions -m golang.org/x/text
    
    -- go.mod --
    module example.com
    go 1.13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 492 bytes
    - Viewed (0)
Back to top