Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Atack (0.06 sec)

  1. 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)
  2. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"allocateLoadBalancerNodePorts": "allocateLoadBalancerNodePorts defines if...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    	stksize    int64                // stack size for current frame
    	stkptrsize int64                // prefix of stack containing pointers
    
    	// alignment for current frame.
    	// NOTE: when stkalign > PtrSize, currently this only ensures the offsets of
    	// objects in the stack frame are aligned. The stack pointer is still aligned
    	// only PtrSize.
    	stkalign int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.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. pkg/registry/core/service/storage/storage_test.go

    		expectedClusterIP:  "None",
    		expectedClusterIPs: []string{"None"},
    	}, {
    		name:               "update - user changed from ClusterIP to None and changed ClusterIPs in a dual stack (new client making a mistake)",
    		oldService:         makeServiceWithClusterIp("10.0.0.10", []string{"10.0.0.10", "2000::1"}),
    		newService:         makeServiceWithClusterIp("None", []string{"10.0.0.11", "2000::1"}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  6. 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)
  7. staging/src/k8s.io/api/core/v1/types.go

    	// 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. Services can be "SingleStack" (a single IP family),
    	// "PreferDualStack" (two IP families on dual-stack configured clusters or
    	// a single IP family on single-stack clusters), or "RequireDualStack"
    	// (two IP families on dual-stack configured clusters, otherwise fail). The
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. src/net/http/h2_bundle.go

    	}
    }
    
    var http2goroutineSpace = []byte("goroutine ")
    
    func http2curGoroutineID() uint64 {
    	bp := http2littleBuf.Get().(*[]byte)
    	defer http2littleBuf.Put(bp)
    	b := *bp
    	b = b[:runtime.Stack(b, false)]
    	// Parse the 4707 out of "goroutine 4707 ["
    	b = bytes.TrimPrefix(b, http2goroutineSpace)
    	i := bytes.IndexByte(b, ' ')
    	if i < 0 {
    		panic(fmt.Sprintf("No space found in %q", b))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top