Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for tpath (1.48 sec)

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

    func hostObject(ctxt *Link, objname string, path string) {
    	if ctxt.Debugvlog > 1 {
    		ctxt.Logf("hostObject(%s)\n", path)
    	}
    	objlib := sym.Library{
    		Pkg: objname,
    	}
    	f, err := bio.Open(path)
    	if err != nil {
    		Exitf("cannot open host object %q file %s: %v", objname, path, err)
    	}
    	defer f.Close()
    	h := ldobj(ctxt, f, &objlib, 0, path, path)
    	if h.ld == nil {
    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/cmd/go/internal/modget/get.go

    		}
    	}
    
    	// Collect changes to explicit requirements in go.mod.
    	for _, req := range oldReqs {
    		if gover.IsToolchain(req.Path) {
    			continue
    		}
    		path := req.Path
    		old := req.Version
    		new := r.buildListVersion[path]
    		if old != new {
    			changes[path] = change{path, old, new}
    		}
    	}
    	for _, req := range newReqs {
    		if gover.IsToolchain(req.Path) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

            try (BuildSession bs = new BuildSession(request, false)) {
                Path path = pomFile.toPath();
                return bs.build(path, ModelSource.fromPath(path));
            }
        }
    
        @Deprecated
        @Override
        public ProjectBuildingResult build(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbSessionImpl.java

                    }
    
                    if ( request instanceof RequestWithPath ) {
                        RequestWithPath rpath = (RequestWithPath) request;
                        ( (RequestWithPath) request ).setFullUNCPath(getTargetDomain(), getTargetHost(), rpath.getFullUNCPath());
                    }
    
                    try {
                        if ( log.isTraceEnabled() ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  5. src/cmd/cgo/out.go

    	fmt.Fprintf(fgcch, "%s\n", p.gccExportHeaderProlog())
    }
    
    // gccgoToSymbol converts a name to a mangled symbol for gccgo.
    func gccgoToSymbol(ppath string) string {
    	if gccgoMangler == nil {
    		var err error
    		cmd := os.Getenv("GCCGO")
    		if cmd == "" {
    			cmd, err = exec.LookPath("gccgo")
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/elf.go

    			elfwritedynentsymsize(ctxt, dynamic, elf.DT_RELSZ, rel)
    			Elfwritedynent(ctxt.Arch, dynamic, elf.DT_RELENT, ELF32RELSIZE)
    		}
    
    		if rpath.val != "" {
    			Elfwritedynent(ctxt.Arch, dynamic, elf.DT_RUNPATH, uint64(dynstr.Addstring(rpath.val)))
    		}
    
    		if ctxt.IsPPC64() {
    			elfWriteDynEntSym(ctxt, dynamic, elf.DT_PLTGOT, plt.Sym())
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. src/cmd/go/go_test.go

    // removed if it exists.
    func (tg *testgoData) creatingTemp(path string) {
    	tg.t.Helper()
    	if filepath.IsAbs(path) && !strings.HasPrefix(path, tg.tempdir) {
    		tg.t.Fatalf("internal testsuite error: creatingTemp(%q) with absolute path not in temporary directory", path)
    	}
    	tg.must(robustio.RemoveAll(path))
    	tg.temps = append(tg.temps, path)
    }
    
    // makeTempdir makes a temporary directory for a run of testgo. If
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/buildlist.go

    		if i > 0 {
    			prev := rootModules[i-1]
    			if prev.Path > m.Path || (prev.Path == m.Path && gover.ModCompare(m.Path, prev.Version, m.Version) > 0) {
    				panic(fmt.Sprintf("newRequirements called with unsorted roots: %v", rootModules))
    			}
    		}
    
    		if v, ok := rs.maxRootVersion[m.Path]; ok && gover.ModCompare(m.Path, v, m.Version) >= 0 {
    			continue
    		}
    		rs.maxRootVersion[m.Path] = m.Version
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/load.go

    // been called.
    func Lookup(parentPath string, parentIsStd bool, path string) (dir, realPath string, err error) {
    	if path == "" {
    		panic("Lookup called with empty package path")
    	}
    
    	if parentIsStd {
    		path = loaded.stdVendor(parentPath, path)
    	}
    	pkg, ok := loaded.pkgCache.Get(path)
    	if !ok {
    		// The loader should have found all the relevant paths.
    		// There are a few exceptions, though:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    [[changes_4.9]]
    == Upgrading from 4.8 and earlier
    
     * <<#rel4.9:lazy_task_creation,Consider trying the lazy API for task creation and configuration>>
    
    === Potential breaking changes
    
     * You can no longer use GPath syntax with link:{javadocPath}/org/gradle/api/tasks/TaskCollection.html#withType-java.lang.Class-[tasks.withType()].
    +
    Use https://docs.groovy-lang.org/latest/html/documentation/#_spread_operator[Groovy's spread operator] instead.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top