Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 97 for moduledata (0.16 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/javadoc/Javadoc.java

            JavaModuleDetector javaModuleDetector = getJavaModuleDetector();
            options.classpath(new ArrayList<>(javaModuleDetector.inferClasspath(isModule, getClasspath()).getFiles()));
            options.modulePath(new ArrayList<>(javaModuleDetector.inferModulePath(isModule, getClasspath()).getFiles()));
            if (options.getBootClasspath() != null && !options.getBootClasspath().isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  2. 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)
  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. 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)
  5. 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)
  6. src/cmd/go/internal/modfetch/coderepo_test.go

    				}
    				ctx := context.Background()
    
    				repo := Lookup(ctx, "direct", tt.path)
    
    				if tt.mpath == "" {
    					tt.mpath = tt.path
    				}
    				if mpath := repo.ModulePath(); mpath != tt.mpath {
    					t.Errorf("repo.ModulePath() = %q, want %q", mpath, tt.mpath)
    				}
    
    				info, err := repo.Stat(ctx, tt.rev)
    				if err != nil {
    					if tt.err != "" {
    						if !strings.Contains(err.Error(), tt.err) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 20:10:14 UTC 2023
    - 29.4K 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. src/cmd/go/internal/modfetch/proxy.go

    	url.RawPath = strings.TrimSuffix(base.RawPath, "/") + "/" + pathEscape(enc)
    
    	return &proxyRepo{url, path, redactedBase, sync.Once{}, nil, nil}, nil
    }
    
    func (p *proxyRepo) ModulePath() string {
    	return p.path
    }
    
    var errProxyReuse = fmt.Errorf("proxy does not support CheckReuse")
    
    func (p *proxyRepo) CheckReuse(ctx context.Context, old *codehost.Origin) error {
    	return errProxyReuse
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 15:21:05 UTC 2023
    - 13K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/Test.java

            FileCollection classpath = javaModuleDetector.inferClasspath(testIsModule, stableClasspath);
            FileCollection modulePath = javaModuleDetector.inferModulePath(testIsModule, stableClasspath);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  10. 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)
Back to top