Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 270 for Commands (0.13 sec)

  1. tests/integration/pilot/multiplecontrolplanes/main_test.go

    		Setup(istio.Setup(nil, func(ctx resource.Context, cfg *istio.Config) {
    			s := ctx.Settings()
    			// TODO test framework has to be enhanced to use istioNamespace in istioctl commands used for VM config
    			s.SkipWorkloadClasses = append(s.SkipWorkloadClasses, echo.VM)
    			s.DisableDefaultExternalServiceConnectivity = true
    
    			cfg.Values["global.istioNamespace"] = userGroup1NS.Name()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. src/cmd/nm/nm.go

    	"sort"
    
    	"cmd/internal/objfile"
    	"cmd/internal/telemetry"
    )
    
    const helpText = `usage: go tool nm [options] file...
      -n
          an alias for -sort address (numeric),
          for compatibility with other nm commands
      -size
          print symbol size in decimal between address and type
      -sort {address,name,none,size}
          sort output in the given order (default name)
          size orders from largest to smallest
      -type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/kubeconfig.go

    	`)
    )
    
    // newCmdKubeConfigUtility returns main command for kubeconfig phase
    func newCmdKubeConfigUtility(out io.Writer) *cobra.Command {
    	cmd := &cobra.Command{
    		Use:   "kubeconfig",
    		Short: "Kubeconfig file utilities",
    		Long:  kubeconfigLongDesc,
    	}
    
    	cmd.AddCommand(newCmdUserKubeConfig(out))
    	return cmd
    }
    
    // newCmdUserKubeConfig returns sub commands for kubeconfig phase
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. src/cmd/covdata/covdata.go

    		panic("fatal error")
    	}
    	Exit(1)
    }
    
    func usage(msg string) {
    	if len(msg) > 0 {
    		fmt.Fprintf(os.Stderr, "error: %s\n", msg)
    	}
    	fmt.Fprintf(os.Stderr, "usage: go tool covdata [command]\n")
    	fmt.Fprintf(os.Stderr, `
    Commands are:
    
    textfmt     convert coverage data to textual format
    percent     output total percentage of statements covered
    pkglist     output list of package import paths
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. prow/integ-suite-kind.sh

    WD=$(dirname "$0")
    WD=$(cd "$WD"; pwd)
    ROOT=$(dirname "$WD")
    
    # Exit immediately for non zero status
    set -e
    # Check unset variables
    set -u
    # Print commands
    set -x
    
    # shellcheck source=prow/lib.sh
    source "${ROOT}/prow/lib.sh"
    setup_and_export_git_sha
    
    # shellcheck source=common/scripts/kind_provisioner.sh
    source "${ROOT}/common/scripts/kind_provisioner.sh"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 05:42:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. hack/make-rules/test-cmd.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This command checks that the built commands can function together for
    # simple scenarios.  It does not require Docker.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 09:10:14 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modcmd/tidy.go

    support lazy module loading.)
    
    The -compat flag preserves any additional checksums needed for the
    'go' command from the indicated major Go release to successfully load
    the module graph, and causes tidy to error out if that version of the
    'go' command would load any imported package from a different module
    version. By default, tidy acts as if the -compat flag were set to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top