Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,034 for programs (0.45 sec)

  1. src/cmd/link/internal/ld/lib.go

    		argv = append(argv, p)
    		checkStatic(p)
    	}
    
    	// When building a program with the default -buildmode=exe the
    	// gc compiler generates code requires DT_TEXTREL in a
    	// position independent executable (PIE). On systems where the
    	// toolchain creates PIEs by default, and where DT_TEXTREL
    	// does not work, the resulting programs will not run. See
    	// issue #17847. To avoid this problem pass -no-pie to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  2. src/runtime/runtime-gdb_test.go

            }
    }
    
    func main() {
            go loop()
            time.Sleep(time.Second * 1)
    }
    `
    
    // TestGdbInfCallstack tests that gdb can unwind the callstack of cgo programs
    // on arm64 platforms without endless frames of function 'crossfunc1'.
    // https://golang.org/issue/37238
    func TestGdbInfCallstack(t *testing.T) {
    	checkGdbEnvironment(t)
    
    	testenv.MustHaveCGO(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  3. src/cmd/covdata/tool_test.go

    	moutdir := filepath.Join(s.dir, "mergeCombineOut")
    	if err := os.Mkdir(moutdir, 0777); err != nil {
    		t.Fatalf("can't create outdir %s: %v", moutdir, err)
    	}
    
    	// Run a merge over both programs, using the -pcombine
    	// flag to do maximal combining.
    	ins := fmt.Sprintf("-i=%s,%s,%s,%s", s.outdirs[0], s.outdirs[1],
    		runout[0], runout[1])
    	out := fmt.Sprintf("-o=%s", moutdir)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  4. src/syscall/exec_linux.go

    		if err1 != 0 {
    			goto childerror
    		}
    	}
    
    	// By convention, we don't close-on-exec the fds we are
    	// started with, so if len(fd) < 3, close 0, 1, 2 as needed.
    	// Programs that know they inherit fds >= 3 will need
    	// to set them close-on-exec.
    	for i = len(fd); i < 3; i++ {
    		RawSyscall(SYS_CLOSE, uintptr(i), 0, 0)
    	}
    
    	// Detach fd 0 from tty
    	if sys.Noctty {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. src/runtime/pprof/pprof.go

    // all known allocations. This exception helps mainly in programs running
    // without garbage collection enabled, usually for debugging purposes.
    //
    // The heap profile tracks both the allocation sites for all live objects in
    // the application memory and for all objects allocated since the program start.
    // Pprof's -inuse_space, -inuse_objects, -alloc_space, and -alloc_objects
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  6. src/internal/bisect/bisect.go

    // Package bisect can be used by compilers and other programs
    // to serve as a target for the bisect debugging tool.
    // See [golang.org/x/tools/cmd/bisect] for details about using the tool.
    //
    // To be a bisect target, allowing bisect to help determine which of a set of independent
    // changes provokes a failure, a program needs to:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  7. src/runtime/cgocall.go

    // We want to detect all cases where a program that does not use
    // unsafe makes a cgo call passing a Go pointer to memory that
    // contains an unpinned Go pointer. Here a Go pointer is defined as a
    // pointer to memory allocated by the Go runtime. Programs that use
    // unsafe can evade this restriction easily, so we don't try to catch
    // them. The cgo program will rewrite all possibly bad pointer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    // (that is, named entities in Go programs) relative to their enclosing
    // package.
    //
    // Type-checker objects are canonical, so they are usually identified by
    // their address in memory (a pointer), but a pointer has meaning only
    // within one address space. By contrast, objectpath names allow the
    // identity of an object to be sent from one program to another,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. src/net/net.go

    request consumes only a goroutine, while a blocked C call consumes an operating system thread.
    When cgo is available, the cgo-based resolver is used instead under a variety of
    conditions: on systems that do not let programs make direct DNS requests (OS X),
    when the LOCALDOMAIN environment variable is present (even if empty),
    when the RES_OPTIONS or HOSTALIASES environment variable is non-empty,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  10. src/context/context.go

    // [Cause] on the canceled context or any of its children retrieves
    // the cause. If no cause is specified, Cause(ctx) returns the same
    // value as ctx.Err().
    //
    // Programs that use Contexts should follow these rules to keep interfaces
    // consistent across packages and enable static analysis tools to check context
    // propagation:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 23.7K bytes
    - Viewed (0)
Back to top