Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 43 for isLegal (0.69 sec)

  1. 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)
  2. src/cmd/vendor/golang.org/x/text/cases/tables13.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
    - 100.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/autoscaling/v2beta1/generated.pb.go

    		if wireType == 4 {
    			return fmt.Errorf("proto: ContainerResourceMetricSource: wiretype end group for non-group")
    		}
    		if fieldNum <= 0 {
    			return fmt.Errorf("proto: ContainerResourceMetricSource: illegal tag %d (wire type %d)", fieldNum, wire)
    		}
    		switch fieldNum {
    		case 1:
    			if wireType != 2 {
    				return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType)
    			}
    			var stringLen uint64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 142.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/asm7.go

    			p.Optab = uint16(cap(optab) - cap(ops) + i + 1)
    			return op
    		}
    	}
    
    	c.ctxt.Diag("illegal combination: %v %v %v %v %v %v, %d %d", p, DRconv(a1), DRconv(a2), DRconv(a3), DRconv(a4), DRconv(a5), p.From.Type, p.To.Type)
    	// Turn illegal instruction into an UNDEF, avoid crashing in asmout
    	return &Optab{obj.AUNDEF, C_NONE, C_NONE, C_NONE, C_NONE, C_NONE, 90, 4, 0, 0, 0}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/text/unicode/bidi/tables11.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
    - 116.6K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/text/unicode/bidi/tables13.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
    - 120.9K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/text/unicode/bidi/tables12.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
    - 118.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/cases/tables12.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
    - 99.2K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/text/unicode/bidi/tables9.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
    - 109.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/batch/v1/generated.pb.go

    		wireType := int(wire & 0x7)
    		if wireType == 4 {
    			return fmt.Errorf("proto: CronJob: wiretype end group for non-group")
    		}
    		if fieldNum <= 0 {
    			return fmt.Errorf("proto: CronJob: 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: Thu Mar 07 20:49:09 UTC 2024
    - 133K bytes
    - Viewed (0)
Back to top