Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for dial (0.13 sec)

  1. src/net/http/h2_bundle.go

    	if call, ok := p.dialing[addr]; ok {
    		// A dial is already in-flight. Don't start another.
    		return call
    	}
    	call := &http2dialCall{p: p, done: make(chan struct{}), ctx: ctx}
    	if p.dialing == nil {
    		p.dialing = make(map[string]*http2dialCall)
    	}
    	p.dialing[addr] = call
    	go call.dial(call.ctx, addr)
    	return call
    }
    
    // run in its own goroutine.
    func (c *http2dialCall) dial(ctx context.Context, addr string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. pkg/registry/core/service/storage/storage_test.go

    		helpTestCreateUpdateDeleteWithFamilies(t, testCasesV4, []api.IPFamily{api.IPv4Protocol})
    	})
    
    	// Dual-stack v4,v6 cases: Covers the full matrix of:
    	//    policy={nil, single, prefer, require}
    	//    families={nil, single, dual}
    	//    ips={nil, single, dual}
    	testCasesV4V6 := []cudTestCase{{
    		name: "policy:nil_families:nil_ips:nil",
    		line: line(),
    		create: svcTestCase{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	// SingleStack (single IPFamily). Services can be SingleStack (single IPFamily),
    	// PreferDualStack (two dual-stack IPFamilies on dual-stack clusters or single
    	// IPFamily on single-stack clusters), or RequireDualStack (two dual-stack IPFamilies
    	// on dual-stack configured clusters, otherwise fail). The IPFamilies and ClusterIPs assigned
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// Defines which IP family to use for single stack or the order of IP families for dual-stack.
    	// Valid list items are "IPv4", "IPv6".
    	// More info: https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services
    	IpFamilies []string `protobuf:"bytes,29,rep,name=ipFamilies,proto3" json:"ipFamilies,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	IPFamilyPolicySingleStack IPFamilyPolicy = "SingleStack"
    	// IPFamilyPolicyPreferDualStack indicates that this service prefers dual-stack when
    	// the cluster is configured for dual-stack. If the cluster is not configured
    	// for dual-stack the service will be assigned a single IPFamily. If the IPFamily is not
    	// set in service.spec.ipFamilies then the service will be assigned the default IPFamily
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"ipFamilyPolicy":                "IPFamilyPolicy represents the dual-stack-ness requested or required by this Service. If there is no value provided, then this field will be set to SingleStack....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    		}
    
    		// if more than PodCIDR then
    		// - validate for dual stack
    		// - validate for duplication
    		if len(node.Spec.PodCIDRs) > 1 {
    			dualStack, err := netutils.IsDualStackCIDRStrings(node.Spec.PodCIDRs)
    			if err != nil {
    				allErrs = append(allErrs, field.InternalError(podCIDRsField, fmt.Errorf("invalid PodCIDRs. failed to check with dual stack with error:%v", err)))
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      //
      // This field may hold a maximum of two entries (dual-stack families, in
      // either order).  These families must correspond to the values of the
      // clusterIPs field, if specified. Both clusterIPs and ipFamilies are
      // governed by the ipFamilyPolicy field.
      // +listType=atomic
      // +optional
      repeated string ipFamilies = 19;
    
      // IPFamilyPolicy represents the dual-stack-ness requested or required by
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.29.md

    - The `CloudDualStackNodeIPs` feature is now `beta`, meaning that when using
      an external cloud provider that has been updated to support the feature,
      you can pass comma-separated dual-stack `--node-ips` to `kubelet` and have
      the cloud provider take both IPs into account. ([#120275](https://github.com/kubernetes/kubernetes/pull/120275), [@danwinship](https://github.com/danwinship))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.30.md

    - Graduated HorizontalPodAutoscaler support for per-container metrics to stable. ([#123482](https://github.com/kubernetes/kubernetes/pull/123482), [@sanposhiho](https://github.com/sanposhiho))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
Back to top