Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 503 for curB (0.06 sec)

  1. samples/extauthz/README.md

        $ kubectl exec -it $(kubectl get pod -l app=sleep -o jsonpath={.items..metadata.name}) -c sleep -- curl -v ext-authz:8000 -H "x-ext-authz: allow"
           *   Trying 10.97.88.183:8000...
           * Connected to ext-authz-server (10.97.88.183) port 8000 (#0)
           > GET / HTTP/1.1
           > Host: ext-authz-server:8000
           > User-Agent: curl/7.73.0-DEV
           > Accept: */*
           > x-ext-authz: allow
           >
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 13:52:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. cluster/get-kube.sh

          curl_headers="Authorization: Bearer $(gcloud auth print-access-token)"
        fi
        curl ${curl_headers:+-H "${curl_headers}"} -fL --retry 3 --keepalive-time 2 "${kubernetes_tar_url}" -o "${file}"
      elif [[ $(which wget) ]]; then
        wget "${kubernetes_tar_url}"
      else
        echo "Couldn't find gsutil, curl, or wget.  Bailing out."
        exit 1
      fi
    fi
    
    echo "Unpacking kubernetes release ${KUBE_VERSION}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 18 22:47:29 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. src/runtime/vdso_freebsd.go

    	for {
    		if timekeepSharedPage.enabled == 0 {
    			return zeroBintime
    		}
    
    		curr := atomic.Load(&timekeepSharedPage.current) // atomic_load_acq_32
    		th := &timehands[curr]
    		gen := atomic.Load(&th.gen) // atomic_load_acq_32
    		bt = th.offset
    
    		if tc, ok := th.getTimecounter(); !ok {
    			return zeroBintime
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. release/downloadIstioCandidate.sh

    with_arch() {
      printf "\nDownloading %s from %s ...\n" "$NAME" "$ARCH_URL"
      if ! curl -o /dev/null -sIf "$ARCH_URL"; then
        printf "\n%s is not found, please specify a valid ISTIO_VERSION and TARGET_ARCH\n" "$ARCH_URL"
        exit 1
      fi
      curl -fsLO "$ARCH_URL"
      filename="istio-${ISTIO_VERSION}-${OSEXT}-${ISTIO_ARCH}.tar.gz"
      tar -xzf "${filename}"
      rm "${filename}"
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 14:13:46 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. samples/sleep/README.md

    # Simple sleep service
    
    This sample consists of a simple service that does nothing but sleep.
    It's a ubuntu container with curl installed that can be used as a request source for invoking other services
    to experiment with Istio networking.
    
    To use it:
    
    1. Install Istio by following the [istio install instructions](https://istio.io/docs/setup/).
    
    1. Start the sleep service:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 03 03:51:51 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  6. src/syscall/syscall_linux_386.go

    	err = prlimit(0, resource, rlim, nil)
    	if err != ENOSYS {
    		return err
    	}
    
    	rl := rlimit32{}
    	if rlim.Cur == rlimInf64 {
    		rl.Cur = rlimInf32
    	} else if rlim.Cur < uint64(rlimInf32) {
    		rl.Cur = uint32(rlim.Cur)
    	} else {
    		return EINVAL
    	}
    	if rlim.Max == rlimInf64 {
    		rl.Max = rlimInf32
    	} else if rlim.Max < uint64(rlimInf32) {
    		rl.Max = uint32(rlim.Max)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. tools/gen_istio_image_list.sh

                latest_tag=$tag
             fi
          fi
        done
        echo "$latest_tag"
    }
    
    function get_istio_addons() {
        branches=$(curl --silent "${ISTIO_HELM_CHART}?ref=${1}" | grep '"name": *' | tr -d '", ')
        for branch in ${branches}; do
            REPO=${branch##name:}
            curl --silent "${ISTIO_GITHUB}/${1}/install/kubernetes/helm/istio/charts/${REPO}/values.yaml" -o temp.file
            
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 04:04:35 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. release/downloadIstioCtl.sh

    with_arch() {
      printf "\nDownloading %s from %s ...\n" "${NAME}" "$ARCH_URL"
      if ! curl -o /dev/null -sIf "$ARCH_URL"; then
        printf "\n%s is not found, please specify a valid ISTIO_VERSION and TARGET_ARCH\n" "$ARCH_URL"
        exit 1
      fi
      filename="istioctl-${ISTIO_VERSION}-${OSEXT}-${ISTIO_ARCH}.tar.gz"
      curl -fsL -o "${tmp}/${filename}" "$ARCH_URL"
      tar -xzf "${tmp}/${filename}" -C "${tmp}"
    }
    
    without_arch() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 14:11:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. src/mime/encodedword.go

    		if start == -1 {
    			break
    		}
    		cur := start + len("=?")
    
    		i := strings.Index(header[cur:], "?")
    		if i == -1 {
    			break
    		}
    		charset := header[cur : cur+i]
    		cur += i + len("?")
    
    		if len(header) < cur+len("Q??=") {
    			break
    		}
    		encoding := header[cur]
    		cur++
    
    		if header[cur] != '?' {
    			break
    		}
    		cur++
    
    		j := strings.Index(header[cur:], "?=")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/liveness/intervals.go

    	var ret Intervals
    	var pv pairVisitor
    	cur := pv.init(is, is2)
    	for {
    		second := pv.nxt()
    		if second.done() {
    			break
    		}
    
    		// Check for overlap between cur and second. If no overlap
    		// then add cur to result and move on.
    		if !cur.i.Overlaps(second.i) && !cur.i.adjacent(second.i) {
    			ret = append(ret, cur.i)
    			cur = second
    			continue
    		}
    		// cur overlaps with second; merge second into cur
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top