Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 55 of 55 for COMMENT (0.15 sec)

  1. src/cmd/go/go_test.go

    	defer tg.cleanup()
    	tg.parallel()
    
    	tg.tempFile("p/src/p/main.go", `package main
    		// #cgo FFLAGS: -no-such-fortran-flag
    		import "C"
    		func main() {}
    	`)
    	tg.tempFile("p/src/p/a.f", `! comment`)
    	tg.setenv("GOPATH", tg.path("p"))
    
    	// This should normally fail because we are passing an unknown flag,
    	// but issue #19080 points to Fortran compilers that succeed anyhow.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  2. src/runtime/mheap.go

    	// could self-deadlock if its stack grows with the lock held.
    	lock mutex
    
    	pages pageAlloc // page allocation data structure
    
    	sweepgen uint32 // sweep generation, see comment in mspan; written during STW
    
    	// allspans is a slice of all mspans ever created. Each mspan
    	// appears exactly once.
    	//
    	// The memory for allspans is manually managed and can be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  3. src/net/http/transport.go

    				return nil
    
    			},
    			fn: func(err error) error {
    				isEOF := err == io.EOF
    				waitForBodyRead <- isEOF
    				if isEOF {
    					<-eofc // see comment above eofc declaration
    				} else if err != nil {
    					if cerr := pc.canceled(); cerr != nil {
    						return cerr
    					}
    				}
    				return err
    			},
    		}
    
    		resp.Body = body
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  4. src/reflect/type.go

    	x := &abi.Type{
    		Align_: goarch.PtrSize,
    		// Don't add spill space here; it's only necessary in
    		// reflectcall's frame, not in the allocated frame.
    		// TODO(mknyszek): Remove this comment when register
    		// spill space in the frame is no longer required.
    		Size_:    align(abid.retOffset+abid.ret.stackBytes, goarch.PtrSize),
    		PtrBytes: uintptr(abid.stackPtrs.n) * goarch.PtrSize,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    // cases (-0 and NaN). We use two hardware ops organized just right to make the
    // result come out how we want it. See https://github.com/golang/go/issues/59488#issuecomment-1553493207
    // (although that comment isn't exactly right, as the value overwritten is not simulated correctly).
    //    t1 = MINSD x, y   => incorrect if x==NaN or x==-0,y==+0
    //    t2 = MINSD t1, x  => fixes x==NaN case
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
Back to top