Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 292 for forkx (0.04 sec)

  1. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonProcessFailureIntegrationTest.groovy

                plugins {
                    id 'java'
                }
    
                ${dependsOnPidCapturingAnnotationProcessor}
    
                tasks.withType(JavaCompile).configureEach {
                    options.fork = true
                }
            """
            file('src/main/java/Foo.java') << """
                @WorkerPid
                public class Foo {
                    public static void main(String[] args) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 18:43:14 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. .github/workflows/update-nightly.yml

        - cron: 0 4 * * *  # 4am UTC is 9pm PDT and 8pm PST
    name: Set nightly branch to master HEAD
    
    permissions: {}
    
    jobs:
      master-to-nightly:
        if: github.repository == 'tensorflow/tensorflow' # Don't do this in forks
        runs-on: ubuntu-latest
        permissions:
          contents: write
        steps:
        - uses: zofrex/mirror-branch@a8809f0b42f9dfe9b2c5c2162a46327c23d15266 # v1.0.3
          name: Set nightly branch to master HEAD
          with:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 16:45:56 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/groovy/environment/JreJavaHomeGroovyIntegrationTest.groovy

                    apply plugin:'groovy'
                    dependencies{
                        implementation localGroovy()
                    }
                    compileGroovy{
                        options.fork = ${forkMode}
                    }
                    """
            when:
            executer.withJavaHome(jreJavaHome.absolutePath).withTasks("compileGroovy").run().output
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.compile.CompileOptions.xml

                    <td><literal>true</literal></td>
                </tr>
                <tr>
                    <td>debugOptions</td>
                    <td></td>
                </tr>
                <tr>
                    <td>fork</td>
                    <td><literal>false</literal></td>
                </tr>
                <tr>
                    <td>forkOptions</td>
                    <td></td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/GroovyDslFileContentGenerator.groovy

                options.fork = true
                options.incremental = true
                options.forkOptions.memoryInitialSize = compilerMemory
                options.forkOptions.memoryMaximumSize = compilerMemory
                options.forkOptions.jvmArgs.addAll(javaCompileJvmArgs)
            }
    
            tasks.withType(GroovyCompile).configureEach {
                groovyOptions.fork = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/integTest/resources/org/gradle/compile/daemon/ParallelCompilerDaemonIntegrationTest/shared/build.gradle

    subprojects {
        apply plugin: "groovy"
    
        dependencies {
            implementation localGroovy()
        }
    
        compileJava.options.fork = true
    
        // force creation of multiple daemons for Java compilation by alternating between two distinct sets of JVM args
        def count = (project.name - "project") as int
        compileJava.options.forkOptions.jvmArgs = count % 2 ? ["-dsa"] : ["-esa"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 388 bytes
    - Viewed (0)
  7. fess-crawler/src/test/resources/extractor/test.mm

    <map version="0.7.1">
    <node TEXT="&#12479;&#12452;&#12488;&#12523;">
    <node TEXT="&#12486;&#12473;&#12488;" MODIFIED="1237874353965" STYLE="fork"/>
    </node>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 162 bytes
    - Viewed (0)
  8. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/BaseForkOptions.java

    import javax.annotation.Nullable;
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Objects;
    import java.util.stream.Collectors;
    
    /**
     * Fork options for compilation. Only take effect if {@code fork}
     * is {@code true}.
     */
    public class BaseForkOptions extends AbstractOptions {
        private static final long serialVersionUID = 0;
    
        private String memoryInitialSize;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. src/syscall/exec_bsd.go

    func runtime_AfterFork()
    func runtime_AfterForkInChild()
    
    // Fork, dup fd onto 0..len(fd), and exec(argv0, argvv, envv) in child.
    // If a dup or exec fails, write the errno error to pipe.
    // (Pipe is close-on-exec so if exec succeeds, it will be closed.)
    // In the child, this function must not acquire any locks, because
    // they might have been locked at the time of the fork. This means
    // no rescheduling, no malloc calls, and no new stack segments.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonStarter.java

            this.actionExecutionSpecFactory = actionExecutionSpecFactory;
        }
    
        public WorkerDaemonClient startDaemon(DaemonForkOptions forkOptions) {
            LOG.debug("Starting Gradle worker daemon with fork options {}.", forkOptions);
            Timer clock = Time.startTimer();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:39:33 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top