Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 138 for proxyv2 (0.11 sec)

  1. cmd/kubemark/app/hollow_node.go

    	ProxierMinSyncPeriod time.Duration
    }
    
    const (
    	maxPods     = 110
    	podsPerCore = 0
    )
    
    // TODO(#45650): Refactor hollow-node into hollow-kubelet and hollow-proxy
    // and make the config driven.
    var knownMorphs = sets.NewString("kubelet", "proxy")
    
    func (c *hollowNodeConfig) addFlags(fs *pflag.FlagSet) {
    	fs.StringVar(&c.KubeconfigPath, "kubeconfig", "/kubeconfig/kubeconfig", "Path to kubeconfig file.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/integTest/groovy/org/gradle/integtests/fixtures/executer/IgnoreKotlinCompilerWarningIntegrationTest.groovy

    \tat java.rmi/java.rmi.server.RemoteObjectInvocationHandler.invokeRemoteMethod(RemoteObjectInvocationHandler.java:217)
    \tat java.rmi/java.rmi.server.RemoteObjectInvocationHandler.invoke(RemoteObjectInvocationHandler.java:162)
    \tat com.sun.proxy.$Proxy82.compile(Unknown Source)
    \tat org.jetbrains.kotlin.compilerRunner.GradleKotlinCompilerWork.incrementalCompilationWithDaemon(GradleKotlinCompilerWork.kt:282)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  3. pkg/test/echo/server/forwarder/config.go

    	if err != nil {
    		return err
    	}
    
    	c.hboneTLSConfig, err = newHBONETLSConfig(c)
    	if err != nil {
    		return err
    	}
    
    	// Parse the proxy if specified.
    	if len(c.Proxy) > 0 {
    		proxyURL, err := url.Parse(c.Proxy)
    		if err != nil {
    			return err
    		}
    
    		c.proxyURL = http.ProxyURL(proxyURL)
    	}
    
    	// Configure reuseConnection and forceDNSLookup as appropriate.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. pkg/proxy/serviceport.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package proxy
    
    import (
    	"fmt"
    	"net"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/klog/v2"
    	apiservice "k8s.io/kubernetes/pkg/api/v1/service"
    	proxyutil "k8s.io/kubernetes/pkg/proxy/util"
    	netutils "k8s.io/utils/net"
    )
    
    // ServicePort is an interface which abstracts information about a service.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 08:17:56 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/http/RetryAndFollowUpInterceptor.kt

        val method = userResponse.request.method
        when (responseCode) {
          HTTP_PROXY_AUTH -> {
            val selectedProxy = route!!.proxy
            if (selectedProxy.type() != Proxy.Type.HTTP) {
              throw ProtocolException("Received HTTP_PROXY_AUTH (407) code while not using proxy")
            }
            return client.proxyAuthenticator.authenticate(route, userResponse)
          }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:24:48 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/controller.go

    // GetProxyServiceTargets returns service targets co-located with a given proxy
    // TODO: this code does not return k8s service instances when the proxy's IP is a workload entry
    // To tackle this, we need a ip2instance map like what we have in service entry.
    func (c *Controller) GetProxyServiceTargets(proxy *model.Proxy) []model.ServiceTarget {
    	if len(proxy.IPAddresses) > 0 {
    		proxyIP := proxy.IPAddresses[0]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  7. cluster/gce/config-test.sh

    # TODO(#51292): Make kube-proxy Daemonset default and remove the configuration here.
    # Optional: [Experiment Only] Run kube-proxy as a DaemonSet if set to true, run as static pods otherwise.
    KUBE_PROXY_DAEMONSET=${KUBE_PROXY_DAEMONSET:-false} # true, false
    
    # Control whether the startup scripts manage the lifecycle of kube-proxy
    # When true, the startup scripts do not enable kube-proxy either as a daemonset addon or as a static pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  8. pkg/config/validation/agent/validation_test.go

    	valid := &meshconfig.ProxyConfig{
    		ConfigPath:             "/etc/istio/proxy",
    		BinaryPath:             "/usr/local/bin/envoy",
    		DiscoveryAddress:       "istio-pilot.istio-system:15010",
    		ProxyAdminPort:         15000,
    		DrainDuration:          durationpb.New(45 * time.Second),
    		ClusterName:            &meshconfig.ProxyConfig_ServiceCluster{ServiceCluster: "istio-proxy"},
    		StatsdUdpAddress:       "istio-statsd-prom-bridge.istio-system:9125",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  9. tests/integration/helm/upgrade/util.go

    		_, newClient, newServer := sanitycheck.SetupTrafficTest(t, t, "")
    		sanitycheck.RunTrafficTestClientServer(t, newClient, newServer)
    
    		// now check that we are compatible with N-1 proxy with N proxy
    		sanitycheck.RunTrafficTestClientServer(t, oldClient, newServer)
    	}
    }
    
    // performCanaryUpgradeFunc returns the provided function necessary to run inside an integration test
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/reflect/Types.java

            if (obj != null
                && Proxy.isProxyClass(obj.getClass())
                && Proxy.getInvocationHandler(obj) instanceof TypeVariableInvocationHandler) {
              TypeVariableInvocationHandler typeVariableInvocationHandler =
                  (TypeVariableInvocationHandler) Proxy.getInvocationHandler(obj);
              TypeVariableImpl<?> that = typeVariableInvocationHandler.typeVariableImpl;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top