Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 867 for Forked (0.12 sec)

  1. cmd/os_unix.go

    	}
    	var e error
    	fd, e = syscall.Open(name, flag|syscall.O_CLOEXEC, uint32(perm))
    	if e != nil {
    		return -1, &os.PathError{Op: "open", Path: name, Err: e}
    	}
    	return fd, nil
    }
    
    // Forked from Golang but chooses to avoid performing lookup
    //
    // osMkdirAll creates a directory named path,
    // along with any necessary parents, and returns nil,
    // or else returns an error.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/reference/third_party_integration.adoc

    <<gradle_daemon.adoc#gradle_daemon,Gradle Daemon>> contains more details about the daemon, specifically information on situations when new daemons are forked.
    
    [[sec:embedding_quickstart]]
    === Quickstart
    
    As the Tooling API is an interface for developers, the Javadoc is the main documentation for it.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionIntegrationTest.groovy

            !output.contains("Appending input value fingerprint for")
            !output.contains("Appending input file fingerprints for 'classpath'")
        }
    
        def "compileJava is not cached if forked executable is used"() {
            buildFile << """
                compileJava.options.fork = true
                compileJava.options.forkOptions.executable = "${TextUtil.escapeString(Jvm.current().getExecutable("javac"))}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

            // distribution loading is deprecated in Gradle 8.2.
            return getClasspathWithAdditionalModules(classpath, modulepath, unfiltered, isModule);
        }
    
        /**
         * Creates a classpath for the forked process which injects the additional modules from
         * {@code additional} into the classpath provided by {@code classpath} and {@code modulepath}.
         */
        private ForkedTestClasspath getClasspathWithAdditionalModules(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java

         * by concurrently running mojo executions. To prevent race conditions, an aggregating execution will block
         * all other executions until finished.
         * We also lock on a given project to forbid a forked lifecycle to be executed concurrently with the project.
         * TODO: ideally, the builder should take care of the ordering in a smarter way
         * TODO: and concurrency issues fixed with MNG-7157
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:09 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  6. pkg/kubelet/container/helpers.go

    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	podutil "k8s.io/kubernetes/pkg/api/v1/pod"
    	sc "k8s.io/kubernetes/pkg/securitycontext"
    	hashutil "k8s.io/kubernetes/pkg/util/hash"
    	"k8s.io/kubernetes/third_party/forked/golang/expansion"
    	utilsnet "k8s.io/utils/net"
    )
    
    // HandlerRunner runs a lifecycle handler for a container.
    type HandlerRunner interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

            buildDistLifecycleTask.configure {
                dependsOn(distributionZip)
            }
        }
    
        // A 'installation' variant providing a folder where the distribution is present in the final format for forked integration testing
        consumableVariant("${name}Installation", "gradle-$name-installation", Bundling.EMBEDDED, emptyList(), installation)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. istioctl/pkg/kubeinject/kubeinject.go

    	deserializer = codecs.UniversalDeserializer()
    )
    
    // GetFirstPod returns a pod matching the namespace and label selector
    // and the number of all pods that match the label selector.
    // This is forked from  polymorphichelpers.GetFirstPod to not watch and instead return an error if no pods are found
    func GetFirstPod(client v1.CoreV1Interface, namespace string, selector string) (*corev1.Pod, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    JVMs compiled against `musl` can sometimes override the `LD_LIBRARY_PATH` environment variable to control dynamic library resolution.
    This can influence forked java processes launched by Gradle, resulting in unexpected behavior.
    
    As a consequence, using multiple java toolchains is discouraged in environments with the `musl` library.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/script/cmds.go

    			// that we used to write the executable (see https://go.dev/issue/22315).
    			// Since the descriptor should have CLOEXEC set, the problem should
    			// resolve as soon as the forked child reaches its exec call.
    			// Keep retrying until that happens.
    		} else {
    			return nil, err
    		}
    	}
    
    	wait := func(s *State) (stdout, stderr string, err error) {
    		err = cmd.Wait()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
Back to top