Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for csiproxy (0.14 sec)

  1. pkg/dns/server/name_table_test.go

    	}
    	nw1proxy := &model.Proxy{
    		IPAddresses: []string{"9.9.9.9"},
    		Metadata:    &model.NodeMetadata{Network: "nw1"},
    		Type:        model.SidecarProxy,
    		DNSDomain:   "testns.svc.cluster.local",
    	}
    	cl1proxy := &model.Proxy{
    		IPAddresses: []string{"9.9.9.9"},
    		Metadata:    &model.NodeMetadata{ClusterID: "cl1"},
    		Type:        model.SidecarProxy,
    		DNSDomain:   "testns.svc.cluster.local",
    	}
    
    	pod1 := &model.Proxy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 04:26:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    		return nil, fmt.Errorf("invalid proxy address %q: %v", proxy, err)
    	}
    	return proxyURL, nil
    }
    
    // useProxy reports whether requests to addr should use a proxy,
    // according to the NO_PROXY or no_proxy environment variable.
    // addr is always a canonicalAddr with a host and port.
    func (cfg *config) useProxy(addr string) bool {
    	if len(addr) == 0 {
    		return true
    	}
    	host, port, err := net.SplitHostPort(addr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/serializer"
    	"k8s.io/apimachinery/pkg/util/httpstream"
    	utilnet "k8s.io/apimachinery/pkg/util/net"
    	apiproxy "k8s.io/apimachinery/pkg/util/proxy"
    	"k8s.io/apimachinery/third_party/forked/golang/netutil"
    )
    
    // SpdyRoundTripper knows how to upgrade an HTTP request to one that supports
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/config.go

    	return len(c.Subsets) > 0 && c.Subsets[0].Annotations != nil && strings.HasPrefix(c.Subsets[0].Annotations[annotation.InjectTemplates.Name], "grpc-")
    }
    
    func (c Config) IsTProxy() bool {
    	// TODO this could be HasCustomInjectionMode
    	return len(c.Subsets) > 0 && c.Subsets[0].Annotations != nil && c.Subsets[0].Annotations[annotation.SidecarInterceptionMode.Name] == "TPROXY"
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-kubeapiserver.sh

        params+=" --advertise-address=${vm_external_ip}"
        if [[ -n "${KUBE_API_SERVER_RUNASUSER:-}" && -n "${KUBE_API_SERVER_RUNASGROUP:-}" ]]; then
          chown -R "${KUBE_API_SERVER_RUNASUSER}":"${KUBE_API_SERVER_RUNASGROUP}" /etc/srv/sshproxy/
        fi
      fi
    
      local webhook_authn_config_mount=""
      local webhook_authn_config_volume=""
      if [[ -n "${GCP_AUTHN_URL:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

          return Class.forName("com.google.apphosting.api.ApiProxy")
                  .getMethod("getCurrentEnvironment")
                  .invoke(null)
              != null;
        } catch (ClassNotFoundException e) {
          // If ApiProxy doesn't exist, we're not on AppEngine at all.
          return false;
        } catch (InvocationTargetException e) {
          // If ApiProxy throws an exception, we're not in a proper AppEngine environment.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/MoreExecutors.java

          return Class.forName("com.google.apphosting.api.ApiProxy")
                  .getMethod("getCurrentEnvironment")
                  .invoke(null)
              != null;
        } catch (ClassNotFoundException e) {
          // If ApiProxy doesn't exist, we're not on AppEngine at all.
          return false;
        } catch (InvocationTargetException e) {
          // If ApiProxy throws an exception, we're not in a proper AppEngine environment.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
Back to top