Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 104 for Commands (0.38 sec)

  1. src/cmd/go/internal/modload/init.go

    type Root int
    
    const (
    	// AutoRoot is the default for most commands. modload.Init will look for
    	// a go.mod file in the current directory or any parent. If none is found,
    	// modules may be disabled (GO111MODULE=auto) or commands may run in a
    	// limited module mode.
    	AutoRoot Root = iota
    
    	// NoRoot is used for commands that run in module mode and ignore any go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  2. 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)
  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. 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)
  5. pkg/volume/testing/testing.go

    	// cause the command to return an error with this exit code set.
    	ReturnCode int
    }
    
    // ScriptCommands configures fe, the FakeExec, to have a pre-configured list of
    // commands to expect. Calling more commands using fe than those scripted will
    // result in a panic. By default, the fe does not enforce command argument checking
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.31.md

    - Added ports autocompletion for kubectl port-foward command ([#124683](https://github.com/kubernetes/kubernetes/pull/124683), [@TessaIO](https://github.com/TessaIO)) [SIG CLI]
    - Added support for building Windows kube-proxy container image.
      A container image for kube-proxy on Windows can now be built with the command
      `make release-images KUBE_BUILD_WINDOWS=y`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  7. .bazelrc

    # experimental job that is build-only, i.e, we only build the test targets and
    # do not run them. By prefixing the configs with "build", we can run both
    # `bazel build` and `bazel test` commands with the same config as test configs
    # inherit from build.
    build:linux_arm64_pycpp_test_filters --test_tag_filters=-no_oss,-no_aarch64,-oss_excluded,-oss_serial,-gpu,-tpu,-benchmark-test,-v1only
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  8. src/cmd/go/go_test.go

    	tg.ran = true
    	return status
    }
    
    // run runs the test go command, and expects it to succeed.
    func (tg *testgoData) run(args ...string) {
    	tg.t.Helper()
    	if status := tg.doRun(args); status != nil {
    		wd, _ := os.Getwd()
    		tg.t.Logf("go %v failed unexpectedly in %s: %v", args, wd, status)
    		tg.t.FailNow()
    	}
    }
    
    // runFail runs the test go command, and expects it to fail.
    func (tg *testgoData) runFail(args ...string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  9. cluster/gce/windows/k8s-node-setup.psm1

    #    or using escape characters.
    #  - Use "approved verbs":
    #    https://docs.microsoft.com/en-us/powershell/developer/cmdlet/approved-verbs-for-windows-powershell-commands
    #  - Document functions using proper syntax:
    #    https://technet.microsoft.com/en-us/library/hh847834(v=wps.620).aspx
    
    $GCE_METADATA_SERVER = "169.254.169.254"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  10. hack/local-up-cluster.sh

    }
    
    cleanup()
    {
      echo "Cleaning up..."
      # delete running images
      # if [[ "${ENABLE_CLUSTER_DNS}" == true ]]; then
      # Still need to figure why this commands throw an error: Error from server: client: etcd cluster is unavailable or misconfigured
      #     ${KUBECTL} --namespace=kube-system delete service kube-dns
      # And this one hang forever:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top