Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 57 for forkx (0.22 sec)

  1. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

            group = ciGroup
        }
    
        register("noDaemonTest") {
            description = "Run all integration tests in no-daemon execution mode: each Gradle execution started in a test forks a new daemon"
            group = ciGroup
        }
    
        register("configCacheTest") {
            description = "Run all integration tests with instant execution"
            group = ciGroup
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/common/extensions.kt

            param("env.ANDROID_SDK_ROOT", os.androidHome)
            param("env.GRADLE_INTERNAL_REPO_URL", "%gradle.internal.repository.url%")
            if (os == Os.MACOS) {
                // Use fewer parallel forks on macOs, since the agents are not very powerful.
                param("maxParallelForks", "2")
            }
            if (os == Os.LINUX || os == Os.MACOS) {
                param("env.LC_ALL", "en_US.UTF-8")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (1)
  3. src/runtime/sys_darwin.go

    	libcCall(unsafe.Pointer(abi.FuncPCABI0(pthread_kill_trampoline)), unsafe.Pointer(&t))
    	return
    }
    func pthread_kill_trampoline()
    
    // osinit_hack is a clumsy hack to work around Apple libc bugs
    // causing fork+exec to hang in the child process intermittently.
    // See go.dev/issue/33565 and go.dev/issue/56784 for a few reports.
    //
    // The stacks obtained from the hung child processes are in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/compile/JavaCompile.java

     *
     * <pre class='autoTested'>
     *     plugins {
     *         id 'java'
     *     }
     *
     *     tasks.withType(JavaCompile).configureEach {
     *         //enable compilation in a separate daemon process
     *         options.fork = true
     *     }
     * </pre>
     */
    @CacheableTask
    public abstract class JavaCompile extends AbstractCompile implements HasCompileOptions {
        private final CompileOptions compileOptions;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:33:35 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/process/internal/DefaultExecHandle.java

            } finally {
                lock.unlock();
            }
    
            // At this point:
            // If in daemon mode, the process has started successfully and all streams to the process have been closed
            // If in fork mode, the process has completed and all cleanup has been done
            // In both cases, all asynchronous work for the process has completed and we're done
    
            return result();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/DefaultGradleRunner.java

            if (environment != null && debug) {
                throw new InvalidRunnerConfigurationException("Debug mode is not allowed when environment variables are specified. " +
                    "Debug mode runs 'in process' but we need to fork a separate process to pass environment variables. " +
                    "To run with debug mode, please remove environment variables.");
            }
    
            File testKitDir = createTestKitDir(testKitDirProvider);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 10:14:55 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    // Here's what happens when an ASSERT_DEATH* or EXPECT_DEATH* is
    // executed:
    //
    //   1. It generates a warning if there is more than one active
    //   thread.  This is because it's safe to fork() or clone() only
    //   when there is a single thread.
    //
    //   2. The parent process clone()s a sub-process and runs the death
    //   test in it; the sub-process exits with code 0 at the end of the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	{172, "EDC5172I", "An error was encountered with Application Response Measurement (ARM) component."},
    	{200, "EDC5200I", "The application contains a Language Environment member language that cannot tolerate a fork()."},
    	{201, "EDC5201I", "The Language Environment message file was not found in the hierarchical file system."},
    	{202, "EDC5202E", "DLL facilities are not supported under SPC environment."},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/configcontroller.go

    		// Since supporting both in a monolith controller is painful due to lack of usable conversion logic between
    		// the two versions.
    		// As a compromise, we instead just fork the controller. Once 1.18 support is no longer needed, we can drop the old controller
    		s.ConfigStores = append(s.ConfigStores,
    			ingress.NewController(s.kubeClient, s.environment.Watcher, args.RegistryOptions.KubeOptions))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. src/syscall/syscall_darwin.go

    //sys	writev(fd int, iovecs []Iovec) (cnt uintptr, err error)
    //sys   mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error)
    //sys   munmap(addr uintptr, length uintptr) (err error)
    //sysnb fork() (pid int, err error)
    //sysnb execve(path *byte, argv **byte, envp **byte) (err error)
    //sysnb exit(res int) (err error)
    //sys	sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top