Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Number (0.4 sec)

  1. doc/godebug.md

    [runtime/metrics](/pkg/runtime/metrics/) counter
    named `/godebug/non-default-behavior/<name>:events`
    that counts the number of times a particular program's
    behavior has changed based on a non-default value
    for that setting.
    For example, when `GODEBUG=http2client=0` is set,
    `/godebug/non-default-behavior/http2client:events`
    counts the number of HTTP transports that the program
    has configured without HTTP/2 support.
    
    ## Default GODEBUG Values {#default}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. api/go1.19.txt

    pkg go/doc/comment, type List struct, Items []*ListItem #51082
    pkg go/doc/comment, type ListItem struct #51082
    pkg go/doc/comment, type ListItem struct, Content []Block #51082
    pkg go/doc/comment, type ListItem struct, Number string #51082
    pkg go/doc/comment, type Paragraph struct #51082
    pkg go/doc/comment, type Paragraph struct, Text []Text #51082
    pkg go/doc/comment, type Parser struct #51082
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:29:41 UTC 2022
    - 17.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/LOONG64.rules

    	&& !config.noDuffDevice && logLargeCopy(v, s)  =>
    	(DUFFCOPY [16 * (128 - s/8)] dst src mem)
    // 16 and 128 are magic constants.  16 is the number of bytes to encode:
    //	MOVV	(R1), R23
    //	ADDV	$8, R1
    //	MOVV	R23, (R2)
    //	ADDV	$8, R2
    // and 128 is the number of such blocks. See runtime/duff_mips64.s:duffcopy.
    
    // large or unaligned move uses a loop
    (Move [s] {t} dst src mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/MIPS64.rules

    	&& !config.noDuffDevice && logLargeCopy(v, s)  =>
    	(DUFFCOPY [16 * (128 - s/8)] dst src mem)
    // 16 and 128 are magic constants.  16 is the number of bytes to encode:
    //	MOVV	(R1), R23
    //	ADDV	$8, R1
    //	MOVV	R23, (R2)
    //	ADDV	$8, R2
    // and 128 is the number of such blocks. See runtime/duff_mips64.s:duffcopy.
    
    // large or unaligned move uses a loop
    (Move [s] {t} dst src mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 41.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/Wasm.rules

    // Strip off any fractional word zeroing.
    (Zero [s] destptr mem) && s%8 != 0 && s > 8 && s < 32 =>
    	(Zero [s-s%8] (OffPtr <destptr.Type> destptr [s%8])
    		(I64Store destptr (I64Const [0]) mem))
    
    // Zero small numbers of words directly.
    (Zero [16] destptr mem) =>
    	(I64Store [8] destptr (I64Const [0])
    		(I64Store destptr (I64Const [0]) mem))
    (Zero [24] destptr mem) =>
    	(I64Store [16] destptr (I64Const [0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 16.9K bytes
    - Viewed (0)
Back to top