Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 125 for forkx (0.28 sec)

  1. 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)
  2. 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)
  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. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top