Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 42 for dial (0.11 sec)

  1. cluster/gce/windows/k8s-node-setup.psm1

      # E1023 04:03:58.143449    4840 reflector.go:205] k8s.io/kubernetes/pkg/client/informers/informers_generated/internalversion/factory.go:129: Failed to list *core.Endpoints: Get https://35.239.84.171/api/v1/endpoints?limit=500&resourceVersion=0: dial tcp 35.239.84.171:443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  2. cmd/metrics-v2.go

    		Help:      "Total number of internode TCP dial timeouts and errors",
    		Type:      counterMetric,
    	}
    }
    
    func getInternodeTCPAvgDuration() MetricDescription {
    	return MetricDescription{
    		Namespace: interNodeMetricNamespace,
    		Subsystem: trafficSubsystem,
    		Name:      "dial_avg_time",
    		Help:      "Average time of internodes TCP dial calls",
    		Type:      gaugeMetric,
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  3. src/net/http/server.go

    	// Addr optionally specifies the TCP address for the server to listen on,
    	// in the form "host:port". If empty, ":http" (port 80) is used.
    	// The service names are defined in RFC 6335 and assigned by IANA.
    	// See net.Dial for details of the address format.
    	Addr string
    
    	Handler Handler // handler to invoke, http.DefaultServeMux if nil
    
    	// DisableGeneralOptionsHandler, if true, passes "OPTIONS *" requests to the Handler,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. ci/official/requirements_updater/requirements.in

    numpy ~= 1.23.5 ; python_version <= "3.11"
    numpy ~= 1.26.0 ; python_version >= "3.12"
    wheel ~= 0.41.2
    h5py >= 3.10.0
    lit ~= 17.0.2
    opt_einsum == 3.3.0
    astunparse == 1.6.3
    dill == 0.3.7
    astor == 0.7.1
    typing_extensions == 4.8.0
    gast == 0.4.0
    termcolor == 2.3.0
    wrapt == 1.16.0
    tblib == 2.0.0
    ml_dtypes >= 0.4.0, < 0.5.0
    
    # Install tensorboard, and keras
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 19:00:33 UTC 2024
    - 834 bytes
    - Viewed (0)
  5. pkg/workloadapi/workload.proto

      // Address represents the addresses the service can be reached at.
      // There may be multiple addresses for a single service if it resides in multiple networks,
      // multiple clusters, and/or if it's dual stack (TODO: support dual stack).
      // For a headless kubernetes service, this list will be empty.
      repeated NetworkAddress addresses = 4;
      // Ports for the service.
      // The target_port may be overridden on a per-workload basis.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods_test.go

    				{IP: "10.0.0.1"},
    			},
    		},
    		{
    			name: "Single-stack addresses in dual-stack cluster",
    			nodeAddresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "10.0.0.1"},
    			},
    			podIPs: []v1.PodIP{
    				{IP: "10.0.0.1"},
    			},
    		},
    		{
    			name: "Multiple single-stack addresses in dual-stack cluster",
    			nodeAddresses: []v1.NodeAddress{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  7. src/os/exec_windows.go

    			}
    		case '"':
    			b = appendBSBytes(b, nslash/2)
    			if nslash%2 == 0 {
    				// use "Prior to 2008" rule from
    				// http://daviddeley.com/autohotkey/parameters/parameters.htm
    				// section 5.2 to deal with double double quotes
    				if inquote && len(cmd) > 1 && cmd[1] == '"' {
    					b = append(b, c)
    					cmd = cmd[1:]
    				}
    				inquote = !inquote
    			} else {
    				b = append(b, c)
    			}
    			nslash = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_builder.go

    			// IPv6 only
    			c.DnsLookupFamily = cluster.Cluster_V6_ONLY
    		} else {
    			// Dual Stack
    			if features.EnableDualStack {
    				// using Cluster_ALL to enable Happy Eyeballsfor upstream connections
    				c.DnsLookupFamily = cluster.Cluster_ALL
    			} else {
    				// keep the original logic if Dual Stack is disable
    				c.DnsLookupFamily = cluster.Cluster_V4_ONLY
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  9. cmd/kube-proxy/app/server_linux.go

    		}
    	} else {
    		// Assume support for both families.
    		// FIXME: figure out how to check for kernel IPv6 support using nft
    		ipv4Supported, ipv6Supported = true, true
    	}
    
    	// The Linux proxies can always support dual-stack if they can support both IPv4
    	// and IPv6.
    	dualStackSupported = ipv4Supported && ipv6Supported
    	return
    }
    
    // createProxier creates the proxy.Provider
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/analyzers_test.go

    	"istio.io/istio/pkg/config/analysis/analyzers/webhook"
    	"istio.io/istio/pkg/config/analysis/diag"
    	"istio.io/istio/pkg/config/analysis/local"
    	"istio.io/istio/pkg/config/analysis/msg"
    	"istio.io/istio/pkg/config/schema/collections"
    	"istio.io/istio/pkg/util/sets"
    )
    
    type message struct {
    	messageType *diag.MessageType
    	origin      string
    }
    
    type testCase struct {
    	name             string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top