Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 97 for moduledata (0.19 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileModule.groovy

            boolean publishGradle() {
                gradle
            }
        }
    
        IvyFileModule(String ivyPattern, String artifactPattern, String modulePath, TestFile moduleDir, String organisation, String module, String revision, boolean m2Compatible) {
            this.modulePath = modulePath
            this.ivyPattern = ivyPattern
            this.artifactPattern = artifactPattern
            this.moduleDir = moduleDir
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder.java

            args.add(Joiner.on(File.pathSeparatorChar).join(classpath));
    
            if (!modulePath.isEmpty()) {
                if (moduleVersion != null) {
                    args.add("--module-version");
                    args.add(moduleVersion);
                }
                args.add("--module-path");
                args.add(Joiner.on(File.pathSeparatorChar).join(modulePath));
            }
        }
    
        private void addSourceFiles() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:08 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/MavenHttpArtifact.groovy

        }
    
        @Override
        protected TestFile getSha512File() {
            backingModule.getSha512File(file)
        }
    
        @Override
        String getPath() {
            return "${modulePath}/${backingArtifact.path}"
        }
    
        @Override
        TestFile getFile() {
            return backingArtifact.getFile()
        }
    
        @Override
        String getName() {
            return backingArtifact.name
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-application/src/test/groovy/org/gradle/api/internal/plugins/StartScriptGeneratorTest.groovy

            startScriptGenerator.mainClassName = MAIN_CLASSNAME
            startScriptGenerator.defaultJvmOpts = DEFAULT_JVM_OPTS
            startScriptGenerator.classpath = CLASSPATH
            startScriptGenerator.modulePath = MODULE_PATH
            startScriptGenerator.scriptRelPath = SCRIPT_REL_PATH
            startScriptGenerator.appNameSystemProperty = APP_NAME_SYS_PROP
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompileSpec.java

         */
        Set<String> getClassesToCompile();
    
        List<File> getModulePath();
    
        void setModulePath(List<File> modulePath);
    
        default boolean annotationProcessingConfigured() {
            return !getAnnotationProcessorPath().isEmpty() && !getCompileOptions().getCompilerArgs().contains("-proc:none");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 13:38:58 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/artifact/handler/manager/DefaultArtifactHandlerManager.java

            });
    
            // Note: here, type decides is artifact added to "build path" (for example during resolution)
            // and "build path" is intermediate data that is used to create actual Java classpath/modulepath
            // but to create those, proper filtering should happen via Type properties.
        }
    
        @Override
        public void addHandlers(Map<String, ArtifactHandler> handlers) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/query.go

    // actually has one or more valid replacements.
    type replacementRepo struct {
    	repo versionRepo
    }
    
    var _ versionRepo = (*replacementRepo)(nil)
    
    func (rr *replacementRepo) ModulePath() string { return rr.repo.ModulePath() }
    
    func (rr *replacementRepo) CheckReuse(ctx context.Context, old *codehost.Origin) error {
    	return fmt.Errorf("replacement repo")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/windowsStartScript.txt

    echo location of your Java installation. 1>&2
    
    goto fail
    
    :execute
    @rem Setup the command line
    
    set CLASSPATH=$classpath
    <% if ( mainClassName.startsWith('--module ') ) { %>set MODULE_PATH=$modulePath<% } %>
    
    @rem Execute ${applicationName}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 13:16:41 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. src/internal/coverage/test/roundtrip_test.go

    	if pp != p {
    		t.Errorf("dec.PackagePath(): got %s want %s", pp, p)
    	}
    	ppn := dec.PackageName()
    	if ppn != pn {
    		t.Errorf("dec.PackageName(): got %s want %s", ppn, pn)
    	}
    	pmp := dec.ModulePath()
    	if pmp != mp {
    		t.Errorf("dec.ModulePath(): got %s want %s", pmp, mp)
    	}
    }
    
    func TestMetaDataEncoderDecoder(t *testing.T) {
    	// Test encode path.
    	pp := "foo/bar/pkg"
    	pn := "pkg"
    	mp := "barmod"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 21:42:05 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/test/TestTaskPropertiesServiceIntegrationTest.groovy

                    executable == expectedExecutable
                    javaMajorVersion == expectedJavaVersion
                    classpath.collect { new File(it as String) }.containsAll(expectedClasspath)
                    modulePath == []
                    jvmArgs.contains('-Dkey=value')
                    environment.KEY == 'VALUE'
                }
                with(candidateClassFiles, List) {
                    size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top