Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 87 of 87 for subprocess (0.19 sec)

  1. 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.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  2. src/encoding/json/testdata/code.json.gz

    n_t":1297743092},{"name":"command_line_interface.cc","kids":[],"cl_weight":0.028647215558761104,"touches":4,"min_t":1285863249,"max_t":1301748385,"mean_t":1297743092},{"name":"subprocess.cc","kids":[],"cl_weight":0.028647215558761104,"touches":4,"min_t":1285863249,"max_t":1301748385,"mean_t":1297743092},{"name":"subprocess.h","kids":[],"cl_weight":0.028647215558761104,"touches":4,"min_t":1285863249,"max_t":1301748385,"mean_t":1297743092},{"name":"zip_writer.cc","kids":[],"cl_weight":0.0286472155...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    	}
    
    	anonymizeProcInfo := func(p *madmin.ProcInfo) {
    		p.CmdLine = anonymizeCmdLine(p.CmdLine)
    		anonymizeAddr(p)
    	}
    
    	getAndWriteProcInfo := func() {
    		if query.Get("sysprocess") == "true" {
    			localProcInfo := madmin.GetProcInfo(healthCtx, globalLocalNodeName)
    			anonymizeProcInfo(&localProcInfo)
    			healthInfo.Sys.ProcInfo = append(healthInfo.Sys.ProcInfo, localProcInfo)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  4. src/cmd/go/go_test.go

    // external network in parallel. If non-nil, it contains one buffer slot per
    // test (send to acquire), with a low enough limit that the overall number of
    // connections (summed across subprocesses) stays at or below base.NetLimit.
    var netTestSem chan struct{}
    
    var exeSuffix string = func() string {
    	if runtime.GOOS == "windows" {
    		return ".exe"
    	}
    	return ""
    }()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    			fmt.Fprintf(h, "GOEXPERIMENT=%q\n", cfg.CleanGOEXPERIMENT)
    		}
    
    		// TODO(rsc): Convince compiler team not to add more magic environment variables,
    		// or perhaps restrict the environment variables passed to subprocesses.
    		// Because these are clumsy, undocumented special-case hacks
    		// for debugging the compiler, they are not settable using 'go env -w',
    		// and so here we use os.Getenv, not cfg.Getenv.
    		magic := []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    //	    The value of this flag is the maximum number of tests to run
    //	    simultaneously.
    //	    While fuzzing, the value of this flag is the maximum number of
    //	    subprocesses that may call the fuzz function simultaneously, regardless of
    //	    whether T.Parallel is called.
    //	    By default, -parallel is set to the value of GOMAXPROCS.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.16.md

    * na ([#79892](https://github.com/kubernetes/kubernetes/pull/79892), [@mikebrow](https://github.com/mikebrow))
    * Use O_CLOEXEC to ensure file descriptors do not leak to subprocesses. ([#74691](https://github.com/kubernetes/kubernetes/pull/74691), [@cpuguy83](https://github.com/cpuguy83))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
Back to top