Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 941 for procMs (0.2 sec)

  1. 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)
  2. subprojects/core/src/test/groovy/org/gradle/process/internal/JvmOptionsTest.groovy

     */
    
    
    package org.gradle.process.internal
    
    import org.gradle.api.internal.file.TestFiles
    import org.gradle.process.JavaDebugOptions
    import org.gradle.process.JavaForkOptions
    import spock.lang.Specification
    
    import java.nio.charset.Charset
    
    import static org.gradle.process.internal.JvmOptions.FILE_ENCODING_KEY
    import static org.gradle.process.internal.JvmOptions.JAVA_IO_TMPDIR_KEY
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  3. 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)
  4. docs/en/docs/deployment/docker.md

    A container is running as long as the **main process** (command or program) is running.
    
    A container normally has a **single process**, but it's also possible to start subprocesses from the main process, and that way you will have **multiple processes** in the same container.
    
    But it's not possible to have a running container without **at least one running process**. If the main process stops, the container stops.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitor.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: Thu Apr 04 07:21:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. src/syscall/ztypes_linux_mips.go

    }
    
    type Sysinfo_t struct {
    	Uptime    int32
    	Loads     [3]uint32
    	Totalram  uint32
    	Freeram   uint32
    	Sharedram uint32
    	Bufferram uint32
    	Totalswap uint32
    	Freeswap  uint32
    	Procs     uint16
    	Pad       uint16
    	Totalhigh uint32
    	Freehigh  uint32
    	Unit      uint32
    	X_f       [8]int8
    }
    
    type Utsname struct {
    	Sysname    [65]int8
    	Nodename   [65]int8
    	Release    [65]int8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. src/syscall/ztypes_linux_mipsle.go

    }
    
    type Sysinfo_t struct {
    	Uptime    int32
    	Loads     [3]uint32
    	Totalram  uint32
    	Freeram   uint32
    	Sharedram uint32
    	Bufferram uint32
    	Totalswap uint32
    	Freeswap  uint32
    	Procs     uint16
    	Pad       uint16
    	Totalhigh uint32
    	Freehigh  uint32
    	Unit      uint32
    	X_f       [8]int8
    }
    
    type Utsname struct {
    	Sysname    [65]int8
    	Nodename   [65]int8
    	Release    [65]int8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10K bytes
    - Viewed (0)
  8. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/AntlrExecuter.java

            if (antlrTool.available()) {
                LOGGER.info("Processing with ANTLR 4");
                return antlrTool.process(spec);
            }
    
            antlrTool = new Antlr3Tool();
            if (antlrTool.available()) {
                LOGGER.info("Processing with ANTLR 3");
                return antlrTool.process(spec);
            }
    
            antlrTool = new Antlr2Tool();
            if (antlrTool.available()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/start.go

    	const period = 24 * time.Hour
    
    	// A process acquires a token by successfully creating a
    	// well-known file. If the file already exists and has an
    	// mtime age less then than the period, the process does
    	// not acquire the token. If the file is older than the
    	// period, the process is allowed to remove the file and
    	// try to re-create it.
    	fi, err := os.Stat(tokenfile)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/classpath/Instrumented.java

        }
    
        public static Process exec(Runtime runtime, String command, String consumer) throws IOException {
            externalProcessStarted(command, consumer);
            return runtime.exec(command);
        }
    
        public static Process exec(Runtime runtime, String[] command, String consumer) throws IOException {
            externalProcessStarted(command, consumer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top