Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 36 for cmdLines (0.36 sec)

  1. cmd/admin-handlers.go

    			delete(m.ByHost, host)
    		}
    		return &m
    	}
    
    	anonymizeCmdLine := func(cmdLine string) string {
    		if anonParam != anonymizeStrict {
    			return cmdLine
    		}
    
    		if !globalIsDistErasure {
    			// FS mode - single server - hard code to `server1`
    			anonCmdLine := strings.ReplaceAll(cmdLine, globalLocalNodeName, "server1")
    			if len(globalMinioConsoleHost) > 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/gc.go

    			base.Fatalf("os.Stat of archive file failed: %v", err)
    		}
    	}
    
    	p := a.Package
    	sh := b.Shell(a)
    	if cfg.BuildN || cfg.BuildX {
    		cmdline := str.StringList(base.Tool("pack"), "r", absAfile, absOfiles)
    		sh.ShowCmd(p.Dir, "%s # internal", joinUnambiguously(cmdline))
    	}
    	if cfg.BuildN {
    		return nil
    	}
    	if err := packInternal(absAfile, absOfiles); err != nil {
    		return sh.reportCmd("", "", nil, err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. cmd/globals.go

    	tlsClientSessionCacheSize = 100
    )
    
    func init() {
    	// Injected to prevent circular dependency.
    	pubsub.GetByteBuffer = grid.GetByteBuffer
    }
    
    type poolDisksLayout struct {
    	cmdline string
    	layout  [][]string
    }
    
    type disksLayout struct {
    	legacy bool
    	pools  []poolDisksLayout
    }
    
    type serverCtxt struct {
    	JSON, Quiet               bool
    	Anonymous                 bool
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. src/cmd/dist/test.go

    // The command will be run in dir, and Stdout and Stderr will go to os.Stdout
    // and os.Stderr.
    func (t *tester) dirCmd(dir string, cmdline ...interface{}) *exec.Cmd {
    	bin, args := flattenCmdline(cmdline)
    	cmd := exec.Command(bin, args...)
    	if filepath.IsAbs(dir) {
    		setDir(cmd, dir)
    	} else {
    		setDir(cmd, filepath.Join(goroot, dir))
    	}
    	cmd.Stdout = os.Stdout
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. pilot/cmd/pilot-agent/status/server.go

    	mux.HandleFunc("/app-health/", s.handleAppProbe)
    
    	if s.enableProfiling {
    		// Add the handler for pprof.
    		mux.HandleFunc("/debug/pprof/", s.handlePprofIndex)
    		mux.HandleFunc("/debug/pprof/cmdline", s.handlePprofCmdline)
    		mux.HandleFunc("/debug/pprof/profile", s.handlePprofProfile)
    		mux.HandleFunc("/debug/pprof/symbol", s.handlePprofSymbol)
    		mux.HandleFunc("/debug/pprof/trace", s.handlePprofTrace)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. pilot/pkg/xds/debug.go

    		s.addDebugHandler(mux, internalMux, "/debug/pprof/", "Displays pprof index", pprof.Index)
    		s.addDebugHandler(mux, internalMux, "/debug/pprof/cmdline", "The command line invocation of the current program", pprof.Cmdline)
    		s.addDebugHandler(mux, internalMux, "/debug/pprof/profile", "CPU profile", pprof.Profile)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  7. pkg/kubelet/server/server.go

    		name := strings.TrimPrefix(req.Request.URL.Path, pprofBasePath)
    		switch name {
    		case "profile":
    			pprof.Profile(resp, req.Request)
    		case "symbol":
    			pprof.Symbol(resp, req.Request)
    		case "cmdline":
    			pprof.Cmdline(resp, req.Request)
    		case "trace":
    			pprof.Trace(resp, req.Request)
    		default:
    			pprof.Index(resp, req.Request)
    		}
    	}
    
    	// Setup pprof handlers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  8. build/root/Makefile

    ifeq ($(PRINT_HELP),y)
    test-e2e-node:
    	echo "$$TEST_E2E_NODE_HELP_INFO"
    else
    test-e2e-node: ginkgo
    	hack/make-rules/test-e2e-node.sh
    endif
    
    define TEST_CMD_HELP_INFO
    # Build and run cmdline tests.
    #
    # Args:
    #   WHAT: List of tests to run, check test/cmd/legacy-script.sh for names.
    #     For example, WHAT=deployment will run run_deployment_tests function.
    # Example:
    #   make test-cmd
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. cmd/endpoint.go

    type PoolEndpoints struct {
    	// indicates if endpoints are provided in non-ellipses style
    	Legacy       bool
    	SetCount     int
    	DrivesPerSet int
    	Endpoints    Endpoints
    	CmdLine      string
    	Platform     string
    }
    
    // EndpointServerPools - list of list of endpoints
    type EndpointServerPools []PoolEndpoints
    
    // GetNodes returns a sorted list of nodes in this cluster
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/vcs/vcs.go

    }
    
    // run1 is the generalized implementation of run and runOutput.
    func (v *Cmd) run1(dir string, cmdline string, keyval []string, verbose bool) ([]byte, error) {
    	m := make(map[string]string)
    	for i := 0; i < len(keyval); i += 2 {
    		m[keyval[i]] = keyval[i+1]
    	}
    	args := strings.Fields(cmdline)
    	for i, arg := range args {
    		args[i] = expand(m, arg)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
Back to top