Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 73 for forkx (0.04 sec)

  1. pilot/pkg/leaderelection/leaderelection.go

    		// This is disable when perRevision is used, as this enables the Lease. Lease doesn't have a holderKey field to place our key
    		// as holderKey is an Istio specific fork.
    		// While its possible to make it work with Lease as well (via an annotation to store it), we don't ever need prioritized
    		// for these per-revision ones anyways, since the prioritization is about preferring one revision over others.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            // JVM args that must be used for the build JVM
            final List<String> buildJvmArgs = new ArrayList<>();
            // JVM args that must be used to fork a JVM
            final List<String> launcherJvmArgs = new ArrayList<>();
            // Implicit JVM args that should be used to fork a JVM
            final List<String> implicitLauncherJvmArgs = new ArrayList<>();
    
            protected Map<String, String> getEnvironmentVars() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top