Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for moduledata (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/jvm/plugins-application/src/main/java/org/gradle/api/internal/plugins/StartScriptTemplateBindingFactory.java

            DEFAULT_JVM_OPTS("defaultJvmOpts"),
            APP_NAME_SYS_PROP("appNameSystemProperty"),
            APP_HOME_REL_PATH("appHomeRelativePath"),
            CLASSPATH("classpath"),
            MODULE_PATH("modulePath");
    
            private final String key;
    
            ScriptBindingParameter(String key) {
                this.key = key;
            }
    
            public String getKey() {
                return key;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top