Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 3,025 for procMs (0.15 sec)

  1. src/syscall/ztypes_linux_loong64.go

    }
    
    type Sysinfo_t struct {
    	Uptime    int64
    	Loads     [3]uint64
    	Totalram  uint64
    	Freeram   uint64
    	Sharedram uint64
    	Bufferram uint64
    	Totalswap uint64
    	Freeswap  uint64
    	Procs     uint16
    	Pad       uint16
    	Totalhigh uint64
    	Freehigh  uint64
    	Unit      uint32
    	X_f       [0]int8
    	Pad_cgo_0 [4]byte
    }
    
    type Utsname struct {
    	Sysname    [65]int8
    	Nodename   [65]int8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 26 20:15:45 UTC 2022
    - 10.8K bytes
    - Viewed (0)
  2. src/syscall/ztypes_linux_mips64le.go

    }
    
    type Sysinfo_t struct {
    	Uptime    int64
    	Loads     [3]uint64
    	Totalram  uint64
    	Freeram   uint64
    	Sharedram uint64
    	Bufferram uint64
    	Totalswap uint64
    	Freeswap  uint64
    	Procs     uint16
    	Pad       uint16
    	Pad_cgo_0 [4]byte
    	Totalhigh uint64
    	Freehigh  uint64
    	Unit      uint32
    	X_f       [0]int8
    	Pad_cgo_1 [4]byte
    }
    
    type Utsname struct {
    	Sysname    [65]int8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/StreamsHandler.java

     * limitations under the License.
     */
    
    package org.gradle.process.internal;
    
    import org.gradle.internal.concurrent.Stoppable;
    
    import java.util.concurrent.Executor;
    
    public interface StreamsHandler extends Stoppable {
        /**
         * Collects whatever state is required the given process. Should not start work.
         */
        void connectStreams(Process process, String processName, Executor executor);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. src/os/exec_posix.go

    	"runtime"
    	"syscall"
    )
    
    // The only signal values guaranteed to be present in the os package on all
    // systems are os.Interrupt (send the process an interrupt) and os.Kill (force
    // the process to exit). On Windows, sending os.Interrupt to a process with
    // os.Process.Signal is not implemented; it will return an error instead of
    // sending a signal.
    var (
    	Interrupt Signal = syscall.SIGINT
    	Kill      Signal = syscall.SIGKILL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. samples/bookinfo/src/ratings/ratings.js

    }
    
    /**
     * We default to using mongodb, if DB_TYPE is not set to mysql.
     */
    if (process.env.SERVICE_VERSION === 'v2') {
      if (process.env.DB_TYPE === 'mysql') {
        var mysql = require('mysql')
        var hostName = process.env.MYSQL_DB_HOST
        var portNumber = process.env.MYSQL_DB_PORT
        var username = process.env.MYSQL_DB_USER
        var password = process.env.MYSQL_DB_PASSWORD
      } else {
        var MongoClient = require('mongodb').MongoClient
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 02 00:29:57 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/server-workers.md

    ```
    
    </div>
    
    The only new option here is `--workers` telling Uvicorn to start 4 worker processes.
    
    You can also see that it shows the **PID** of each process, `27365` for the parent process (this is the **process manager**) and one for each worker process: `27368`, `27369`, `27370`, and `27367`.
    
    ## Deployment Concepts
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/process-services/src/main/java/org/gradle/process/ProcessForkOptions.java

        /**
         * The environment variables to use for the process. Defaults to the environment of this process.
         *
         * @return The environment. Returns an empty map when there are no environment variables.
         */
        Map<String, Object> getEnvironment();
    
        /**
         * Sets the environment variable to use for the process.
         *
         * @param environmentVariables The environment variables. Must not be null.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/worker/ForkingTestClassProcessorTest.groovy

    import org.gradle.internal.work.WorkerThreadRegistry
    import org.gradle.process.JavaForkOptions
    import org.gradle.process.internal.ExecException
    import org.gradle.process.internal.JavaExecHandleBuilder
    import org.gradle.process.internal.worker.WorkerProcess
    import org.gradle.process.internal.worker.WorkerProcessBuilder
    import org.gradle.process.internal.worker.WorkerProcessFactory
    import spock.lang.Specification
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/process/internal/DefaultExecHandle.java

                lock.unlock();
            }
    
            // At this point:
            // If in daemon mode, the process has started successfully and all streams to the process have been closed
            // If in fork mode, the process has completed and all cleanup has been done
            // In both cases, all asynchronous work for the process has completed and we're done
    
            return result();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/sources/process/ProcessOutputValueSource.java

             * @see org.gradle.process.BaseExecSpec#environment(String, Object)
             * @see org.gradle.process.BaseExecSpec#environment(Map)
             */
            MapProperty<String, Object> getAdditionalEnvironmentVariables();
    
            /**
             * The working directory of the process. The current directory is used if unset.
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top