Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 138 of 138 for chars (0.08 sec)

  1. src/encoding/xml/xml.go

    			d.err = d.syntaxError(fmt.Sprintf("illegal character code %U", r))
    			return nil
    		}
    	}
    
    	return data
    }
    
    // Decide whether the given rune is in the XML Character Range, per
    // the Char production of https://www.xml.com/axml/testaxml.htm,
    // Section 2.2 Characters.
    func isInCharacterRange(r rune) (inrange bool) {
    	return r == 0x09 ||
    		r == 0x0A ||
    		r == 0x0D ||
    		r >= 0x20 && r <= 0xD7FF ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/rulegen.go

    	var r []string
    
    outer:
    	for s != "" {
    		d := 0               // depth of ({[<
    		var open, close byte // opening and closing markers ({[< or )}]>
    		nonsp := false       // found a non-space char so far
    		for i := 0; i < len(s); i++ {
    			switch {
    			case d == 0 && s[i] == '(':
    				open, close = '(', ')'
    				d++
    			case d == 0 && s[i] == '<':
    				open, close = '<', '>'
    				d++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"AND_NOT", Const, 0},
    		{"AND_NOT_ASSIGN", Const, 0},
    		{"ARROW", Const, 0},
    		{"ASSIGN", Const, 0},
    		{"BREAK", Const, 0},
    		{"CASE", Const, 0},
    		{"CHAN", Const, 0},
    		{"CHAR", Const, 0},
    		{"COLON", Const, 0},
    		{"COMMA", Const, 0},
    		{"COMMENT", Const, 0},
    		{"CONST", Const, 0},
    		{"CONTINUE", Const, 0},
    		{"DEC", Const, 0},
    		{"DEFAULT", Const, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. api/go1.1.txt

    pkg archive/tar, const TypeDir = 53
    pkg archive/tar, const TypeFifo = 54
    pkg archive/tar, const TypeGNULongLink = 75
    pkg archive/tar, const TypeGNULongLink ideal-char
    pkg archive/tar, const TypeGNULongName = 76
    pkg archive/tar, const TypeGNULongName ideal-char
    pkg archive/tar, const TypeLink = 49
    pkg archive/tar, const TypeReg = 48
    pkg archive/tar, const TypeRegA = 0
    pkg archive/tar, const TypeSymlink = 50
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
  5. src/internal/trace/traceviewer/http.go

    <li><a href="/userregions">User-defined regions</a></li>
    </ul>
    
    <h2>Garbage collection metrics</h2>
    <ul>
    <li><a href="/mmu">Minimum mutator utilization</a></li>
    </ul>
    <p>
      This chart indicates the maximum GC pause time (the largest x value
      for which y is zero), and more generally, the fraction of time that
      the processors are available to application goroutines ("mutators"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  6. src/runtime/alg.go

    	}
    	if isDirectIface(t) {
    		// Direct interface types are ptr, chan, map, func, and single-element structs/arrays thereof.
    		// Maps and funcs are not comparable, so they can't reach here.
    		// Ptrs, chans, and single-element items can be compared directly using ==.
    		return x == y
    	}
    	return eq(x, y)
    }
    func ifaceeq(tab *itab, x, y unsafe.Pointer) bool {
    	if tab == nil {
    		return true
    	}
    	t := tab.Type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. src/encoding/gob/encode.go

    type encEngine struct {
    	instr []encInstr
    }
    
    const singletonField = 0
    
    // valid reports whether the value is valid and a non-nil pointer.
    // (Slices, maps, and chans take care of themselves.)
    func valid(v reflect.Value) bool {
    	switch v.Kind() {
    	case reflect.Invalid:
    		return false
    	case reflect.Pointer:
    		return !v.IsNil()
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"chains":                               "\u26d3\ufe0f",
    	"chair":                                "\U0001fa91",
    	"champagne":                            "\U0001f37e",
    	"chart":                                "\U0001f4b9",
    	"chart_with_downwards_trend":           "\U0001f4c9",
    	"chart_with_upwards_trend":             "\U0001f4c8",
    	"checkered_flag":                       "\U0001f3c1",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
Back to top