Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 225 for IsSwitch (0.24 sec)

  1. staging/src/k8s.io/api/authentication/v1/generated.pb.go

    			return fmt.Errorf("proto: BoundObjectReference: wiretype end group for non-group")
    		}
    		if fieldNum <= 0 {
    			return fmt.Errorf("proto: BoundObjectReference: illegal tag %d (wire type %d)", fieldNum, wire)
    		}
    		switch fieldNum {
    		case 1:
    			if wireType != 2 {
    				return fmt.Errorf("proto: wrong wireType = %d for field Kind", wireType)
    			}
    			var stringLen uint64
    			for shift := uint(0); ; shift += 7 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 72K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener.go

    func (configgen *ConfigGeneratorImpl) BuildListeners(node *model.Proxy,
    	push *model.PushContext,
    ) []*listener.Listener {
    	builder := NewListenerBuilder(node, push)
    
    	switch node.Type {
    	case model.SidecarProxy:
    		builder = configgen.buildSidecarListeners(builder)
    	case model.Waypoint:
    		builder = configgen.buildWaypointListeners(builder)
    	case model.Router:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. src/crypto/tls/conn.go

    // in each record. Explicit nonces are present only in CBC modes after TLS 1.0
    // and in certain AEAD modes in TLS 1.2.
    func (hc *halfConn) explicitNonceLen() int {
    	if hc.cipher == nil {
    		return 0
    	}
    
    	switch c := hc.cipher.(type) {
    	case cipher.Stream:
    		return 0
    	case aead:
    		return c.explicitNonceLen()
    	case cbcMode:
    		// TLS 1.1 introduced a per-record explicit IV to fix the BEAST attack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. src/syscall/syscall_windows.go

    // using WTF-8 instead of UTF-8 encoding.
    func UTF16ToString(s []uint16) string {
    	maxLen := 0
    	for i, v := range s {
    		if v == 0 {
    			s = s[0:i]
    			break
    		}
    		switch {
    		case v <= rune1Max:
    			maxLen += 1
    		case v <= rune2Max:
    			maxLen += 2
    		default:
    			// r is a non-surrogate that decodes to 3 bytes,
    			// or is an unpaired surrogate (also 3 bytes in WTF-8),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  5. cmd/xl-storage.go

    	}
    
    	// Check each path segment length is > 255 on all Unix
    	// platforms, look for this value as NAME_MAX in
    	// /usr/include/linux/limits.h
    	var count int64
    	for _, p := range pathName {
    		switch p {
    		case '/':
    			count = 0 // Reset
    		case '\\':
    			if runtime.GOOS == globalWindowsOSName {
    				count = 0
    			}
    		default:
    			count++
    			if count > 255 {
    				return errFileNameTooLong
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  6. staging/src/k8s.io/api/rbac/v1/generated.pb.go

    			return fmt.Errorf("proto: AggregationRule: wiretype end group for non-group")
    		}
    		if fieldNum <= 0 {
    			return fmt.Errorf("proto: AggregationRule: illegal tag %d (wire type %d)", fieldNum, wire)
    		}
    		switch fieldNum {
    		case 1:
    			if wireType != 2 {
    				return fmt.Errorf("proto: wrong wireType = %d for field ClusterRoleSelectors", wireType)
    			}
    			var msglen int
    			for shift := uint(0); ; shift += 7 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/rbac/v1beta1/generated.pb.go

    			return fmt.Errorf("proto: AggregationRule: wiretype end group for non-group")
    		}
    		if fieldNum <= 0 {
    			return fmt.Errorf("proto: AggregationRule: illegal tag %d (wire type %d)", fieldNum, wire)
    		}
    		switch fieldNum {
    		case 1:
    			if wireType != 2 {
    				return fmt.Errorf("proto: wrong wireType = %d for field ClusterRoleSelectors", wireType)
    			}
    			var msglen int
    			for shift := uint(0); ; shift += 7 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/rbac/v1alpha1/generated.pb.go

    			return fmt.Errorf("proto: AggregationRule: wiretype end group for non-group")
    		}
    		if fieldNum <= 0 {
    			return fmt.Errorf("proto: AggregationRule: illegal tag %d (wire type %d)", fieldNum, wire)
    		}
    		switch fieldNum {
    		case 1:
    			if wireType != 2 {
    				return fmt.Errorf("proto: wrong wireType = %d for field ClusterRoleSelectors", wireType)
    			}
    			var msglen int
    			for shift := uint(0); ; shift += 7 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_messages.go

    		if !extensions.ReadUint16(&extension) ||
    			!extensions.ReadUint16LengthPrefixed(&extData) {
    			return false
    		}
    
    		if seenExts[extension] {
    			return false
    		}
    		seenExts[extension] = true
    
    		switch extension {
    		case extensionServerName:
    			// RFC 6066, Section 3
    			var nameList cryptobyte.String
    			if !extData.ReadUint16LengthPrefixed(&nameList) || nameList.Empty() {
    				return false
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. src/runtime/asm_amd64.s

    	CMPQ	AX, DX
    	JEQ	noswitch
    
    	CMPQ	AX, m_curg(BX)
    	JNE	bad
    
    	// Switch stacks.
    	// The original frame pointer is stored in BP,
    	// which is useful for stack unwinding.
    	// Save our state in g->sched. Pretend to
    	// be systemstack_switch if the G stack is scanned.
    	CALL	gosave_systemstack_switch<>(SB)
    
    	// switch to g0
    	MOVQ	DX, g(CX)
    	MOVQ	DX, R14 // set the g register
    	MOVQ	(g_sched+gobuf_sp)(DX), SP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top