Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 628 for June (0.04 sec)

  1. src/vendor/golang.org/x/text/unicode/norm/forminfo.go

    func (p Properties) CCC() uint8 {
    	if p.index >= firstCCCZeroExcept {
    		return 0
    	}
    	return ccc[p.ccc]
    }
    
    // LeadCCC returns the CCC of the first rune in the decomposition.
    // If there is no decomposition, LeadCCC equals CCC.
    func (p Properties) LeadCCC() uint8 {
    	return ccc[p.ccc]
    }
    
    // TrailCCC returns the CCC of the last rune in the decomposition.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. src/runtime/utf8.go

    func countrunes(s string) int {
    	n := 0
    	for range s {
    		n++
    	}
    	return n
    }
    
    // decoderune returns the non-ASCII rune at the start of
    // s[k:] and the index after the rune in s.
    //
    // decoderune assumes that caller has checked that
    // the to be decoded rune is a non-ASCII rune.
    //
    // If the string appears to be incomplete or decoding problems
    // are encountered (runeerror, k + 1) is returned to ensure
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 06 02:46:02 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  3. internal/s3select/sql/stringfuncs.go

    )
    
    const (
    	percent    rune = '%'
    	underscore rune = '_'
    	runeZero   rune = 0
    )
    
    func evalSQLLike(text, pattern string, escape rune) (match bool, err error) {
    	s := []rune{}
    	prev := runeZero
    	hasLeadingPercent := false
    	patLen := len([]rune(pattern))
    	for i, r := range pattern {
    		if i > 0 && prev == escape {
    			switch r {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  4. src/unicode/script_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package unicode_test
    
    import (
    	"testing"
    	. "unicode"
    )
    
    type T struct {
    	rune   rune
    	script string
    }
    
    var inCategoryTest = []T{
    	{0x0081, "Cc"},
    	{0x200B, "Cf"},
    	{0xf0000, "Co"},
    	{0xdb80, "Cs"},
    	{0x0236, "Ll"},
    	{0x1d9d, "Lm"},
    	{0x07cf, "Lo"},
    	{0x1f8a, "Lt"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 24 14:09:01 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  5. test/alias1.go

    		// must be new code
    		rune32 = true
    	default:
    		panic("rune != int and rune != int32")
    	}
    
    	if rune32 {
    		x = int32(4)
    	} else {
    		x = int(5)
    	}
    	switch x.(type) {
    	case rune:
    		// ok
    	default:
    		panic("int (or int32) != rune")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 803 bytes
    - Viewed (0)
  6. test/fixedbugs/issue5704.go

    	checkBytes([]byte(mystring("")), `[]byte(mystring(""))`)
    	checkBytes(mybytes(""), `mybytes("")`)
    	checkBytes(mybytes(mystring("")), `mybytes(mystring(""))`)
    
    	checkRunes([]rune(""), `[]rune("")`)
    	checkRunes([]rune(mystring("")), `[]rune(mystring(""))`)
    	checkRunes(myrunes(""), `myrunes("")`)
    	checkRunes(myrunes(mystring("")), `myrunes(mystring(""))`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1K bytes
    - Viewed (0)
  7. test/fixedbugs/issue29220.go

    // license that can be found in the LICENSE file.
    
    package main
    
    func ascii(r rune) rune {
    	switch {
    	case 97 <= r && r <= 122:
    		return r - 32
    	case 65 <= r && r <= 90:
    		return r + 32
    	default:
    		return r
    	}
    }
    
    func main() {
    	nomeObjeto := "ABE1FK21"
    	println(string(nomeObjeto[1:4]))
    	println(ascii(rune(nomeObjeto[4])) >= 48 && ascii(rune(nomeObjeto[4])) <= 57)
    	println(string(nomeObjeto[5]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 17 22:49:21 UTC 2018
    - 556 bytes
    - Viewed (0)
  8. test/fixedbugs/issue15611.go

    // ERROR "newline in character literal|newline in rune literal"
    // ERROR "invalid character literal \(missing closing '\)|rune literal not terminated"
    
    const (
    	_ = ''     // ERROR "empty character literal or unescaped ' in character literal|empty rune literal"
    	_ = 'f'
    	_ = 'foo'  // ERROR "invalid character literal \(more than one character\)|more than one character in rune literal"
    //line issue15611.go:11
    	_ = '
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 05 00:40:38 UTC 2020
    - 685 bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/cases/trieval.go

    //	2..0  case mode
    //
    // For the non-exceptional cases, a rune must be either uncased, lowercase or
    // uppercase. If the rune is cased, the XOR pattern maps either a lowercase
    // rune to uppercase or an uppercase rune to lowercase (applied to the 10
    // least-significant bits of the rune).
    //
    // See the definitions below for a more detailed description of the various
    // bits.
    type info uint16
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. src/regexp/syntax/regexp.go

    	case OpLiteral:
    		for _, r := range re.Rune {
    			escape(b, r, false)
    		}
    	case OpCharClass:
    		if len(re.Rune)%2 != 0 {
    			b.WriteString(`[invalid char class]`)
    			break
    		}
    		b.WriteRune('[')
    		if len(re.Rune) == 0 {
    			b.WriteString(`^\x00-\x{10FFFF}`)
    		} else if re.Rune[0] == 0 && re.Rune[len(re.Rune)-1] == unicode.MaxRune && len(re.Rune) > 2 {
    			// Contains 0 and MaxRune. Probably a negated class.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:51 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top