Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for forkx (0.03 sec)

  1. subprojects/core/build.gradle.kts

    }
    
    packageCycles {
        excludePatterns.add("org/gradle/**")
    }
    
    tasks.test {
        setForkEvery(200)
    }
    
    tasks.compileTestGroovy {
        groovyOptions.fork("memoryInitialSize" to "128M", "memoryMaximumSize" to "1G")
    }
    
    tasks.isolatedProjectsIntegTest {
        enabled = true
    }
    
    integTest.usesJavadocCodeSnippets = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

         * @since 3.0-beta-2
         */
        public void setThreadSafe(boolean threadSafe) {
            this.threadSafe = threadSafe;
        }
    
        /**
         * @return {@code true} if this mojo forks either a goal or the lifecycle, {@code false} otherwise.
         */
        public boolean isForking() {
            return (getExecuteGoal() != null && !getExecuteGoal().isEmpty())
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

            // The test source set will cause errors
            possibleFileLocations.put(writeJavaCausingTwoCompilationErrors("FooTest", "test").absolutePath, 2)
    
            when:
            // Special flag to fork the compiler, see the setup()
            fails("compileTestJava")
    
            then:
            verifyAll(receivedProblem(0)) {
                assertProblem(it, "ERROR", true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. src/os/exec/exec_test.go

    	// and nExits subprocesses that exit immediately.
    	//
    	// When issue #61080 was present, a long-lived "hang" subprocess would
    	// occasionally inherit the fork/exec status pipe from an "exit" subprocess,
    	// causing the parent process (which expects to see an EOF on that pipe almost
    	// immediately) to unexpectedly block on reading from the pipe.
    	var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
Back to top