Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Commands (0.19 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/kubelet/kubelet_pods.go

    			return defaultFirstID, defaultLen, nil
    		}
    		return 0, 0, err
    	}
    	outUids, err := exec.Command(cmd, kubeletUser).Output()
    	if err != nil {
    		return 0, 0, fmt.Errorf("error retrieving additional ids for user %q", kubeletUser)
    	}
    	outGids, err := exec.Command(cmd, "-g", kubeletUser).Output()
    	if err != nil {
    		return 0, 0, fmt.Errorf("error retrieving additional gids for user %q", kubeletUser)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. pkg/config/validation/validation.go

    	case *networking.ReadinessProbe_Exec:
    		h := m.Exec
    		if h == nil {
    			errs = appendErrors(errs, fmt.Errorf("exec may not be nil"))
    			break
    		}
    		if len(h.Command) == 0 {
    			errs = appendErrors(errs, fmt.Errorf("exec.command is required"))
    		}
    	default:
    		errs = appendErrors(errs, fmt.Errorf("unknown health check method %T", m))
    	}
    	return errs
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/data.go

    	return (ctxt.IsARM() || ctxt.IsPPC64() || (ctxt.IsARM64() && ctxt.IsDarwin())) && ctxt.IsExternal()
    }
    
    // On Wasm, we reserve 4096 bytes for zero page, then 8192 bytes for wasm_exec.js
    // to store command line args and environment variables.
    // Data sections starts from at least address 12288.
    // Keep in sync with wasm_exec.js.
    const wasmMinDataAddr = 4096 + 8192
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    	// Manages container health check results.
    	livenessManager  proberesults.Manager
    	readinessManager proberesults.Manager
    	startupManager   proberesults.Manager
    
    	// How long to keep idle streaming command execution/port forwarding
    	// connections open before terminating them
    	streamingConnectionIdleTimeout time.Duration
    
    	// The EventRecorder to use
    	recorder record.EventRecorder
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. src/net/http/serve_test.go

    		rw.Header().Set("Content-Type", "text/html; charset=utf-8")
    		rw.Write(res)
    	}))
    	defer ts.Close()
    	b.StartTimer()
    
    	cmd := testenv.Command(b, os.Args[0], "-test.run=^$", "-test.bench=^BenchmarkServer$")
    	cmd.Env = append([]string{
    		fmt.Sprintf("TEST_BENCH_CLIENT_N=%d", b.N),
    		fmt.Sprintf("TEST_BENCH_SERVER_URL=%s", ts.URL),
    	}, os.Environ()...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top