Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 38 for moduledata (0.15 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/ModelData.java

     * processing by providing a means to transport information that cannot be (easily) extracted from the model itself.
     */
    record ModelData(ModelSource source, Model model) {
    
        /**
         * Gets unique identifier of the model
         *
         * @return The effective identifier of the model, never {@code null}.
         */
        public String id() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/JvmTestExecutionSpec.java

            this.testFramework = testFramework;
            this.classpath = classpath;
            this.modulePath = modulePath;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpArtifact.groovy

    import org.gradle.test.fixtures.resource.RemoteArtifact
    
    abstract class HttpArtifact extends HttpResource implements RemoteArtifact {
        String modulePath
    
        public HttpArtifact(HttpServer server, String modulePath) {
            super(server)
            this.modulePath = modulePath
        }
    
        @Override
        HttpResource getMd5() {
            return new BasicHttpResource(server, getMd5File(), "${path}.md5")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DefaultJavaCompileSpec.java

                    }
                    i++;
                }
                modulePath = modulePaths.stream()
                    .map(File::new)
                    .collect(toImmutableList());
            }
            return modulePath;
        }
    
        @Override
        public void setModulePath(List<File> modulePath) {
            this.modulePath = modulePath;
        }
    
        @Override
        public List<File> getSourceRoots() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 13:38:58 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/DefaultJavaCompileSpecTest.groovy

            DefaultJavaCompileSpec compileSpec = new DefaultJavaCompileSpec()
            compileSpec.setCompileOptions(options)
    
            when:
            def modulePath = compileSpec.modulePath
    
            then:
            modulePath == [new File("/some/path"), new File("/some/path2")]
    
            where:
            description               | modulePathParameters
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/mod/modfile/work.go

    		f.AddNewUse(diskPath, modulePath)
    	}
    	return nil
    }
    
    func (f *WorkFile) AddNewUse(diskPath, modulePath string) {
    	line := f.Syntax.addLine(nil, "use", AutoQuote(diskPath))
    	f.Use = append(f.Use, &Use{Path: diskPath, ModulePath: modulePath, Syntax: line})
    }
    
    func (f *WorkFile) SetUse(dirs []*Use) {
    	need := make(map[string]string)
    	for _, d := range dirs {
    		need[d.Path] = d.ModulePath
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-application/src/main/java/org/gradle/api/internal/plugins/DefaultJavaAppStartScriptGenerationDetails.java

            this.modulePath = modulePath;
            this.scriptRelPath = scriptRelPath;
            this.appNameSystemProperty = appNameSystemProperty;
        }
    
        @Override
        public String getApplicationName() {
            return applicationName;
        }
    
        @Override
        public String getOptsEnvironmentVar() {
            return optsEnvironmentVar;
        }
    
        @Override
        public String getExitEnvironmentVar() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelCacheTag.java

        /**
         * The tag used for the raw model without profile activation
         */
        ModelCacheTag<ModelData> RAW = new ModelCacheTag<ModelData>() {
    
            @Override
            public String getName() {
                return "raw";
            }
    
            @Override
            public Class<ModelData> getType() {
                return ModelData.class;
            }
        };
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Jan 13 13:02:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/test/impl/DefaultTestTaskForkOptions.java

        private final Iterable<File> classpath;
        private final Iterable<File> modulePath;
        private final List<String> jvmArgs;
        private final Map<String, String> environment;
    
        DefaultTestTaskForkOptions(
            File workingDir,
            String executable,
            int javaMajorVersion,
            Iterable<File> classpath,
            Iterable<File> modulePath,
            List<String> jvmArgs,
            Map<String, String> environment
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/ApplicationClassesInSystemClassLoaderWorkerImplementationFactory.java

            List<File> modulePath = new ArrayList<>();
    
            if (runAsModule) {
                modulePath.addAll(workerMainClassPath);
            } else {
                classpath.addAll(workerMainClassPath);
            }
            modulePath.addAll(applicationModulePath);
            classpath.addAll(applicationClasspath);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:09:51 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top