Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 804 for Commands (0.57 sec)

  1. src/cmd/dist/build.go

    // The bootstrap command runs a build from scratch,
    // stopping at having installed the go_bootstrap command.
    //
    // WARNING: This command runs after cmd/dist is built with the Go bootstrap toolchain.
    // It rebuilds and installs cmd/dist with the new toolchain, so other
    // commands (like "go tool dist test" in run.bash) can rely on bug fixes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/init/waitcontrolplane.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'
    
    	Additionally, a control plane component may have crashed or exited when started by the container runtime.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. src/cmd/dist/test.go

    	}
    
    	if t.rebuild {
    		t.out("Building packages and commands.")
    		// Force rebuild the whole toolchain.
    		goInstall(toolenv(), gorootBinGo, append([]string{"-a"}, toolchain...)...)
    	}
    
    	if !t.listMode {
    		if builder := os.Getenv("GO_BUILDER_NAME"); builder == "" {
    			// Ensure that installed commands are up to date, even with -no-rebuild,
    			// so that tests that run commands end up testing what's actually on disk.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  4. istioctl/pkg/workload/workload.go

    }
    
    func groupCommand(ctx cli.Context) *cobra.Command {
    	groupCmd := &cobra.Command{
    		Use:     "group",
    		Short:   "Commands dealing with WorkloadGroup resources",
    		Example: "  istioctl x workload group create --name foo --namespace bar --labels app=foobar",
    	}
    	groupCmd.AddCommand(createCommand(ctx))
    	return groupCmd
    }
    
    func entryCommand(ctx cli.Context) *cobra.Command {
    	entryCmd := &cobra.Command{
    		Use:     "entry",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  5. pkg/kube/client.go

    	// PodExecCommands takes a list of commands and the pod data to run the commands in the specified pod.
    	PodExecCommands(podName, podNamespace, container string, commands []string) (stdout string, stderr string, err error)
    
    	// PodExec takes a command and the pod data to run the command in the specified pod.
    	PodExec(podName, podNamespace, container string, command string) (stdout string, stderr string, err error)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/get.go

    is a pipe-separated list of allowed version control commands, or "all"
    to allow use of any known command, or "off" to disallow all commands.
    Note that if a module matches a pattern with vcslist "off", it may still be
    downloaded if the origin server uses the "mod" scheme, which instructs the
    go command to download the module using the GOPROXY protocol.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DaemonStateCoordinatorTest.groovy

        }
    
        def "runs actions when command is run"() {
            Runnable command = Mock()
    
            when:
            coordinator.runCommand(command, "command")
    
            then:
            1 * onStartCommand.run()
            1 * command.run()
            1 * onFinishCommand.run()
            0 * _._
        }
    
        def "runs actions when more commands are run"() {
            Runnable command = Mock()
            Runnable command2 = Mock()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

                  sleep .1
                done
                pid="$(pgrep -u istio-proxy envoy)"
                sudo prlimit -p "${pid}" --core=unlimited
              }
              # To support image builders which cannot do RUN, do the run commands at startup.
              # This exploits the fact the images remove the installer once its installed.
              # This is a horrible idea for production images, but these are just for tests.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/output/output.go

    	}
    
    	return nil, genericclioptions.NoCompatiblePrinterError{OutputFormat: pf.OutputFormat, AllowedFormats: pf.AllowedFormats()}
    }
    
    // AddFlags receives a *cobra.Command reference and binds
    // flags related to Kubeadm printing to it
    func (pf *PrintFlags) AddFlags(cmd *cobra.Command) {
    	pf.JSONYamlPrintFlags.AddFlags(cmd)
    	pf.KubeTemplatePrintFlags.AddFlags(cmd)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 08:22:45 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/cfg/cfg.go

    // in build.ToolDir.
    func ToolExeSuffix() string {
    	if installedGOOS == "windows" {
    		return ".exe"
    	}
    	return ""
    }
    
    // These are general "build flags" used by build and other commands.
    var (
    	BuildA             bool     // -a flag
    	BuildBuildmode     string   // -buildmode flag
    	BuildBuildvcs      = "auto" // -buildvcs flag: "true", "false", or "auto"
    	BuildContext       = defaultContext()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top