Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for Commands (0.21 sec)

  1. src/cmd/go/alldocs.go

    // and test commands:
    //
    //	-C dir
    //		Change to dir before running the command.
    //		Any files named on the command line are interpreted after
    //		changing directories.
    //		If used, this flag must be the first one in the command line.
    //	-a
    //		force rebuilding of packages that are already up-to-date.
    //	-n
    //		print the commands but do not run them.
    //	-p n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    	CmdlineFiles      bool                 // package built from files listed on command line
    	CmdlinePkg        bool                 // package listed on command line
    	CmdlinePkgLiteral bool                 // package listed as literal on command line (not via wildcard)
    	Local             bool                 // imported via local path (./ or ../)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

      gcloud compute --project "${PROJECT}" ssh --zone "${ZONE}" "${KUBE_MASTER}" --command \
        "curl --fail --silent -H 'Metadata-Flavor: Google' \
          'http://metadata/computeMetadata/v1/instance/attributes/kube-env'" 2>/dev/null
      gcloud compute --project "${PROJECT}" ssh --zone "${ZONE}" "${KUBE_MASTER}" --command \
        "curl --fail --silent -H 'Metadata-Flavor: Google' \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    		sh.reportCmd("", "", out, nil)
    	}
    	return err
    }
    
    // GccCmd returns a gcc command line prefix
    // defaultCC is defined in zdefaultcc.go, written by cmd/dist.
    func (b *Builder) GccCmd(incdir, workdir string) []string {
    	return b.compilerCmd(b.ccExe(), incdir, workdir)
    }
    
    // GxxCmd returns a g++ command line prefix
    // defaultCXX is defined in zdefaultcc.go, written by cmd/dist.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.5.md

    * Caching added to the OIDC client auth plugin to fix races and reduce the time kubectl commands using this plugin take by several seconds. ([#38167](https://github.com/kubernetes/kubernetes/pull/38167), [@ericchiang](https://github.com/ericchiang))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods_test.go

    		podFullName: podFullName,
    		container:   "containerBar",
    		command:     []string{"ls"},
    		expectError: true,
    	}, {
    		description: "null exec command",
    		podFullName: podFullName,
    		container:   containerID,
    		expectError: false,
    	}, {
    		description: "multi exec commands",
    		podFullName: podFullName,
    		container:   containerID,
    		command:     []string{"bash", "-c", "ls"},
    		expectError: false,
    	}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.4.md

    ### kubectl rolling-update: < v1.4.0 client vs >=v1.4.0 cluster
    
    Old version kubectl's rolling-update command is compatible with Kubernetes 1.4 and higher only if you specify a new replication controller name. You will need to update to kubectl 1.4 or higher to use the rolling update command against a 1.4 cluster if you want to keep the original name, or you'll have to do two rolling updates.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

    }
    
    # Wraps a command with bootstrap logging.
    # Args:
    #   $1    : bootstrap step name.
    #   $2... : the command to run.
    #
    # NOTE: this function is duplicated in configure.sh, any changes here should be
    # duplicated there as well.
    function log-wrap {
      local bootstep="$1"
      local command="${*:2}"
    
      log-trap-push "log-error ${bootstep}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          "dev": true,
          "bin": {
            "semver": "bin/semver"
          }
        },
        "node_modules/npm-run-all/node_modules/shebang-command": {
          "version": "1.2.0",
          "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
          "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==",
          "dev": true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

                    exec:
                      command:
                      - pilot-agent
                      - wait
              {{- else if $nativeSidecar }}
                {{- /* preStop is called when the pod starts shutdown. Initialize drain. We will get SIGTERM once applications are torn down. */}}
                lifecycle:
                  preStop:
                    exec:
                      command:
                      - pilot-agent
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
Back to top