Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for categories (1.11 sec)

  1. src/cmd/cgo/internal/testplugin/testdata/issue62430/main.go

    		panic(err)
    	}
    	s, err := p.Lookup("F")
    	if err != nil {
    		panic(err)
    	}
    
    	f := s.(func(string) *unicode.RangeTable)
    	if f("C") == nil {
    		panic("unicode.Categories not properly initialized")
    	} else {
    		fmt.Println("unicode.Categories properly initialized")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 13:18:51 UTC 2023
    - 804 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testplugin/testdata/issue62430/plugin.go

    package main
    
    import (
    	"unicode"
    )
    
    func F(s string) *unicode.RangeTable {
    	return unicode.Categories[s]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 13:18:51 UTC 2023
    - 124 bytes
    - Viewed (0)
  3. src/cmd/compile/internal/inline/inlheur/scoring.go

    type scoreAdjustTyp uint
    
    // These constants capture the various ways in which the inliner's
    // scoring phase can adjust a callsite score based on heuristics. They
    // fall broadly into three categories:
    //
    // 1) adjustments based solely on the callsite context (ex: call
    // appears on panic path)
    //
    // 2) adjustments that take into account specific interesting values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. doc/go_spec.html

    <p>
    The following terms are used to denote specific Unicode character categories:
    </p>
    <pre class="ebnf">
    newline        = /* the Unicode code point U+000A */ .
    unicode_char   = /* an arbitrary Unicode code point except newline */ .
    unicode_letter = /* a Unicode code point categorized as "Letter" */ .
    unicode_digit  = /* a Unicode code point categorized as "Number, decimal digit" */ .
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/deadstore.go

    	localAddrs := map[any]*Value{}
    	for _, b := range f.Blocks {
    		// Find all the stores in this block. Categorize their uses:
    		//  loadUse contains stores which are used by a subsequent load.
    		//  storeUse contains stores which are used by a subsequent store.
    		loadUse.clear()
    		storeUse.clear()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    </pre>
    
    <p>
    In <a href="https://www.unicode.org/versions/Unicode8.0.0/">The Unicode Standard 8.0</a>,
    Section 4.5 "General Category" defines a set of character categories.
    Go treats all characters in any of the Letter categories Lu, Ll, Lt, Lm, or Lo
    as Unicode letters, and those in the Number category Nd as Unicode digits.
    </p>
    
    <h3 id="Letters_and_digits">Letters and digits</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)
  7. api/go1.txt

    pkg unicode, var Buhid *RangeTable
    pkg unicode, var C *RangeTable
    pkg unicode, var Canadian_Aboriginal *RangeTable
    pkg unicode, var Carian *RangeTable
    pkg unicode, var CaseRanges []CaseRange
    pkg unicode, var Categories map[string]*RangeTable
    pkg unicode, var Cc *RangeTable
    pkg unicode, var Cf *RangeTable
    pkg unicode, var Cham *RangeTable
    pkg unicode, var Cherokee *RangeTable
    pkg unicode, var Co *RangeTable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/loopreschedchecks.go

    	defer f.Cache.freeValueSlice(lastMems)
    	storeUse := f.newSparseSet(f.NumValues())
    	defer f.retSparseSet(storeUse)
    	for _, b := range f.Blocks {
    		// Find all the stores in this block. Categorize their uses:
    		//  storeUse contains stores which are used by a subsequent store.
    		storeUse.clear()
    		stores = stores[:0]
    		var memPhi *Value
    		for _, v := range b.Values {
    			if v.Op == OpPhi {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:10 UTC 2023
    - 16K bytes
    - Viewed (0)
Back to top