Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for cmdLines (0.2 sec)

  1. cmd/bootstrap-peer-server_gen.go

    				return
    			}
    		case "CmdLines":
    			var zb0002 uint32
    			zb0002, err = dc.ReadArrayHeader()
    			if err != nil {
    				err = msgp.WrapError(err, "CmdLines")
    				return
    			}
    			if cap(z.CmdLines) >= int(zb0002) {
    				z.CmdLines = (z.CmdLines)[:zb0002]
    			} else {
    				z.CmdLines = make([]string, zb0002)
    			}
    			for za0001 := range z.CmdLines {
    				z.CmdLines[za0001], err = dc.ReadString()
    				if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 24 21:36:44 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. cmd/bootstrap-peer-server.go

    		envValues[envK] = logger.HashString(env.Get(envK, ""))
    	}
    	scfg := &ServerSystemConfig{NEndpoints: globalEndpoints.NEndpoints(), MinioEnv: envValues}
    	var cmdLines []string
    	for _, ep := range globalEndpoints {
    		cmdLines = append(cmdLines, ep.CmdLine)
    	}
    	scfg.CmdLines = cmdLines
    	return scfg
    }
    
    func (s *bootstrapRESTServer) VerifyHandler(params *grid.MSS) (*ServerSystemConfig, *grid.RemoteErr) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/dependencies/stub.go

    		}
    	} else {
    		// ...or as discrete individual commands
    		cmdline := strings.Join(append([]string{iptVer.CmdToString(cmd)}, args...), " ")
    		s.ExecutedAll = append(s.ExecutedAll, cmdline)
    		if quietly {
    			s.ExecutedQuietly = append(s.ExecutedQuietly, cmdline)
    		} else {
    			s.ExecutedNormally = append(s.ExecutedNormally, cmdline)
    		}
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/base/base.go

    // If the command fails, Run reports the error using Errorf.
    func Run(cmdargs ...any) {
    	cmdline := str.StringList(cmdargs...)
    	if cfg.BuildN || cfg.BuildX {
    		fmt.Printf("%s\n", strings.Join(cmdline, " "))
    		if cfg.BuildN {
    			return
    		}
    	}
    
    	cmd := exec.Command(cmdline[0], cmdline[1:]...)
    	cmd.Stdout = os.Stdout
    	cmd.Stderr = os.Stderr
    	if err := cmd.Run(); err != nil {
    		Errorf("%v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/shell.go

    }
    
    // runOut runs the command given by cmdline in the directory dir.
    // It returns the command output and any errors that occurred.
    // It accumulates execution time in a.
    func (sh *Shell) runOut(dir string, env []string, cmdargs ...any) ([]byte, error) {
    	a := sh.action
    
    	cmdline := str.StringList(cmdargs...)
    
    	for _, arg := range cmdline {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. src/net/http/pprof/pprof.go

    	http.HandleFunc(prefix+"/debug/pprof/cmdline", Cmdline)
    	http.HandleFunc(prefix+"/debug/pprof/profile", Profile)
    	http.HandleFunc(prefix+"/debug/pprof/symbol", Symbol)
    	http.HandleFunc(prefix+"/debug/pprof/trace", Trace)
    }
    
    // Cmdline responds with the running program's
    // command line, with arguments separated by NUL bytes.
    // The package initialization registers it as /debug/pprof/cmdline.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:34:05 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. cmd/erasure-server-pool-decom.go

    			// Preserve any current pool status.
    			if currentPool.CmdLine == pool.endpoints.CmdLine {
    				newMeta.Pools = append(newMeta.Pools, currentPool)
    				skip = true
    				break
    			}
    		}
    		if skip {
    			continue
    		}
    		newMeta.Pools = append(newMeta.Pools, PoolStatus{
    			CmdLine:    pool.endpoints.CmdLine,
    			ID:         idx,
    			LastUpdate: UTCNow(),
    		})
    	}
    	return newMeta
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 14:30:43 UTC 2024
    - 41.5K bytes
    - Viewed (1)
  8. src/expvar/expvar.go

    		http.HandleFunc("/debug/vars", expvarHandler)
    	} else {
    		http.HandleFunc("GET /debug/vars", expvarHandler)
    	}
    	Publish("cmdline", Func(cmdline))
    	Publish("memstats", Func(memstats))
    }
    
    // TODO: Use json.appendString instead.
    func appendJSONQuote(b []byte, s string) []byte {
    	const hex = "0123456789abcdef"
    	b = append(b, '"')
    	for _, r := range s {
    		switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 21:32:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. src/cmd/internal/testdir/testdir_test.go

    					cmdline[2] += " " + strings.TrimPrefix(flag, "--gcflags=")
    				case flag == "-gcflags", flag == "--gcflags":
    					i++
    					if i < len(flags) {
    						cmdline[2] += " " + flags[i]
    					}
    				default:
    					cmdline = append(cmdline, flag)
    				}
    			}
    
    			cmdline = append(cmdline, long)
    			cmd := exec.Command(goTool, cmdline...)
    			cmd.Env = append(os.Environ(), env.Environ()...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  10. cmd/endpoint-ellipses.go

    			SetCount:     len(poolArgs[i].layout),
    			DrivesPerSet: len(poolArgs[i].layout[0]),
    			Endpoints:    endpointList,
    			Platform:     fmt.Sprintf("OS: %s | Arch: %s", runtime.GOOS, runtime.GOARCH),
    			CmdLine:      poolArgs[i].cmdline,
    		}); err != nil {
    			return nil, -1, err
    		}
    	}
    
    	return endpointServerPools, setupType, nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.7K bytes
    - Viewed (0)
Back to top