Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 96 for forkx (0.04 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. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_dependencies.adoc

    A project name with kebab case (`some-lib`) or snake case (`some_lib`) will be converted to camel case in accessors: `projects.someLib`.
    
    === Local forks of module dependencies
    
    A module dependency can be substituted by a dependency to a local fork of the sources of that module, if the module itself is built with Gradle.
    This can be done by utilising <<composite_builds.adoc#defining_composite_builds,composite builds>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/apimachinery/third_party/forked/golang/reflect/deep_equal.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package reflect is a fork of go's standard library reflection package, which
    // allows for deep equal with equality functions defined.
    package reflect
    
    import (
    	"fmt"
    	"reflect"
    	"strings"
    )
    
    // Equalities is a map from type to a function comparing two values of
    // that type.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 20 17:18:42 UTC 2022
    - 10.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/IsolatingIncrementalAnnotationProcessingIntegrationTest.groovy

        }
    
        def "all files are recompiled if compiler does not support incremental annotation processing"() {
            given:
            buildFile << """
                compileJava {
                    options.fork = true
                    options.forkOptions.executable = '${TextUtil.escapeString(AvailableJavaHomes.getJdk(JavaVersion.current()).javacExecutable)}'
                }
            """
            def a = java "@Helper class A {}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.1K bytes
    - Viewed (0)
Back to top