Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 65 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. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                        module = module.replace('\\', File.separatorChar).replace('/', File.separatorChar);
    
                        Path modulePath = modelProcessor.locateExistingPom(new File(basedir, module).toPath());
                        File moduleFile = modulePath != null ? modulePath.toFile() : null;
    
                        if (moduleFile == null) {
    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/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)
  5. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

                moduleAdjustments = new HashMap<>();
    
                List<String> modules = getModules();
                if (modules != null) {
                    for (String modulePath : modules) {
                        String moduleName = modulePath;
    
                        if (moduleName.endsWith("/") || moduleName.endsWith("\\")) {
                            moduleName = moduleName.substring(0, moduleName.length() - 1);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

            def modulePath = new File(CacheLayout.FILE_STORE.getPath(metadataCacheDir), module.getPath())
            def artifact = module.getArtifact([type: artifactType, classifier: classifier])
            return new File(new File(modulePath, getChecksum(module, "sha1", artifactType)), artifact.file.name)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  9. cluster/gce/windows/k8s-node-setup.psm1

      }
      if (-not (Test-Path $PsHome\profile.ps1)) {
        New-Item -path $PsHome\profile.ps1 -type file
      }
    
      Add-Content $PsHome\profile.ps1 `
      '$modulePath = "K8S_DIR\GetGcePdName.dll"
      Unblock-File $modulePath
      Import-Module -Name $modulePath'.replace('K8S_DIR', ${env:K8S_DIR})
    }
    
    # Setup cni network for containerd.
    function Prepare-CniNetworking {
        Configure_Containerd_CniNetworking
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  10. 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)
Back to top