Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 270 for Commands (0.15 sec)

  1. src/cmd/go/internal/envcmd/env_test.go

    			scriptfile := filepath.Join(t.TempDir(), scriptfilename)
    			if err := os.WriteFile(scriptfile, b.Bytes(), 0777); err != nil {
    				t.Fatal(err)
    			}
    			cmd = testenv.Command(t, "cmd.exe", "/C", scriptfile)
    		} else {
    			cmd = testenv.Command(t, "sh", "-c", b.String())
    		}
    		out, err := cmd.Output()
    		t.Log(string(out))
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		if string(out) != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. cluster/addons/metrics-server/metrics-server-deployment.yaml

          serviceAccountName: metrics-server
          nodeSelector:
            kubernetes.io/os: linux
          containers:
          - name: metrics-server
            image: registry.k8s.io/metrics-server/metrics-server:v0.7.1
            command:
            - /metrics-server
            - --metric-resolution=15s
            - --kubelet-use-node-status-port
            - --kubelet-insecure-tls
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:50:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/cmd/root.go

    }
    
    func GetCommand(logOpts *log.Options) *cobra.Command {
    	cfg := config.DefaultConfig()
    	cmd := &cobra.Command{
    		Use:   "istio-iptables",
    		Short: "Set up iptables rules for Istio Sidecar",
    		Long:  "istio-iptables is responsible for setting up port forwarding for Istio Sidecar.",
    		PreRunE: func(cmd *cobra.Command, args []string) error {
    			if err := log.Configure(logOpts); err != nil {
    				return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 17:36:41 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. prow/lib.sh

      log "Command '${1}' complete in ${elapsed}s"
      # Write to YAML file as well for easy reading by tooling
      echo "'${1}': $elapsed" >> "${ARTIFACTS}/trace.yaml"
      { set -x; } 2>/dev/null
    }
    
    function setup_gcloud_credentials() {
      if [[ $(command -v gcloud) ]]; then
        gcloud auth configure-docker us-docker.pkg.dev -q
      elif [[ $(command -v docker-credential-gcr) ]]; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. releasenotes/notes/50791.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 50790
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 16:16:40 UTC 2024
    - 219 bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PodExecOptions.yaml

    apiVersion: v1
    command:
    - commandValue
    container: containerValue
    kind: PodExecOptions
    stderr: true
    stdin: true
    stdout: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 134 bytes
    - Viewed (0)
  7. hack/lib/etcd.sh

    # This is intentionally not called ETCD_LOG_LEVEL:
    # etcd checks that and compains when it is set in addition
    # to the command line argument, even when both have the same value.
    ETCD_LOGLEVEL=${ETCD_LOGLEVEL:-warn}
    export KUBE_INTEGRATION_ETCD_URL="http://${ETCD_HOST}:${ETCD_PORT}"
    
    kube::etcd::validate() {
      # validate if in path
      command -v etcd >/dev/null || {
        kube::log::usage "etcd must be in your PATH"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/DirectExecutorService.java

       */
      @GuardedBy("lock")
      private int runningTasks = 0;
    
      @GuardedBy("lock")
      private boolean shutdown = false;
    
      @Override
      public void execute(Runnable command) {
        startTask();
        try {
          command.run();
        } finally {
          endTask();
        }
      }
    
      @Override
      public boolean isShutdown() {
        synchronized (lock) {
          return shutdown;
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/util/concurrent/testing/TestingExecutors.java

        }
    
        @Override
        public ListenableScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) {
          return NeverScheduledFuture.create();
        }
    
        @Override
        public ListenableScheduledFuture<?> scheduleAtFixedRate(
            Runnable command, long initialDelay, long period, TimeUnit unit) {
          return NeverScheduledFuture.create();
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 17:12:37 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/internal/configstore/download.go

    // for invoking the go command.
    //
    // The second result is the canonical version of the requested configuration.
    func Download(version string, envOverlay []string) (*telemetry.UploadConfig, string, error) {
    	if version == "" {
    		version = "latest"
    	}
    	modVer := ModulePath + "@" + version
    	var stdout, stderr bytes.Buffer
    	cmd := exec.Command("go", "mod", "download", "-json", modVer)
    	needNoConsole(cmd)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top