Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for qword (0.16 sec)

  1. cluster/gce/util.sh

    function update-or-verify-gcloud() {
      local sudo_prefix=""
      if [ ! -w "$(dirname "$(which gcloud)")" ]; then
        sudo_prefix="sudo"
      fi
      # update and install components as needed
      # (deliberately word split $gcloud_prompt)
      # shellcheck disable=SC2086
      if [[ "${KUBE_PROMPT_FOR_UPDATE}" == "y" ]]; then
        ${sudo_prefix} gcloud ${gcloud_prompt:-} components install alpha
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    	// https://github.com/golang/go/issues/52690
    	if b.gccSupportsFlag(compiler, "-Wl,--no-gc-sections") {
    		a = append(a, "-Wl,--no-gc-sections")
    	}
    
    	// disable word wrapping in error messages
    	a = append(a, "-fmessage-length=0")
    
    	// Tell gcc not to include the work directory in object files.
    	if b.gccSupportsFlag(compiler, "-fdebug-prefix-map=a=b") {
    		if workdir == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-helper.sh

      case "${action}" in
        LOG)
          action="LOG --log-prefix "${prefix}:" --log-uid --log-tcp-options --log-ip-option"
          ;;
      esac
    
      # Deliberately allow word split here
      # shellcheck disable=SC2086
      iptables -w ${command} OUTPUT -p tcp --dport 80 -d ${METADATA_SERVER_IP} -m owner ${invert:-} --uid-owner=${METADATA_SERVER_ALLOWED_UID_RANGE:-0-2999} -j ${action}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    // cannot. "pod" is new pod, while "pods" are all admitted pods
    // The function returns a boolean value indicating whether the pod
    // can be admitted, a brief single-word reason and a message explaining why
    // the pod cannot be admitted.
    func (kl *Kubelet) canAdmitPod(pods []*v1.Pod, pod *v1.Pod) (bool, string, string) {
    	// the kubelet will invoke each pod admit handler in sequence
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    // should use a negation:
    //
    //	//go:build !amd64.v2
    //
    // To keep a file from being considered for any build:
    //
    //	//go:build ignore
    //
    // (Any other unsatisfied word will work as well, but "ignore" is conventional.)
    //
    // To build a file only when using cgo, and only on Linux and OS X:
    //
    //	//go:build cgo && (linux || darwin)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top