Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 248 for forkx (0.04 sec)

  1. subprojects/core-api/src/main/java/org/gradle/process/JavaForkOptions.java

    import org.gradle.api.tasks.Optional;
    import org.gradle.internal.HasInternalProtocol;
    
    import javax.annotation.Nullable;
    import java.util.List;
    import java.util.Map;
    
    /**
     * <p>Specifies the options to use to fork a Java process.</p>
     */
    @HasInternalProtocol
    public interface JavaForkOptions extends ProcessForkOptions {
        /**
         * Returns the system properties which will be used for the process.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/FileContentGenerator.groovy

                            <version>3.8.0</version>
                            <configuration>
                                <source>1.8</source>
                                <target>1.8</target>
                                <fork>true</fork>
                                <meminitial>${config.compilerMemory}</meminitial>
                                <maxmem>${config.compilerMemory}</maxmem>
                            </configuration>
                        </plugin>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonExpiration.java

                long parsed = MemoryAmount.parseNotation(forkOptionsMaxHeapSize);
                if (parsed != -1) {
                    // From fork options
                    return parsed;
                }
    
                // If we don't know what the max heap is, approximate it based on OS total memory
                // according to JVM documentation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TaskProgressCrossVersionSpec.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: Thu May 16 10:10:39 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonLifecycleTest.groovy

                task runInWorker(type: WorkerTask) {
                    isolationMode = 'processIsolation'
                }
    
                tasks.withType(JavaCompile) {
                    options.fork = true
                }
            """
    
            when:
            args("--info")
            succeeds "compileJava", "runInWorker"
    
            then:
            sinceSnapshot().count("Started Gradle worker daemon") == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. src/syscall/syscall_openbsd_libc.go

    //sys	Seek(fd int, offset int64, whence int) (newoffset int64, err error) = SYS_lseek
    //sys	getcwd(buf []byte) (n int, err error)
    //sys	sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen 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   ptrace(request int, pid int, addr uintptr, data uintptr) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. src/os/exec_posix.go

    	}
    
    	pid, h, e := syscall.StartProcess(name, argv, sysattr)
    
    	// Make sure we don't run the finalizers of attr.Files.
    	runtime.KeepAlive(attr)
    
    	if e != nil {
    		return nil, &PathError{Op: "fork/exec", Path: name, Err: e}
    	}
    
    	// For Windows, syscall.StartProcess above already returned a process handle.
    	if runtime.GOOS != "windows" {
    		var ok bool
    		h, ok = getPidfd(sysattr.Sys)
    		if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/ir/QuantizeUtils.cc

    /// converter.
    Attribute mlir::quantfork::quantizeAttrUniform(
        Attribute realValue, quant::UniformQuantizedType quantizedElementType,
        const UniformQuantizedValueConverter &converter, Type &outConvertedType) {
      // Fork to handle different variants of constants supported.
      if (mlir::isa<DenseFPElementsAttr>(realValue)) {
        // Dense tensor or vector constant.
        auto converted =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionIntegrationTest.groovy

            outputContains("Appending implementation to build cache key:")
            outputContains("Appending additional implementation to build cache key:")
            outputContains("Appending input value fingerprint for 'options.fork'")
            outputContains("Appending input file fingerprints for 'classpath'")
            def sourcesDebugLogging = "Appending input file fingerprints for 'stableSources' to build cache key: "
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/fixtures/AbstractVisualStudioIntegrationSpec.groovy

            // The msbuild behavior occurs because we capture the stdout/stderr from Gradle instead of letting msbuild collect it and fork the daemon child process.
            // We direct the output because msbuild jumbles up stdout/stderr in ways that mess up our output scraping.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top