Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for categories (1.53 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/trace/regions.go

    		if err != nil {
    			http.Error(w, fmt.Sprintf("failed to execute template: %v", err), http.StatusInternalServerError)
    			return
    		}
    	}
    }
    
    // regionFingerprint is a way to categorize regions that goes just one step beyond the region's Type
    // by including the top stack frame.
    type regionFingerprint struct {
    	Frame trace.StackFrame
    	Type  string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  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)
  9. src/cmd/link/internal/ld/data.go

    // from it that correspond to references to symbols defined in DLLs,
    // then fixes up those relocations as needed. A reference to a symbol
    // XYZ from some DLL will fall into one of two categories: an indirect
    // ref via "__imp_XYZ", or a direct ref to "XYZ". Here's an example of
    // an indirect ref (this is an excerpt from objdump -ldr):
    //
    //	     1c1: 48 89 c6                     	movq	%rax, %rsi
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top