Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for MODULE_PATH (0.15 sec)

  1. tensorflow/cc/experimental/libtf/tests/runtime_test.cc

      Runtime runtime = RuntimeTest::GetParam()();
    
      // Import the module and grab the callable
      const std::string module_path =
          tensorflow::GetDataDependencyFilepath(kSimpleModel);
    
      TF_ASSERT_OK_AND_ASSIGN(Object module,
                              runtime.Load(String(module_path.c_str())));
      std::cout << "Module imported." << std::endl;
    
      TF_ASSERT_OK_AND_ASSIGN(Callable fn,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 09 12:27:54 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/test/groovy/org/gradle/api/internal/plugins/StartScriptGeneratorTest.groovy

        private static final Iterable<String> DEFAULT_JVM_OPTS = ['-Xmx1024m']
        private static final Iterable<String> CLASSPATH = ['libs/gradle.jar']
        private static final Iterable<String> MODULE_PATH = []
        private static final String SCRIPT_REL_PATH = 'bin/gradle'
        private static final String APP_NAME_SYS_PROP = 'org.gradle.appname'
    
        ScriptGenerator unixStartScriptGenerator = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

    if "\$cygwin" || "\$msys" ; then
        APP_HOME=\$( cygpath --path --mixed "\$APP_HOME" )
        CLASSPATH=\$( cygpath --path --mixed "\$CLASSPATH" )
    <% if ( mainClassName.startsWith('--module ') ) { %>    MODULE_PATH=\$( cygpath --path --mixed "\$MODULE_PATH" )<% } %>
        JAVACMD=\$( cygpath --unix "\$JAVACMD" )
    
        # Now convert the arguments - kludge to limit ourselves to /bin/sh
        for arg do
            if
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/SamplesApplicationIntegrationTest.groovy

            installDir.file('LICENSE').assertIsFile()
            installDir.file('docs/readme.txt').assertIsFile()
    
            installDir.file("${executableDir}/my-app").text.contains("MODULE_PATH=")
            installDir.file("${executableDir}/my-app.bat").text.contains("MODULE_PATH=")
    
            def builder = new ScriptExecuter()
            builder.workingDir installDir.file(executableDir)
            builder.executable 'my-app'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/windowsStartScript.txt

    set CLASSPATH=$classpath
    <% if ( mainClassName.startsWith('--module ') ) { %>set MODULE_PATH=$modulePath<% } %>
    
    @rem Execute ${applicationName}
    "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %${optsEnvironmentVar}% <% if ( appNameSystemProperty ) { %>"-D${appNameSystemProperty}=%APP_BASE_NAME%"<% } %> -classpath "%CLASSPATH%" <% if ( mainClassName.startsWith('--module ') ) { %>--module-path "%MODULE_PATH%" <% } %>${mainClassName} %*
    
    :end
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 13:16:41 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-application/src/main/java/org/gradle/api/internal/plugins/StartScriptTemplateBindingFactory.java

            binding.put(ScriptBindingParameter.CLASSPATH.getKey(), createJoinedPath(details.getClasspath()));
            binding.put(ScriptBindingParameter.MODULE_PATH.getKey(), createJoinedPath(details.getModulePath()));
            return binding;
    
        }
    
        private String createJoinedPath(Iterable<String> path) {
            if (windows) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

        /**
         * The path identified by the Java {@code --module-path} option.
         * Used for compilation, execution and Javadoc among others.
         * The Java tools location is {@link StandardLocation#MODULE_PATH}.
         *
         * <h4>Context-sensitive interpretation</h4>
         * A dependency with this flag will not necessarily be placed on the module-path.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top