Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for Launcher (0.1 sec)

  1. native-image-tests/src/main/kotlin/okhttp3/RunTests.kt

    import org.junit.platform.launcher.Launcher
    import org.junit.platform.launcher.LauncherDiscoveryRequest
    import org.junit.platform.launcher.PostDiscoveryFilter
    import org.junit.platform.launcher.TestExecutionListener
    import org.junit.platform.launcher.core.EngineDiscoveryOrchestrator
    import org.junit.platform.launcher.core.LauncherConfig
    import org.junit.platform.launcher.core.LauncherDiscoveryRequestBuilder
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. native-image-tests/src/main/kotlin/okhttp3/DotListener.kt

     */
    package okhttp3
    
    import java.io.OutputStream
    import java.io.PrintStream
    import org.junit.platform.engine.TestExecutionResult
    import org.junit.platform.launcher.TestExecutionListener
    import org.junit.platform.launcher.TestIdentifier
    import org.junit.platform.launcher.TestPlan
    
    object DotListener : TestExecutionListener {
      private var originalSystemErr: PrintStream? = null
      private var originalSystemOut: PrintStream? = null
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/MavenCling.java

        /**
         * "Normal" Java entry point. Note: Maven uses ClassWorld Launcher and this entry point is NOT used under normal
         * circumstances.
         */
        public static void main(String[] args) throws IOException {
            int exitCode = new MavenCling().run(args);
            System.exit(exitCode);
        }
    
        /**
         * ClassWorld Launcher "enhanced" entry point: returning exitCode and accepts Class World.
         */
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. impl/maven-cli/src/main/java/org/apache/maven/cling/MavenEncCling.java

        /**
         * "Normal" Java entry point. Note: Maven uses ClassWorld Launcher and this entry point is NOT used under normal
         * circumstances.
         */
        public static void main(String[] args) throws IOException {
            int exitCode = new MavenEncCling().run(args);
            System.exit(exitCode);
        }
    
        /**
         * ClassWorld Launcher "enhanced" entry point: returning exitCode and accepts Class World.
         */
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. impl/maven-cli/src/main/java/org/apache/maven/cling/ClingSupport.java

         */
        public ClingSupport() {
            this(new ClassWorld(CORE_CLASS_REALM_ID, Thread.currentThread().getContextClassLoader()), true);
        }
    
        /**
         * Ctor to be used when running in ClassWorlds Launcher.
         */
        public ClingSupport(ClassWorld classWorld) {
            this(classWorld, false);
        }
    
        private ClingSupport(ClassWorld classWorld, boolean classWorldManaged) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. android-test-app/src/main/AndroidManifest.xml

        <activity
          android:name=".MainActivity"
          android:exported="true">
          <intent-filter>
            <action android:name="android.intent.action.MAIN" />
    
            <category android:name="android.intent.category.LAUNCHER" />
          </intent-filter>
        </activity>
      </application>
    
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Dec 23 14:46:51 UTC 2023
    - 683 bytes
    - Viewed (0)
  7. apache-maven/src/assembly/maven/bin/mvn

    MAVEN_PROJECTBASEDIR="`find_maven_basedir "$@"`"
    MAVEN_OPTS="$MAVEN_OPTS `concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config"`"
    LAUNCHER_JAR=`echo "$MAVEN_HOME"/boot/plexus-classworlds-*.jar`
    LAUNCHER_CLASS=org.codehaus.plexus.classworlds.launcher.Launcher
    
    # For Cygwin and MinGW, switch paths to Windows format before running java(1) command
    if $cygwin || $mingw ; then
      [ -n "$JAVA_HOME" ] &&
        JAVA_HOME=`cygpath --windows "$JAVA_HOME"`
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Oct 24 12:01:35 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/resident/DefaultResidentMavenInvoker.java

    import org.apache.maven.cling.invoker.ProtoLookup;
    import org.apache.maven.cling.invoker.mvn.DefaultMavenInvoker;
    
    /**
     * Local invoker implementation, when Maven CLI is being run. System uses ClassWorld launcher, and class world
     * instance is passed in via "enhanced" main method. Hence, this class expects fully setup ClassWorld via constructor.
     */
    public class DefaultResidentMavenInvoker
            extends DefaultMavenInvoker<
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. apache-maven/src/assembly/maven/bin/mvn.cmd

    shift
    goto processArgs
    
    :endHandleArgs
    call :processArgs %*
    
    for %%i in ("%MAVEN_HOME%"\boot\plexus-classworlds-*) do set LAUNCHER_JAR="%%i"
    set LAUNCHER_CLASS=org.codehaus.plexus.classworlds.launcher.Launcher
    if "%MAVEN_MAIN_CLASS%"=="" @set MAVEN_MAIN_CLASS=org.apache.maven.cling.MavenCling
    
    "%JAVACMD%" ^
      %MAVEN_OPTS% ^
      %MAVEN_DEBUG_OPTS% ^
      --enable-native-access=ALL-UNNAMED ^
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Oct 24 12:01:35 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/InvokerRequest.java

         *
         * @return the current working directory path
         */
        @Nonnull
        Path cwd();
    
        /**
         * Returns the Maven installation directory.
         * This is usually set by the Maven launcher script using the "maven.home" system property.
         *
         * @return the Maven installation directory path
         */
        @Nonnull
        Path installationDirectory();
    
        /**
         * Returns the user's home directory.
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Oct 17 08:06:47 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top