Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 290 for forkc (0.04 sec)

  1. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/language/groovy/GroovyCompileRelocationIntegrationTest.groovy

        @Override
        protected String getTaskName() {
            return ":compile"
        }
    
        @Override
        String getDaemonConfiguration() {
            return "compile.groovyOptions.fork = true"
        }
    
        @Override
        String getForkOptionsObject() {
            return "compile.groovyOptions.forkOptions"
        }
    
        @Override
        protected void setupProjectIn(TestFile projectDir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileRelocationIntegrationTest.groovy

        @Override
        protected String getTaskName() {
            return ":compile"
        }
    
        @Override
        String getDaemonConfiguration() {
            return "compile.options.fork = true"
        }
    
        @Override
        String getForkOptionsObject() {
            return "compile.options.forkOptions"
        }
    
        @Override
        protected void setupProjectIn(TestFile projectDir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. pilot/pkg/config/monitor/README.md

    before returning. This helps to simplify tests that rely on starting in a particular state.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/daemon/JavaCompilerDaemonFailureIntegrationTest.groovy

            def buildOperations = new BuildOperationsFixture(executer, temporaryFolder)
    
            buildFile << """
                apply plugin: "java"
    
                tasks.compileJava {
                    options.fork = true
                    options.forkOptions.jvmArgs = ['--not-a-real-argument']
                }
            """
    
            file('src/main/java/ClassToCompile.java') << """
                class ClassToCompile {
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/plugin-inheritance-merge-order/pom.xml

            <artifactId>maven-it-plugin-expression</artifactId>
            <version>2.1-SNAPSHOT</version>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-fork</artifactId>
            <version>2.1-SNAPSHOT</version>
          </plugin>
        </plugins>
      </build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonExpirationIntegrationTest.groovy

                    }
                }
    
                subprojects { p ->
                    apply plugin: 'java'
                    tasks.withType(JavaCompile) { task ->
                        task.options.fork = true
                        rootProject.tasks.expireWorkers.dependsOn task
                    }
                }
            """.stripIndent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. samples/httpbin/README.md

    # Httpbin service
    
    This sample runs [httpbin](https://httpbin.org) as an Istio service.
    Httpbin is a well-known HTTP testing service that can be used for experimenting
    with all kinds of Istio features.
    
    This sample uses a fork of the [upstream httpbin repo](https://github.com/postmanlabs/httpbin) with [multiarch image support](https://github.com/Kong/httpbin)
    
    To use it:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/ChmodBenchmark.java

    import org.gradle.internal.nativeintegration.services.NativeServices;
    import org.gradle.internal.nativeintegration.services.NativeServices.NativeServicesMode;
    import org.openjdk.jmh.annotations.Benchmark;
    import org.openjdk.jmh.annotations.Fork;
    import org.openjdk.jmh.annotations.Level;
    import org.openjdk.jmh.annotations.Measurement;
    import org.openjdk.jmh.annotations.Scope;
    import org.openjdk.jmh.annotations.Setup;
    import org.openjdk.jmh.annotations.State;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 12:13:32 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/BuildProgressCrossVersionSpec.groovy

            buildFile << """
                apply plugin: 'java'
                ${mavenCentralRepository()}
                dependencies { ${testImplementationConfiguration} 'junit:junit:4.13' }
                compileTestJava.options.fork = true  // forked as 'Gradle Test Executor 1'
            """
    
            file("src/test/java/MyTest.java") << """
                package example;
                public class MyTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. src/syscall/syscall_test.go

    	testSetGetenv(t, "TESTENV", "AVALUE")
    	// make sure TESTENV gets set to "", not deleted
    	testSetGetenv(t, "TESTENV", "")
    }
    
    // Check that permuting child process fds doesn't interfere with
    // reporting of fork/exec status. See Issue 14979.
    func TestExecErrPermutedFds(t *testing.T) {
    	testenv.MustHaveExec(t)
    
    	attr := &os.ProcAttr{Files: []*os.File{os.Stdin, os.Stderr, os.Stdout}}
    	_, err := os.StartProcess("/", []string{"/"}, attr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 14 17:56:50 UTC 2021
    - 1.4K bytes
    - Viewed (0)
Back to top