Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for moduledata (0.15 sec)

  1. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

      Darwin* )         darwin=true  ;; #(
      MSYS* | MINGW* )  msys=true    ;; #(
      NONSTOP* )        nonstop=true ;;
    esac
    
    CLASSPATH=$classpath
    <% if ( mainClassName.startsWith('--module ') ) { %>
    MODULE_PATH=$modulePath
    <% } %>
    
    # Determine the Java command to use to start the JVM.
    if [ -n "\$JAVA_HOME" ] ; then
        if [ -x "\$JAVA_HOME/jre/sh/java" ] ; then
            # IBM's JDK on AIX uses strange locations for the executables
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/coderepo.go

    		codeRoot:    codeRoot,
    		codeDir:     codeDir,
    		pathPrefix:  pathPrefix,
    		pathMajor:   pathMajor,
    		pseudoMajor: pseudoMajor,
    	}
    
    	return r, nil
    }
    
    func (r *codeRepo) ModulePath() string {
    	return r.modPath
    }
    
    func (r *codeRepo) CheckReuse(ctx context.Context, old *codehost.Origin) error {
    	return r.code.CheckReuse(ctx, old, r.codeDir)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    		end = tok.endPos
    	}
    }
    
    var (
    	slashSlash = []byte("//")
    	moduleStr  = []byte("module")
    )
    
    // ModulePath returns the module path from the gomod file text.
    // If it cannot find a module path, it returns an empty string.
    // It is tolerant of unrelated problems in the go.mod file.
    func ModulePath(mod []byte) string {
    	for len(mod) > 0 {
    		line := mod
    		mod = nil
    		if i := bytes.IndexByte(line, '\n'); i >= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. src/cmd/covdata/metamerge.go

    		}
    		mm.pkgs = append(mm.pkgs, p)
    		mm.pkm[pd.PackagePath()] = p
    		if pcombine {
    			p.pcombinestate = new(pcombinestate)
    			cmdb, err := encodemeta.NewCoverageMetaDataBuilder(pd.PackagePath(), pd.PackageName(), pd.ModulePath())
    			if err != nil {
    				fatal("fatal error creating meta-data builder: %v", err)
    			}
    			dbgtrace(2, "install new pkm entry for package %s pk=%d", pd.PackagePath(), pkgIdx)
    			p.cmdb = cmdb
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modfetch/cache.go

    		return nil, fmt.Errorf("failed to create cache directory: %w", err)
    	}
    
    	return lockedfile.MutexAt(path).Lock()
    }
    
    // A cachingRepo is a cache around an underlying Repo,
    // avoiding redundant calls to ModulePath, Versions, Stat, Latest, and GoMod (but not CheckReuse or Zip).
    // It is also safe for simultaneous use by multiple goroutines
    // (so that it can be returned from Lookup multiple times).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  6. src/cmd/cover/cover.go

    	f.fn.counterVar = ""
    }
    
    func annotate(names []string) {
    	var p *Package
    	if *pkgcfg != "" {
    		pp := pkgconfig.PkgPath
    		pn := pkgconfig.PkgName
    		mp := pkgconfig.ModulePath
    		mdb, err := encodemeta.NewCoverageMetaDataBuilder(pp, pn, mp)
    		if err != nil {
    			log.Fatalf("creating coverage meta-data builder: %v\n", err)
    		}
    		p = &Package{
    			mdb: mdb,
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    	if len(li.Token) != 2 || len(lj.Token) != 2 {
    		// Not a known exclude specification.
    		// Fall back to sorting lexicographically.
    		return lineLess(li, lj)
    	}
    	// An exclude specification has two tokens: ModulePath and Version.
    	// Compare module path by string order and version by semver rules.
    	if pi, pj := li.Token[0], lj.Token[0]; pi != pj {
    		return pi < pj
    	}
    	return semver.Compare(li.Token[1], lj.Token[1]) < 0
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
Back to top