Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 292 for forkx (0.05 sec)

  1. build-logic/performance-testing/src/test/kotlin/gradlebuild/performance/tasks/DetermineBaselinesTest.kt

            mockGitOperation(listOf("git", "rev-parse", "--short", "master-fork-point"), "master-fork-point")
    
            // then
            verifyBaselineDetermination("my-branch", false, null, "5.1-commit-master-fork-point")
        }
    
        @Test
        fun `not determines fork point commit in security advisory fork`() {
            // given
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 09:29:24 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/performance/parallelTestExecution/kotlin/build.gradle.kts

    // end::parallel-calculated[]
    
    // tag::fork-every[]
        forkEvery = 100
    // end::fork-every[]
    
    // tag::disable-reports[]
        reports.html.required = false
        reports.junitXml.required = false
    // end::disable-reports[]
    
    // tag::parallel-4[]
    // tag::parallel-calculated[]
    // tag::fork-every[]
    // tag::disable-reports[]
    }
    // end::parallel-4[]
    // end::parallel-calculated[]
    // end::fork-every[]
    // end::disable-reports[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 995 bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/test/groovy/org/gradle/api/tasks/compile/CompileOptionsTest.groovy

            !compileOptions.verbose
            !compileOptions.fork
    
            compileOptions.compilerArgs.empty
            compileOptions.encoding == null
            compileOptions.bootstrapClasspath == null
            compileOptions.extensionDirs == null
    
            compileOptions.forkOptions != null
            compileOptions.debugOptions != null
        }
    
        def testFork() {
            compileOptions.fork = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/DefaultJavaCompileSpecFactoryTest.groovy

    import spock.lang.Specification
    
    class DefaultJavaCompileSpecFactoryTest extends Specification {
    
        def "produces correct spec with fork=#fork, executable=#executable, toolchain=#toolchain"() {
            CompileOptions options = TestUtil.newInstance(CompileOptions, TestUtil.objectFactory())
            options.fork = fork
            options.forkOptions.executable = executable ? Jvm.current().javacExecutable.absolutePath : null
    
            def javaToolchain = null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDebugLogger.java

            if (!forkedExecutions.isEmpty()) {
                for (Map.Entry<String, List<MojoExecution>> fork : forkedExecutions.entrySet()) {
                    logger.debug("--- init fork of " + fork.getKey() + " for " + mojoExecId + " ---");
    
                    debugDependencyRequirements(fork.getValue());
    
                    for (MojoExecution forkedExecution : fork.getValue()) {
                        debugMojoExecution(forkedExecution);
                    }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. platforms/jvm/language-groovy/src/test/groovy/org/gradle/api/tasks/compile/GroovyCompileOptionsTest.groovy

            assertFalse(compileOptions.parameters)
        }
    
        @Test
        void testFork() {
            compileOptions.fork = false
            assertNull(compileOptions.forkOptions.memoryMaximumSize)
    
            compileOptions.fork([memoryMaximumSize: '1g'])
            assertTrue(compileOptions.fork)
            assertEquals(compileOptions.forkOptions.memoryMaximumSize, '1g')
        }
    
        @Test
        void testDefine() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonSystemPropertiesIntegrationTest.groovy

        doLast {
            assert System.getProperty("foo.bar") == "baz"
        }
    }
            """
    
            expect:
            executer.withBuildJvmOpts("-Dfoo.bar=baz").withTasks("verify").run()
        }
    
    
        def "forks new daemon when file encoding set to different value via commandline"() {
            setup:
            buildScript """
                task verify {
                    doFirst {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  8. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/MinimalGroovyCompileOptions.java

            return encoding;
        }
    
        public void setEncoding(String encoding) {
            this.encoding = encoding;
        }
    
        public boolean isFork() {
            return fork;
        }
    
        public void setFork(boolean fork) {
            this.fork = fork;
        }
    
        public boolean isKeepStubs() {
            return keepStubs;
        }
    
        public void setKeepStubs(boolean keepStubs) {
            this.keepStubs = keepStubs;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. maven-compat/src/main/resources/META-INF/maven/plugin.xml

              <description>The current MavenSession instance, which will handle the fork context.</description>
            </parameter>
            <parameter>
              <name>forkId</name>
              <type>int</type>
              <required>true</required>
              <editable>true</editable>
              <description>The current fork identifier.</description>
            </parameter>
          </parameters>
          <configuration>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 28 09:19:32 UTC 2013
    - 9.3K bytes
    - Viewed (0)
  10. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/ForkOptions.java

    import org.gradle.api.tasks.Input;
    import org.gradle.api.tasks.Internal;
    import org.gradle.api.tasks.Optional;
    
    import javax.annotation.Nullable;
    import java.io.File;
    
    /**
     * Fork options for Java compilation. Only take effect if {@code CompileOptions.fork} is {@code true}.
     */
    public abstract class ForkOptions extends ProviderAwareCompilerDaemonForkOptions {
        private static final long serialVersionUID = 0;
    
        private String executable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top