Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for _Go_ (0.05 sec)

  1. src/cmd/pack/pack.go

    // by the Go compiler, which is an archive file with exactly one entry
    // of __.PKGDEF, or _go_.o, or both entries.
    func isGoCompilerObjFile(a *archive.Archive) bool {
    	switch len(a.Entries) {
    	case 1:
    		return (a.Entries[0].Type == archive.EntryGoObj && a.Entries[0].Name == "_go_.o") ||
    			(a.Entries[0].Type == archive.EntryPkgDef && a.Entries[0].Name == "__.PKGDEF")
    	case 2:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. src/cmd/nm/nm.go

    		}
    
    		for _, sym := range syms {
    			if len(entries) > 1 {
    				name := e.Name()
    				if name == "" {
    					fmt.Fprintf(w, "%s(%s):\t", file, "_go_.o")
    				} else {
    					fmt.Fprintf(w, "%s(%s):\t", file, name)
    				}
    			} else if filePrefix {
    				fmt.Fprintf(w, "%s:\t", file)
    			}
    			if sym.Code == 'U' {
    				fmt.Fprintf(w, "%8s", "")
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. src/cmd/nm/nm_test.go

    		f := strings.Fields(line)
    		var typ, name string
    		var csym bool
    		if iscgo {
    			if len(f) < 4 {
    				continue
    			}
    			csym = !strings.Contains(f[0], "_go_.o")
    			typ = f[2]
    			name = f[3]
    		} else {
    			if len(f) < 3 {
    				continue
    			}
    			typ = f[1]
    			name = f[2]
    		}
    		for i := range syms {
    			sym := &syms[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 20 23:32:34 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/gccgo.go

    	p := a.Package
    	sh := b.Shell(a)
    	objdir := a.Objdir
    	out := "_go_.o"
    	ofile = objdir + out
    	gcargs := []string{"-g"}
    	gcargs = append(gcargs, b.gccArchArgs()...)
    	gcargs = append(gcargs, "-fdebug-prefix-map="+b.WorkDir+"=/tmp/go-build")
    	gcargs = append(gcargs, "-gno-record-gcc-switches")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/gc.go

    	p := a.Package
    	sh := b.Shell(a)
    	objdir := a.Objdir
    	if archive != "" {
    		ofile = archive
    	} else {
    		out := "_go_.o"
    		ofile = objdir + out
    	}
    
    	pkgpath := pkgPath(a)
    	defaultGcFlags := []string{"-p", pkgpath}
    	if p.Module != nil {
    		v := p.Module.GoVersion
    		if v == "" {
    			v = gover.DefaultGoModVersion
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. src/os/os_test.go

    	return "/tmp"
    }
    
    func newFile(testName string, t *testing.T) (f *File) {
    	f, err := CreateTemp(localTmp(), "_Go_"+testName)
    	if err != nil {
    		t.Fatalf("TempFile %s: %s", testName, err)
    	}
    	return
    }
    
    func newDir(testName string, t *testing.T) (name string) {
    	name, err := MkdirTemp(localTmp(), "_Go_"+testName)
    	if err != nil {
    		t.Fatalf("TempDir %s: %s", testName, err)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  7. src/cmd/cgo/doc.go

    	//go:cgo_import_dynamic _ _ "libpthread.so.0"
    	//go:cgo_import_dynamic _ _ "libc.so.6"
    
    In the end, the compiled Go package, which will eventually be
    presented to cmd/link as part of a larger program, contains:
    
    	_go_.o        # gc-compiled object for _cgo_gotypes.go, _cgo_import.go, *.cgo1.go
    	_all.o        # gcc-compiled object for _cgo_export.c, *.cgo2.c
    
    If there is an error generating the _cgo_import.go file, then, instead
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  8. src/cmd/dist/build.go

    	// the assembly files will need.
    	pkgName := pkg
    	if strings.HasPrefix(pkg, "cmd/") && strings.Count(pkg, "/") == 1 {
    		pkgName = "main"
    	}
    	b := pathf("%s/_go_.a", workdir)
    	clean = append(clean, b)
    	if !ispackcmd {
    		link = append(link, b)
    	} else {
    		archive = b
    	}
    
    	// Compile Go code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  9. src/os/pidfd_linux.go

    	// because the PID recycle issue doesn't exist (IOW, pidfd, unlike PID,
    	// is guaranteed to refer to one particular process). Thus, there is no
    	// need for the workaround (blockUntilWaitable + sigMu) from pidWait.
    	//
    	// We _do_ need to be careful about reuse of the pidfd FD number when
    	// closing the pidfd. See handle for more details.
    	handle, status := p.handleTransientAcquire()
    	switch status {
    	case statusDone:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/util/Path.java

            return getPath();
        }
    
        /**
         * Appends the supplied path to this path, returning the new path.
         * The resulting path with be absolute or relative based on the path being appended _to_.
         * It makes no difference if the _appended_ path is absolute or relative.
         *
         * <pre>
         * path(':a:b').append(path(':c:d')) == path(':a:b:c:d')
         * path(':a:b').append(path('c:d')) == path(':a:b:c:d')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 13:03:23 UTC 2023
    - 8.8K bytes
    - Viewed (0)
Back to top