Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for Commands (0.81 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. 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)
  6. 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)
  7. 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)
  8. 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)
  9. cmd/admin-handlers.go

    	}
    
    	// save MinIO start script to inspect command
    	var scrb bytes.Buffer
    	fmt.Fprintf(&scrb, `#!/usr/bin/env bash
    
    function main() {
    	for file in $(ls -1); do
    		dest_file=$(echo "$file" | cut -d ":" -f1)
    		mv "$file" "$dest_file"
    	done
    
    	# Read content of inspect-input.txt
    	MINIO_OPTS=$(grep "Server command line args" <./inspect-input.txt | sed "s/Server command line args: //g" | sed -r "s#%s:\/\/#\.\/#g")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "description": "ExecAction describes a \"run in container\" action.",
          "properties": {
            "command": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top