Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for Block (0.81 sec)

  1. src/cmd/go/testdata/mod/example.com_retract_rationale_v1.0.0-block.txt

    -- .mod --
    module example.com/retract/rationale
    
    go 1.14
    -- .info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:11 UTC 2020
    - 96 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/dec.rules

    (StructSelect [i] x:(Load <t> ptr mem)) =>
      @x.Block (Load <v.Type> (OffPtr <v.Type.PtrTo()> [t.FieldOff(int(i))] ptr) mem)
    
    (ITab x:(Load <t> ptr mem)) && t.IsInterface() => @x.Block (Load <typ.Uintptr> ptr mem)
    
    (IData x:(Load <t> ptr mem)) && t.IsInterface() => @x.Block (Load <typ.BytePtr>
          (OffPtr <typ.BytePtrPtr> [config.PtrSize] ptr)
          mem)
    
    (SlicePtr x:(Load <t> ptr mem)) && t.IsSlice() => @x.Block (Load <t.Elem().PtrTo()> ptr mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_exclude_go121.txt

    # go.dev/issue/60028: use semver sort in exclude block in 1.21
    cp $WORK/go.mod.badfmtexclude go.mod
    go mod edit -go=1.20
    cmp go.mod $WORK/go.mod.goodfmtexclude120
    go mod edit -go=1.21
    cmp go.mod $WORK/go.mod.goodfmtexclude121
    
    -- $WORK/go.mod.badfmtexclude --
    module     x.x/y/z
    exclude  (
    	x.1   v1.11.0
    	x.1    v1.10.0
    	x.1     v1.9.0
    )
    -- $WORK/go.mod.goodfmtexclude120 --
    module x.x/y/z
    
    go 1.20
    
    exclude (
    	x.1 v1.10.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 17:26:48 UTC 2023
    - 563 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_retract_rationale.txt

    stdout '^\[Ends with a BEL character. Beep!\x07\]$'
    
    
    # When there is a comment on a block, but not on individual retractions within
    # the block, the rationale should come from the block comment.
    go list -m -retracted -f '{{.Retracted}}' example.com/retract/rationale@v1.0.0-block
    stdout '^\[block comment\]$'
    go list -m -retracted -f '{{.Retracted}}' example.com/retract/rationale@v1.0.0-blockwithcomment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  5. doc/next/6-stdlib/99-minor/runtime/pprof/43669.md

    The maximum stack depth for alloc, mutex, block, threadcreate and goroutine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 124 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/PPC64latelower.rules

    //       both ops are in the same block.
    (CMPconst [0] z:((ADD|AND|ANDN|OR|SUB|NOR|XOR) x y)) && v.Block == z.Block => (CMPconst [0] convertPPC64OpToOpCC(z))
    (CMPconst [0] z:((NEG|CNTLZD|RLDICL) x)) && v.Block == z.Block => (CMPconst [0] convertPPC64OpToOpCC(z))
    // Note: ADDCCconst only assembles to 1 instruction for int16 constants.
    (CMPconst [0] z:(ADDconst [c] x)) && int64(int16(c)) == c && v.Block == z.Block => (CMPconst [0] convertPPC64OpToOpCC(z))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. doc/next/5-toolchain.md

    a cost of an additional 0.1% text and binary size.  This is currently only implemented
    on 386 and amd64 because it has not shown an improvement on other platforms.
    Hot block alignment can be disabled with `-gcflags=[<packages>=]-d=alignhot=0`
    
    ## Assembler {#assembler}
    
    ## Linker {#linker}
    
    <!-- go.dev/issue/67401, CL 585556, CL 587220, and many more -->
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    	&& l.Uses == 2
    	&& clobber(l) =>
      @l.Block (CMP(Q|L|W|B)constload {sym} [makeValAndOff(0, off)] ptr mem)
    
    // Convert ANDload to MOVload when we can do the AND in a containing TEST op.
    // Only do when it's within the same block, so we don't have flags live across basic block boundaries.
    // See issue 44228.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/list_issue_59905.txt

    -- wanterr_59905 --
    [# test/main/level1a
    level1a${/}pkg.go:5:2: level2x redeclared in this block
    	level1a${/}pkg.go:4:2: other declaration of level2x
    level1a${/}pkg.go:5:2: "test/main/level1a/level2y" imported as level2x and not used
    level1a${/}pkg.go:8:39: undefined: level2y
     # test/main/level1b
    level1b${/}pkg.go:5:2: level2x redeclared in this block
    	level1b${/}pkg.go:4:2: other declaration of level2x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 09 17:34:46 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/example.com_retract_rationale_v1.9.0.txt

    retract v1.0.0-long
    
    // Ends with a BEL character. Beep!
    retract v1.0.0-unprintable
    
    // block comment
    retract (
    	v1.0.0-block
    
    	// inner comment
    	v1.0.0-blockwithcomment
    )
    
    retract (
    	[v1.0.0-order, v1.0.0-order] // degenerate range
    	v1.0.0-order // single version
    
    	v1.0.1-order // single version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:11 UTC 2020
    - 1.2K bytes
    - Viewed (0)
Back to top