Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 370 for isLegal (0.17 sec)

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

    		wireType := int(wire & 0x7)
    		if wireType == 4 {
    			return fmt.Errorf("proto: Eviction: wiretype end group for non-group")
    		}
    		if fieldNum <= 0 {
    			return fmt.Errorf("proto: Eviction: illegal tag %d (wire type %d)", fieldNum, wire)
    		}
    		switch fieldNum {
    		case 1:
    			if wireType != 2 {
    				return fmt.Errorf("proto: wrong wireType = %d for field ObjectMeta", wireType)
    			}
    			var msglen int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/unicode/bidi/tables10.0.0.go

    		if c1 < 0x80 || 0xC0 <= c1 {
    			return 0, 1 // Illegal UTF-8: not a continuation byte.
    		}
    		o := uint32(i)<<6 + uint32(c1)
    		i = bidiIndex[o]
    		c2 := s[2]
    		if c2 < 0x80 || 0xC0 <= c2 {
    			return 0, 2 // Illegal UTF-8: not a continuation byte.
    		}
    		o = uint32(i)<<6 + uint32(c2)
    		i = bidiIndex[o]
    		c3 := s[3]
    		if c3 < 0x80 || 0xC0 <= c3 {
    			return 0, 3 // Illegal UTF-8: not a continuation byte.
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 110.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/rbac/v1beta1/generated.pb.go

    		wireType := int(wire & 0x7)
    		if wireType == 4 {
    			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)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/rbac/v1alpha1/generated.pb.go

    		wireType := int(wire & 0x7)
    		if wireType == 4 {
    			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)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1/generated.pb.go

    		wireType := int(wire & 0x7)
    		if wireType == 4 {
    			return fmt.Errorf("proto: AuditAnnotation: wiretype end group for non-group")
    		}
    		if fieldNum <= 0 {
    			return fmt.Errorf("proto: AuditAnnotation: illegal tag %d (wire type %d)", fieldNum, wire)
    		}
    		switch fieldNum {
    		case 1:
    			if wireType != 2 {
    				return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType)
    			}
    			var stringLen uint64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 200.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/node/v1alpha1/generated.pb.go

    		wireType := int(wire & 0x7)
    		if wireType == 4 {
    			return fmt.Errorf("proto: Overhead: wiretype end group for non-group")
    		}
    		if fieldNum <= 0 {
    			return fmt.Errorf("proto: Overhead: illegal tag %d (wire type %d)", fieldNum, wire)
    		}
    		switch fieldNum {
    		case 1:
    			if wireType != 2 {
    				return fmt.Errorf("proto: wrong wireType = %d for field PodFixed", wireType)
    			}
    			var msglen int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    '\x07'
    '\xff'
    '\u12e4'
    '\U00101234'
    '\''         // rune literal containing single quote character
    'aa'         // illegal: too many characters
    '\xa'        // illegal: too few hexadecimal digits
    '\0'         // illegal: too few octal digits
    '\uDFFF'     // illegal: surrogate half
    '\U00110000' // illegal: invalid Unicode code point
    </pre>
    
    
    <h3 id="String_literals">String literals</h3>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  8. src/encoding/base32/base32_test.go

    		{[]string{
    			"I4======N4======",
    		}, "illegal base32 data at input byte 2"},
    
    		{[]string{
    			"I4======",
    			"N4======",
    		}, "illegal base32 data at input byte 0"},
    
    		{[]string{
    			"I4======",
    			"========",
    		}, "illegal base32 data at input byte 0"},
    
    		{[]string{
    			"I4I4I4I4",
    			"I4======",
    			"I4======",
    		}, "illegal base32 data at input byte 0"},
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/cases/tables10.0.0.go

    		if c1 < 0x80 || 0xC0 <= c1 {
    			return 0, 1 // Illegal UTF-8: not a continuation byte.
    		}
    		o := uint32(i)<<6 + uint32(c1)
    		i = caseIndex[o]
    		c2 := s[2]
    		if c2 < 0x80 || 0xC0 <= c2 {
    			return 0, 2 // Illegal UTF-8: not a continuation byte.
    		}
    		o = uint32(i)<<6 + uint32(c2)
    		i = caseIndex[o]
    		c3 := s[3]
    		if c3 < 0x80 || 0xC0 <= c3 {
    			return 0, 3 // Illegal UTF-8: not a continuation byte.
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/certificates/v1/generated.pb.go

    		if wireType == 4 {
    			return fmt.Errorf("proto: CertificateSigningRequest: wiretype end group for non-group")
    		}
    		if fieldNum <= 0 {
    			return fmt.Errorf("proto: CertificateSigningRequest: illegal tag %d (wire type %d)", fieldNum, wire)
    		}
    		switch fieldNum {
    		case 1:
    			if wireType != 2 {
    				return fmt.Errorf("proto: wrong wireType = %d for field ObjectMeta", wireType)
    			}
    			var msglen int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 53.7K bytes
    - Viewed (0)
Back to top