Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 57 for forkx (0.33 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileCompatibilityIntegrationTest.groovy

            buildFile << """
                apply plugin: "java"
    
                compileJava {
                    options.fork = true
                    ${configure(path)}
                }
    
                compileJava.doLast {
                    println "sourceCompatibility: '\${sourceCompatibility}'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 21.7K 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/JavaCompileIntegrationTest.groovy

            def executable = TextUtil.normaliseFileSeparators(Jvm.current().javacExecutable.toString())
    
            buildFile << """
                apply plugin: "java"
                tasks.withType(JavaCompile) {
                    options.fork = true
                    options.forkOptions.executable = new File(".").getCanonicalFile().toPath().relativize(new File("${executable}").toPath()).toString()
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  4. src/net/http/client.go

    	}
    
    	if req.RequestURI != "" {
    		req.closeBody()
    		return nil, alwaysFalse, errors.New("http: Request.RequestURI can't be set in client requests")
    	}
    
    	// forkReq forks req into a shallow clone of ireq the first
    	// time it's called.
    	forkReq := func() {
    		if ireq == req {
    			req = new(Request)
    			*req = *ireq // shallow clone
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  5. src/internal/profile/graph.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // Package profile represents a pprof profile as a directed graph.
    //
    // This package is a simplified fork of github.com/google/pprof/internal/graph.
    package profile
    
    import (
    	"fmt"
    	"sort"
    	"strings"
    )
    
    // Options encodes the options for constructing a graph
    type Options struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 20:59:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. src/os/file_unix.go

    		return nil, &PathError{Op: "open", Path: name, Err: e}
    	}
    
    	// open(2) itself won't handle the sticky bit on *BSD and Solaris
    	if setSticky {
    		setStickyBit(name)
    	}
    
    	// There's a race here with fork/exec, which we are
    	// content to live with. See ../syscall/exec_unix.go.
    	if !supportsCloseOnExec {
    		syscall.CloseOnExec(r)
    	}
    
    	f := newFile(r, name, kindOpenFile, unix.HasNonblockFlag(flag))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. 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)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseIncrementalCompilationAfterFailureIntegrationTest.groovy

            def compileTask = language == CompiledLanguage.GROOVY ? "GroovyCompile" : "JavaCompile"
            buildFile << """
            tasks.withType($compileTask) {
                options.incremental = true
                options.fork = true
                options.forkOptions.executable = '${TextUtil.escapeString(AvailableJavaHomes.getJdk(JavaVersion.current()).javacExecutable)}'
            }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    By default, a worker daemon starts with a maximum heap of 512MB.
    This can be changed by adjusting the workers' fork options.
    
    executable::
    A daemon is considered compatible only if it uses the same Java executable.
    
    classpath::
    A daemon is considered compatible if its classpath contains all the classpath entries requested. +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  10. src/syscall/zsyscall_openbsd_arm.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func fork() (pid int, err error) {
    	r0, _, e1 := rawSyscall(abi.FuncPCABI0(libc_fork_trampoline), 0, 0, 0)
    	pid = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_fork_trampoline()
    
    //go:cgo_import_dynamic libc_fork fork "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.6K bytes
    - Viewed (0)
Back to top