Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 870 for Forked (1.01 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            gradleInvocation.implicitLauncherJvmArgs.clear();
        }
    
        /**
         * Returns the JVM opts that should be used to start a forked JVM.
         */
        private void calculateLauncherJvmArgs(GradleInvocation gradleInvocation) {
            // Add JVM args that were explicitly requested
            gradleInvocation.launcherJvmArgs.addAll(commandLineJvmOpts);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

                setActiveProfiles((Collections.unmodifiableList(project.getActiveProfiles())));
            }
    
            if (project.getAttachedArtifacts() != null) {
                // clone properties modifiable by plugins in a forked lifecycle
                setAttachedArtifacts(new ArrayList<>(project.getAttachedArtifacts()));
            }
    
            if (project.getCompileSourceRoots() != null) {
                // clone source roots
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    If your tests do share resources, they could interfere with each other in random and unpredictable ways.
    
    ==== Fork tests into multiple processes
    
    By default, Gradle runs all tests in a single forked VM.
    If there are a lot of tests, or some tests that consume lots of memory,
    your tests may take longer than you expect to run. You can increase the
    heap size, but garbage collection may slow down your tests.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    ==== Improved classpath separation for worker processes
    
    The system classpath for worker daemons started by the <<worker_api.adoc#worker_api, Worker API>> when using `PROCESS` isolation has been reduced to a minimum set of Gradle infrastructure.
    User code is still segregated into a separate classloader to isolate it from the Gradle runtime.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    [[sec:test_execution]]
    == Test execution
    
    Gradle executes tests in a separate ('forked') JVM, isolated from the main build process. This prevents classpath pollution and excessive memory consumption for the build process. It also allows you to run the tests with different JVM arguments than the build is using.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    [[rel5.0:worker_api]]
    === [5.0] Worker API: working directory of a worker can no longer be set
    
    Since JDK 11 no longer supports changing the working directory of a running process, setting the working directory of a worker via its fork options is now prohibited.
    
    All workers now use the same working directory to enable reuse.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  7. src/internal/fuzz/worker.go

    	workerSharedMemSize = 100 << 20 // 100 MB
    )
    
    // worker manages a worker process running a test binary. The worker object
    // exists only in the coordinator (the process started by 'go test -fuzz').
    // workerClient is used by the coordinator to send RPCs to the worker process,
    // which handles them with workerServer.
    type worker struct {
    	dir     string   // working directory, same as package directory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods.go

    	// At this point, the pod worker is aware of which pods are not desired (SyncKnownPods).
    	// We now look through the set of active pods for those that the pod worker is not aware of
    	// and deliver an update. The most common reason a pod is not known is because the pod was
    	// deleted and recreated with the same UID while the pod worker was driving its lifecycle (very
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  9. pkg/filewatcher/worker.go

    	"fmt"
    	"io"
    	"os"
    	"sync"
    
    	"github.com/fsnotify/fsnotify"
    )
    
    type worker struct {
    	mu sync.RWMutex
    
    	// watcher is an fsnotify watcher that watches the parent
    	// dir of watchedFiles.
    	dirWatcher *fsnotify.Watcher
    
    	// The worker maintains a map of channels keyed by watched file path.
    	// The worker watches parent path of given path,
    	// and filters out events of given path, then redirect
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 22:31:06 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. testing/performance/src/templates/workerApiProject/buildSrc/src/main/resources/META-INF/gradle-plugins/worker-plugin.properties

    implementation-class=com.example.worker.WorkerPlugin...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 54 bytes
    - Viewed (0)
Back to top