Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 426 for procMs (0.12 sec)

  1. docs/en/docs/deployment/concepts.md

    This is still true.
    
    So, to be able to have **multiple processes** at the same time, there has to be a **single process listening on a port** that then transmits the communication to each worker process in some way.
    
    ### Memory per Process
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  2. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/SystemApplicationClassLoaderWorker.java

    import org.gradle.process.internal.health.memory.OsMemoryInfo;
    import org.gradle.process.internal.worker.WorkerJvmMemoryInfoSerializer;
    import org.gradle.process.internal.worker.WorkerLoggingSerializer;
    import org.gradle.process.internal.worker.WorkerProcessContext;
    import org.gradle.process.internal.worker.messaging.WorkerConfig;
    import org.gradle.process.internal.worker.messaging.WorkerConfigSerializer;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. cni/pkg/iptables/iptables.go

    		"--mark", inpodMark,
    		"-j", "CONNMARK",
    		"--set-xmark", inpodTproxyMark)
    
    	// Handle healthcheck probes from the host node. In the host netns, before the packet enters the pod, we SNAT
    	// the healthcheck packet to a fixed IP if the packet is coming from a node-local process with a socket.
    	//
    	// We do this so we can exempt this traffic from ztunnel capture/proxy - otherwise both kube-proxy (legit)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessorTest.groovy

        @Subject classProcessor = new TestNGTestClassProcessor(dir.testDirectory, spec, [], new LongIdGenerator(), Time.clock(), new TestActorFactory())
    
        void process(Class... clazz) {
            process(clazz*.name)
        }
    
        void process(Iterable<String> classNames) {
            classProcessor.startProcessing(processor)
            for (String c : classNames) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultWorkerProcessBuilder.java

    import org.gradle.internal.remote.ObjectConnection;
    import org.gradle.process.ExecResult;
    import org.gradle.process.internal.ExecHandle;
    import org.gradle.process.internal.JavaExecHandleBuilder;
    import org.gradle.process.internal.JavaExecHandleFactory;
    import org.gradle.process.internal.health.memory.JvmMemoryStatus;
    import org.gradle.process.internal.health.memory.MemoryAmount;
    import org.gradle.process.internal.health.memory.MemoryManager;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java

            try {
                Process process = new ProcessBuilder().command(args).start();
                CountDownLatch latch = new CountDownLatch(2);
                ByteArrayOutputStream stdout = connectStream(process.getInputStream(), latch);
                ByteArrayOutputStream stderr = connectStream(process.getErrorStream(), latch);
    
                process.waitFor(1, TimeUnit.MINUTES);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. src/os/exec/exec.go

    	// Run passes it to os.StartProcess as the os.ProcAttr's Sys field.
    	SysProcAttr *syscall.SysProcAttr
    
    	// Process is the underlying process, once started.
    	Process *os.Process
    
    	// ProcessState contains information about an exited process.
    	// If the process was started successfully, Wait or Run will
    	// populate its ProcessState when the command completes.
    	ProcessState *os.ProcessState
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonStarter.java

    import org.gradle.launcher.daemon.toolchain.DaemonJavaToolchainQueryService;
    import org.gradle.launcher.daemon.toolchain.DaemonJvmCriteria;
    import org.gradle.process.internal.DefaultExecActionFactory;
    import org.gradle.process.internal.ExecHandle;
    import org.gradle.process.internal.JvmOptions;
    import org.gradle.util.GradleVersion;
    import org.gradle.util.internal.CollectionUtils;
    import org.gradle.util.internal.GFileUtils;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. src/syscall/exec_linux.go

    	// number in the parent process.
    	Foreground bool
    	Pgid       int // Child's process group ID if Setpgid.
    	// Pdeathsig, if non-zero, is a signal that the kernel will send to
    	// the child process when the creating thread dies. Note that the signal
    	// is sent on thread termination, which may happen before process termination.
    	// There are more details at https://go.dev/issue/27505.
    	Pdeathsig    Signal
    	Cloneflags   uintptr        // Flags for clone calls.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java

                        phase("generate-sources"),
                        phase("process-sources"),
                        phase("generate-resources"),
                        phase("process-resources"),
                        phase("compile"),
                        phase("process-classes"),
                        phase("generate-test-sources"),
                        phase("process-test-sources"),
                        phase("generate-test-resources"),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top