Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 978 for procMs (0.1 sec)

  1. platforms/core-runtime/daemon-services/src/main/java/org/gradle/internal/daemon/clientinput/ClientInputForwarder.java

                public void onEndOfInput() {
                    LOGGER.debug("Closing this process' stdin at end of input.");
                    try {
                        stdInStream.close();
                        inputReader.putInput(UserInputReader.END_OF_INPUT);
                    } finally {
                        LOGGER.debug("This process will no longer process any forwarded input.");
                    }
                }
            };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/language/java/internal/JavaToolchainServices.java

    import org.gradle.internal.service.scopes.AbstractGradleModuleServices;
    import org.gradle.jvm.toolchain.internal.JavaCompilerFactory;
    import org.gradle.process.internal.ExecHandleFactory;
    import org.gradle.process.internal.JavaForkOptionsFactory;
    import org.gradle.process.internal.worker.child.WorkerDirectoryProvider;
    import org.gradle.workers.internal.ActionExecutionSpecFactory;
    import org.gradle.workers.internal.WorkerDaemonFactory;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. 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)
  4. src/internal/trace/testdata/generators/go122-create-syscall-reuse-thread-id.go

    	// have a self-steal here potentially that doesn't make
    	// sense.
    	b1 := g.Batch(trace.ThreadID(0), 0)
    	b1.Event("ProcStatus", trace.ProcID(1), go122.ProcIdle)
    	b1.Event("ProcStart", trace.ProcID(1), testgen.Seq(1))
    	b1.Event("ProcSteal", trace.ProcID(0), testgen.Seq(3), trace.ThreadID(0))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. 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)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInPluginIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.inputs.process
    
    import org.gradle.api.Plugin
    import org.gradle.api.Project
    import org.gradle.api.initialization.Settings
    import org.gradle.process.ExecOperations
    import org.gradle.test.fixtures.dsl.GradleDsl
    
    import javax.inject.Inject
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. src/os/exec_test.go

    	if runtime.GOOS == "windows" {
    		t.Skip("Process literals do not work on Windows. FindProcess/etc must initialize the process handle")
    	}
    	if runtime.GOARCH == "wasm" {
    		t.Skip("Signals send + notify not fully supported om wasm port")
    	}
    
    	c := make(chan os.Signal, 1)
    	signal.Notify(c, os.Interrupt)
    	defer signal.Stop(c)
    
    	p := &os.Process{Pid: os.Getpid()}
    	if err := p.Signal(os.Interrupt); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. 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)
  9. src/internal/trace/resources.go

    	}
    	return GoID(r.id)
    }
    
    // Proc obtains a ProcID from the resource ID.
    //
    // r.Kind must be ResourceProc or this function will panic.
    func (r ResourceID) Proc() ProcID {
    	if r.Kind != ResourceProc {
    		panic(fmt.Sprintf("attempted to get ProcID from %s resource ID", r.Kind))
    	}
    	return ProcID(r.id)
    }
    
    // Thread obtains a ThreadID from the resource ID.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInPluginBuildScriptIntegrationTest.groovy

                if (file.endsWith(".gradle.kts")) {
                    withProblem("Settings file '${relativePath(file)}': external process started")
                } else {
                    withProblem("Settings file '${relativePath(file)}': line 5: external process started")
                }
            }
    
            where:
            snippetsFactory             | file
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top