Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for no_proxy (0.13 sec)

  1. hack/lib/init.sh

    # compression for build container
    KUBE_RSYNC_COMPRESS="${KUBE_RSYNC_COMPRESS:-0}"
    
    # Set no_proxy for localhost if behind a proxy, otherwise,
    # the connections to localhost in scripts will time out
    export no_proxy="127.0.0.1,localhost${no_proxy:+,${no_proxy}}"
    
    source "${KUBE_ROOT}/hack/lib/util.sh"
    source "${KUBE_ROOT}/hack/lib/logging.sh"
    
    kube::log::install_errexit
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/preflight/checks_test.go

    				Proto: "https",
    				CIDR:  "10.96.0.0/12",
    			}, // Expected to be accessed directly, we set NO_PROXY to 10.0.0.0/8
    			expectWarnings: false,
    		},
    		{
    			check: HTTPProxyCIDRCheck{
    				Proto: "https",
    				CIDR:  "192.168.0.0/16",
    			}, // Expected to go via proxy as this range is not listed in NO_PROXY
    			expectWarnings: true,
    		},
    		{
    			check: HTTPProxyCIDRCheck{
    				Proto: "https",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  3. src/net/http/transport.go

    // ProxyFromEnvironment returns the URL of the proxy to use for a
    // given request, as indicated by the environment variables
    // HTTP_PROXY, HTTPS_PROXY and NO_PROXY (or the lowercase versions
    // thereof). Requests use the proxy from the environment variable
    // matching their scheme, unless excluded by NO_PROXY.
    //
    // The environment values may be either a complete URL or a
    // "host[:port]", in which case the "http" scheme is assumed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  4. src/net/http/transport_test.go

    	}
    }
    
    type proxyFromEnvTest struct {
    	req string // URL to fetch; blank means "http://example.com"
    
    	env      string // HTTP_PROXY
    	httpsenv string // HTTPS_PROXY
    	noenv    string // NO_PROXY
    	reqmeth  string // REQUEST_METHOD
    
    	want    string
    	wanterr error
    }
    
    func (t proxyFromEnvTest) String() string {
    	var buf strings.Builder
    	space := func() {
    		if buf.Len() > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/env_changed.txt

    [GOARCH:amd64] stdout '"GOARCH": "arm64"'
    [!GOARCH:amd64] stdout '"GOARCH": "amd64"'
    
    env GOPROXY=s
    go env -changed GOPROXY
    ! stdout 'GOPROXY'
    env GOPROXY=s2
    go env -changed GOPROXY
    stdout 'GOPROXY=''?s2''?'
    
    env GOROOT=./b
    go env -changed
    ! stdout 'GOTOOLCHAIN=''?local''?'
    
    --  a/go.env --
    GOPROXY=s
    
    --  b/go.env --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:49:03 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. pkg/envoy/proxy.go

    	Concurrency   int32
    
    	// For unit testing, in combination with NoEnvoy prevents agent.Run from blocking
    	TestOnly    bool
    	AgentIsRoot bool
    }
    
    // NewProxy creates an instance of the proxy control commands
    func NewProxy(cfg ProxyConfig) Proxy {
    	// inject tracing flag for higher levels
    	var args []string
    	logLevel, componentLogs := splitComponentLog(cfg.LogLevel)
    	if logLevel != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. build/common.sh

    unset CDPATH
    
    USER_ID=$(id -u)
    GROUP_ID=$(id -g)
    
    DOCKER_OPTS=${DOCKER_OPTS:-""}
    IFS=" " read -r -a DOCKER <<< "docker ${DOCKER_OPTS}"
    DOCKER_HOST=${DOCKER_HOST:-""}
    GOPROXY=${GOPROXY:-""}
    
    # This will canonicalize the path
    KUBE_ROOT=$(cd "$(dirname "${BASH_SOURCE[0]}")"/.. && pwd -P)
    
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    # Constants
    readonly KUBE_BUILD_IMAGE_REPO=kube-build
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  8. hack/lib/golang.sh

        if [[ "${#uncovered[@]}" != 0 ]]; then
          V=2 kube::log::info "Building ${uncovered[*]} without coverage..."
          GOPROXY=off go install "${build_args[@]}" "${uncovered[@]}"
        else
          V=2 kube::log::info "Nothing to build without coverage."
        fi
      else
        V=2 kube::log::info "Coverage is disabled."
        GOPROXY=off go install "${build_args[@]}" "$@"
      fi
    }
    
    # Args:
    #  $1: platform (e.g. darwin/amd64)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/testing/NullPointerTester.java

        return new DummyProxy() {
          @Override
          <R> @Nullable R dummyReturnValue(TypeToken<R> returnType) {
            return getDefaultValue(returnType);
          }
        }.newProxy(type);
      }
    
      private static Invokable<?, ?> invokable(@Nullable Object instance, Method method) {
        if (instance == null) {
          return Invokable.from(method);
        } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/testing/NullPointerTester.java

        return new DummyProxy() {
          @Override
          <R> @Nullable R dummyReturnValue(TypeToken<R> returnType) {
            return getDefaultValue(returnType);
          }
        }.newProxy(type);
      }
    
      private static Invokable<?, ?> invokable(@Nullable Object instance, Method method) {
        if (instance == null) {
          return Invokable.from(method);
        } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top