Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Collider (5.21 sec)

  1. src/cmd/link/link_test.go

    among green aits and meadows; fog down the river, where it rolls defiled among the tiers of shipping and the waterside pollutions of a great (and dirty) city. Fog on the Essex marshes, fog on the Kentish heights. Fog creeping into the cabooses of collier-brigs; fog lying out on the yards and hovering in the rigging of great ships; fog drooping on the gunwales of barges and small boats. Fog in the eyes and throats of ancient Greenwich pensioners, wheezing by the firesides of their wards; fog in the...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  2. src/cmd/cgo/doc.go

    		_cgo_runtime_cgocall(_cgo_be59f0f25121_Cfunc_puts, uintptr(unsafe.Pointer(&p0)))
    		return
    	}
    
    The hexadecimal number is a hash of cgo's input, chosen to be
    deterministic yet unlikely to collide with other uses. The actual
    function _cgo_be59f0f25121_Cfunc_puts is implemented in a C source
    file compiled by gcc, the file x.cgo2.c:
    
    	void
    	_cgo_be59f0f25121_Cfunc_puts(void *v)
    	{
    		struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf_test.go

    		}
    	}
    }
    
    func TestStaticTmp(t *testing.T) {
    	// Checks that statictmp variables do not appear in debug_info or the
    	// symbol table.
    	// Also checks that statictmp variables do not collide with user defined
    	// variables (issue #25113)
    
    	testenv.MustHaveGoBuild(t)
    
    	mustHaveDWARF(t)
    
    	t.Parallel()
    
    	dir := t.TempDir()
    
    	const prog = `package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    				}
    				newtextp = append(newtextp, s)
    			}
    			newtextp = append(newtextp, ctxt.tramps[i:ntramps]...)
    
    			ctxt.Textp = newtextp
    		}
    	}
    
    	// Add MinLC size after etext, so it won't collide with the next symbol
    	// (which may confuse some symbolizer).
    	sect.Length = va - sect.Vaddr + uint64(ctxt.Arch.MinLC)
    	ldr.SetSymSect(etext, sect)
    	if ldr.SymValue(etext) == 0 {
    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