Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 392 for Commands (0.2 sec)

  1. cmd/kubeadm/app/cmd/phases/join/kubelet.go

    			- The kubelet is unhealthy due to a misconfiguration of the node in some way (required cgroups disabled)
    
    		If you are on a systemd-powered system, you can try to troubleshoot the error with the following commands:
    			- 'systemctl status kubelet'
    			- 'journalctl -xeu kubelet'
    		`)
    )
    
    // NewKubeletStartPhase creates a kubeadm workflow phase that start kubelet on a node.
    func NewKubeletStartPhase() workflow.Phase {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. pilot/pkg/xds/debug.go

    	}
    }
    
    // list all the supported debug commands in json.
    func (s *DiscoveryServer) list(w http.ResponseWriter, req *http.Request) {
    	var cmdNames []string
    	for k := range s.debugHandlers {
    		key := strings.Replace(k, "/debug/", "", -1)
    		// exclude current list command
    		if key == "list" {
    			continue
    		}
    		// can not support pprof commands
    		if strings.Contains(key, "pprof") {
    			continue
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  3. tests/integration/telemetry/api/dashboard_test.go

    	}
    }
    
    // extractQueries pulls all prometheus queries out of a grafana dashboard
    // Rather than importing the entire grafana API just for this test, do some shoddy json parsing
    // Equivalent to the union of the jq commands:
    // '.panels[].targets[]?.expr' and '.panels[].panels[]?.targets[]?.expr'
    func extractQueries(dash string) ([]string, error) {
    	var queries []string
    	js := map[string]any{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/start.go

    		// child, because the child itself invokes the go command to download the
    		// upload config. If the telemetryChildVar variable is still set to "1",
    		// that delegated go command may think that it is itself a telemetry
    		// child.
    		//
    		// On the other hand, if telemetryChildVar were simply unset, then the
    		// delegated go commands would fork themselves recursively. Short-circuit
    		// this recursion.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. cmd/admin-handlers-pools.go

    	if objectAPI == nil {
    		return
    	}
    
    	// NB rebalance-start admin API is always coordinated from first pool's
    	// first node. The following is required to serialize (the effects of)
    	// concurrent rebalance-start commands.
    	if ep := globalEndpoints[0].Endpoints[0]; !ep.IsLocal {
    		for nodeIdx, proxyEp := range globalProxyEndpoints {
    			if proxyEp.Endpoint.Host == ep.Host {
    				if proxyRequestByNodeIndex(ctx, w, r, nodeIdx) {
    					return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. src/cmd/vet/vet_test.go

    	// Don't trust build.Default.CgoEnabled as it is false for
    	// cross-builds unless CGO_ENABLED is explicitly specified.
    	// That's fine for the builders, but causes commands like
    	// 'GOARCH=386 go test .' to fail.
    	// Instead, we ask the go command.
    	cmd := testenv.Command(t, testenv.GoToolPath(t), "list", "-f", "{{context.CgoEnabled}}")
    	out, _ := cmd.CombinedOutput()
    	return string(out) == "true\n"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testplugin/plugin_test.go

    	goCmd(t, "build", "-o", "forkexec.exe", "./forkexec/main.go")
    
    	for i := 0; i < 100; i++ {
    		cmd := testenv.Command(t, "./forkexec.exe", "1")
    		err := cmd.Run()
    		if err != nil {
    			if ee, ok := err.(*exec.ExitError); ok && len(ee.Stderr) > 0 {
    				t.Logf("stderr:\n%s", ee.Stderr)
    			}
    			t.Errorf("running command failed: %v", err)
    			break
    		}
    	}
    }
    
    func TestSymbolNameMangle(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/token.go

    }
    
    // newCmdTokenGenerate returns cobra.Command to generate new token
    func newCmdTokenGenerate(out io.Writer) *cobra.Command {
    	return &cobra.Command{
    		Use:   "generate",
    		Short: "Generate and print a bootstrap token, but do not create it on the server",
    		Long: dedent.Dedent(`
    			This command will print out a randomly-generated bootstrap token that can be used with
    			the "init" and "join" commands.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/README.md

    * `[.multi-language-text.lang-groovy]`: Most times the gradle command is identical between Groovy and Kotlin samples, but in this case we need to use `[.multi-language-text.lang-*]` that our CSS will collapse and switch for the DSL of choice. This is case-sensitive. You can use this construct for any 2 sibling blocks!
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. src/cmd/doc/main.go

    //
    // Show the documentation for the package, symbol, and method or field. The
    // first argument must be a full package path. This is similar to the
    // command-line usage for the godoc command.
    //
    // For commands, unless the -cmd flag is present "go doc command"
    // shows only the package-level docs for the package.
    //
    // The -src flag causes doc to print the full source code for the symbol, such
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top