Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,651 for _start (0.24 sec)

  1. src/runtime/pprof/testdata/README

    These binaries were generated by:
    
    $ cat empty.s
    .global _start
    _start:
    $ as --32 -o empty.o empty.s && ld  --build-id -m elf_i386 -o test32 empty.o
    $ as --64 -o empty.o empty.s && ld --build-id -o test64 empty.o
    $ powerpc-linux-gnu-as -o empty.o empty.s && powerpc-linux-gnu-ld --build-id -o test32be empty.o
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 08 01:09:18 UTC 2017
    - 411 bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/ReadelfBinaryInfoTest.groovy

     Type:                              EXEC (Executable file)
     Machine:                           Intel 80386
     Version:                           0x1
     Entry point address:               0x8048310
     Start of program headers:          52 (bytes into file)
     Start of section headers:          4400 (bytes into file)
     Flags:                             0x0
     Size of this header:               52 (bytes)
     Size of program headers:           32 (bytes)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. src/debug/elf/symbols_test.go

    			Size:    0x0,
    		},
    		Symbol{
    			Name:    "__libc_csu_fini",
    			Info:    0x12,
    			Other:   0x0,
    			Section: 0xD,
    			Value:   0x4004C0,
    			Size:    0x2,
    		},
    		Symbol{
    			Name:    "_start",
    			Info:    0x12,
    			Other:   0x0,
    			Section: 0xD,
    			Value:   0x4003E0,
    			Size:    0x0,
    		},
    		Symbol{
    			Name:    "__gmon_start__",
    			Info:    0x20,
    			Other:   0x0,
    			Section: 0x0,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 05 18:18:26 UTC 2019
    - 13.4K bytes
    - Viewed (0)
  4. src/cmd/link/internal/wasm/asm.go

    	case "wasip1":
    		writeUleb128(ctxt.Out, 2) // number of exports
    		s := ldr.Lookup("_rt0_wasm_wasip1", 0)
    		idx := uint32(lenHostImports) + uint32(ldr.SymValue(s)>>16) - funcValueOffset
    		writeName(ctxt.Out, "_start")       // the wasi entrypoint
    		ctxt.Out.WriteByte(0x00)            // func export
    		writeUleb128(ctxt.Out, uint64(idx)) // funcidx
    		writeName(ctxt.Out, "memory")       // memory in wasi
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. src/debug/elf/file_test.go

    	//   Machine:                           Intel 80386
    	//   Version:                           0x1
    	//   Entry point address:               0x0
    	//   Start of program headers:          0 (bytes into file)
    	//   Start of section headers:          3003468 (bytes into file)
    	//   Flags:                             0x0
    	//   Size of this header:               52 (bytes)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testlife/testdata/c-life.c

    {
    	struct GoStart_return r;
    
    	// Use Go to start 4 goroutines each of which handles 1/4 of the
    	// board.
    	r = GoStart(0, x, y, 0, x / 2, 0, y / 2, a, n);
    	assert(r.r0 == 0 && r.r1 == 100);	// test multiple returns
    	r = GoStart(1, x, y, x / 2, x, 0, y / 2, a, n);
    	assert(r.r0 == 1 && r.r1 == 101);	// test multiple returns
    	GoStart(2, x, y, 0, x / 2, y / 2, y, a, n);
    	GoStart(3, x, y, x / 2, x, y / 2, y, a, n);
    	GoWait(0);
    	GoWait(1);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/start.go

    // first running goroutine in the traceback.
    //
    // If either of these flags is set, Start re-executes the current
    // executable as a child process, in a special mode in which it
    // acts as a telemetry sidecar for the parent process (the application).
    // In that mode, the call to Start will never return, so Start must
    // be called immediately within main, even before such things as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. src/cmd/trace/jsontrace.go

    	slices.SortStableFunc(opts.tasks, func(a, b *trace.UserTaskSummary) int {
    		aStart, bStart := parsed.startTime(), parsed.startTime()
    		if a.Start != nil {
    			aStart = a.Start.Time()
    		}
    		if b.Start != nil {
    			bStart = b.Start.Time()
    		}
    		if a.Start != b.Start {
    			return cmp.Compare(aStart, bStart)
    		}
    		// Break ties with the end time.
    		aEnd, bEnd := parsed.endTime(), parsed.endTime()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. pkg/test/echo/docker/echo-start.sh

    ECHO_ARGS=${ECHO_ARGS:-}
    # Split ECHO_ARGS by spaces.
    IFS=' ' read -r -a ECHO_ARGS_ARRAY <<< "$ECHO_ARGS"
    
    ISTIO_LOG_DIR=${ISTIO_LOG_DIR:-/var/log/istio}
    
    # Run the pilot agent and Envoy
    /usr/local/bin/istio-start.sh&
    
    # Start the echo server.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 19:04:25 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. tools/packaging/common/istio-start.sh

    if [ "${EXEC_USER}" == "${USER:-}" ] ; then
      # if started as istio-proxy (or current user), do a normal start, without
      # redirecting stderr.
      INSTANCE_IP=${ISTIO_SVC_IP} POD_NAME=${POD_NAME} POD_NAMESPACE=${NS} "${ISTIO_BIN_BASE}/pilot-agent" proxy "${ISTIO_AGENT_FLAGS_ARRAY[@]}"
    else
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 22:16:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top